#include "avcodec.h"
#include "raw.h"
#include "libavutil/intreadwrite.h"
Go to the source code of this file.
Data Structures | |
struct | RawVideoContext |
Functions | |
static enum PixelFormat | findPixelFormat (const PixelFormatTag *tags, unsigned int fourcc) |
static av_cold int | raw_init_decoder (AVCodecContext *avctx) |
static void | flip (AVCodecContext *avctx, AVPicture *picture) |
static int | raw_decode (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
static av_cold int | raw_close_decoder (AVCodecContext *avctx) |
Variables | |
static const PixelFormatTag | pixelFormatBpsAVI [] |
static const PixelFormatTag | pixelFormatBpsMOV [] |
AVCodec | rawvideo_decoder |
Definition in file rawdec.c.
static enum PixelFormat findPixelFormat | ( | const PixelFormatTag * | tags, | |
unsigned int | fourcc | |||
) | [static] |
static void flip | ( | AVCodecContext * | avctx, | |
AVPicture * | picture | |||
) | [static] |
Definition at line 99 of file rawdec.c.
Referenced by audio_open(), config_input(), get_video_buffer(), raw_decode(), and start_frame().
static av_cold int raw_close_decoder | ( | AVCodecContext * | avctx | ) | [static] |
static int raw_decode | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | data_size, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int raw_init_decoder | ( | AVCodecContext * | avctx | ) | [static] |
const PixelFormatTag pixelFormatBpsAVI[] [static] |
Initial value:
{ { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, { PIX_FMT_RGB555, 15 }, { PIX_FMT_RGB555, 16 }, { PIX_FMT_BGR24, 24 }, { PIX_FMT_RGB32, 32 }, { PIX_FMT_NONE, 0 }, }
const PixelFormatTag pixelFormatBpsMOV[] [static] |
Initial value:
{ { PIX_FMT_MONOWHITE, 1 }, { PIX_FMT_PAL8, 2 }, { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, { PIX_FMT_RGB555BE, 16 }, { PIX_FMT_RGB24, 24 }, { PIX_FMT_ARGB, 32 }, { PIX_FMT_NONE, 0 }, }
Initial value:
{ "rawvideo", AVMEDIA_TYPE_VIDEO, CODEC_ID_RAWVIDEO, sizeof(RawVideoContext), raw_init_decoder, NULL, raw_close_decoder, raw_decode, .long_name = NULL_IF_CONFIG_SMALL("raw video"), }