#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.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, const uint8_t *buf, int buf_size) |
Variables | |
| AVCodec | cyuv_decoder |
Definition in file cyuv.c.
| static int cyuv_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) | [static] |
| static av_cold int cyuv_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
"cyuv",
CODEC_TYPE_VIDEO,
CODEC_ID_CYUV,
sizeof(CyuvDecodeContext),
cyuv_decode_init,
NULL,
NULL,
cyuv_decode_frame,
CODEC_CAP_DR1,
NULL,
.long_name = NULL_IF_CONFIG_SMALL("Creative YUV (CYUV)"),
}
1.5.8