#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "avcodec.h"
#include "dsputil.h"
Go to the source code of this file.
Data Structures | |
struct | CyuvDecodeContext |
Functions | |
static av_cold int | cyuv_decode_init (AVCodecContext *avctx) |
static int | cyuv_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | cyuv_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | aura_decoder |
AVCodec | cyuv_decoder |
Definition in file cyuv.c.
static av_cold int cyuv_decode_end | ( | AVCodecContext * | avctx | ) | [static] |
static int cyuv_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int cyuv_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ "aura", AVMEDIA_TYPE_VIDEO, CODEC_ID_AURA, sizeof(CyuvDecodeContext), cyuv_decode_init, NULL, cyuv_decode_end, cyuv_decode_frame, CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Auravision AURA"), }
Initial value:
{ "cyuv", AVMEDIA_TYPE_VIDEO, CODEC_ID_CYUV, sizeof(CyuvDecodeContext), cyuv_decode_init, NULL, cyuv_decode_end, cyuv_decode_frame, CODEC_CAP_DR1, NULL, .long_name = NULL_IF_CONFIG_SMALL("Creative YUV (CYUV)"), }