#include "avcodec.h"
#include "raw.h"
#include "internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/internal.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, AVPacket *pkt, const AVFrame *frame, int *got_packet) |
Variables | |
AVCodec | ff_rawvideo_encoder |
Definition in file rawenc.c.
static int raw_encode | ( | AVCodecContext * | avctx, | |
AVPacket * | pkt, | |||
const AVFrame * | frame, | |||
int * | got_packet | |||
) | [static] |
static av_cold int raw_init_encoder | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "rawvideo", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_RAWVIDEO, .priv_data_size = sizeof(AVFrame), .init = raw_init_encoder, .encode2 = raw_encode, .long_name = NULL_IF_CONFIG_SMALL("raw video"), }