#include "avcodec.h"
#include "raw.h"
#include "libavutil/pixdesc.h"
#include "libavutil/intreadwrite.h"
Go to the source code of this file.
Functions | |
| static av_cold int | raw_init_encoder (AVCodecContext *avctx) |
| static int | raw_encode (AVCodecContext *avctx, unsigned char *frame, int buf_size, void *data) |
Variables | |
| AVCodec | ff_rawvideo_encoder |
Definition in file rawenc.c.
| static int raw_encode | ( | AVCodecContext * | avctx, | |
| unsigned char * | frame, | |||
| int | buf_size, | |||
| void * | data | |||
| ) | [static] |
| static av_cold int raw_init_encoder | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
.name = "rawvideo",
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_RAWVIDEO,
.priv_data_size = sizeof(AVFrame),
.init = raw_init_encoder,
.encode = raw_encode,
.long_name = NULL_IF_CONFIG_SMALL("raw video"),
}
1.5.8