#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | AuraDecodeContext |
Functions | |
static av_cold int | aura_decode_init (AVCodecContext *avctx) |
static int | aura_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *pkt) |
static av_cold int | aura_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_aura2_decoder |
Definition in file aura.c.
static av_cold int aura_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
static int aura_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | pkt | |||
) | [static] |
static av_cold int aura_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "aura2", .type = AVMEDIA_TYPE_VIDEO, .id = CODEC_ID_AURA2, .priv_data_size = sizeof(AuraDecodeContext), .init = aura_decode_init, .close = aura_decode_end, .decode = aura_decode_frame, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Auravision Aura 2"), }