#include "avcodec.h"
#include "imgconvert.h"
#include "raw.h"
#include "libavutil/avassert.h"
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
Go to the source code of this file.
Data Structures | |
struct | RawVideoContext |
Functions | |
enum PixelFormat | ff_find_pix_fmt (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 AVOption | options [] |
class { | |
class_name = "rawdec" | |
option = options | |
version = LIBAVUTIL_VERSION_INT | |
}; | |
static const PixelFormatTag | pix_fmt_bps_avi [] |
static const PixelFormatTag | pix_fmt_bps_mov [] |
AVCodec | ff_rawvideo_decoder |
Definition in file rawdec.c.
enum PixelFormat ff_find_pix_fmt | ( | const PixelFormatTag * | tags, | |
unsigned int | fourcc | |||
) |
Definition at line 84 of file rawdec.c.
Referenced by avformat_find_stream_info(), and raw_init_decoder().
static void flip | ( | AVCodecContext * | avctx, | |
AVPicture * | picture | |||
) | [static] |
Definition at line 136 of file rawdec.c.
Referenced by audio_open(), config_input(), config_props(), draw_slice(), 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 { ... } [static] |
class_name = "rawdec" |
Initial value:
{ .name = "rawvideo", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_RAWVIDEO, .priv_data_size = sizeof(RawVideoContext), .init = raw_init_decoder, .close = raw_close_decoder, .decode = raw_decode, .long_name = NULL_IF_CONFIG_SMALL("raw video"), .priv_class = &class, }
Initial value:
{ {"top", "top field first", 0x42, AV_OPT_TYPE_INT, {.i64 = -1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM|AV_OPT_FLAG_VIDEO_PARAM}, {NULL} }
const PixelFormatTag pix_fmt_bps_avi[] [static] |
Initial value:
{ { PIX_FMT_MONOWHITE, 1 }, { PIX_FMT_PAL8, 2 }, { PIX_FMT_PAL8, 4 }, { PIX_FMT_PAL8, 8 }, { PIX_FMT_RGB444, 12 }, { PIX_FMT_RGB555, 15 }, { PIX_FMT_RGB555, 16 }, { PIX_FMT_BGR24, 24 }, { PIX_FMT_BGRA, 32 }, { PIX_FMT_NONE, 0 }, }
const PixelFormatTag pix_fmt_bps_mov[] [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_MONOWHITE,33 }, { PIX_FMT_NONE, 0 }, }