#include "avcodec.h"
#include "dsputil.h"
Go to the source code of this file.
Data Structures | |
struct | VCR1Context |
Defines | |
#define | CONFIG_VCR1_ENCODER 0 |
Functions | |
static av_cold int | vcr1_common_init (AVCodecContext *avctx) |
static av_cold int | vcr1_decode_init (AVCodecContext *avctx) |
static av_cold int | vcr1_decode_end (AVCodecContext *avctx) |
static int | vcr1_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
Variables | |
AVCodec | ff_vcr1_decoder |
Definition in file vcr1.c.
static av_cold int vcr1_common_init | ( | AVCodecContext * | avctx | ) | [static] |
static av_cold int vcr1_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
static int vcr1_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int vcr1_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "vcr1", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_VCR1, .priv_data_size = sizeof(VCR1Context), .init = vcr1_decode_init, .close = vcr1_decode_end, .decode = vcr1_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"), }