124 #define SCALE16(x, bits) (((x) << (16 - (bits))) | ((x) >> (2 * (bits) - 16)))
129 #define MKSCALE16(name, r16, w16) \
130 static void name(AVCodecContext *avctx, uint8_t * dst, const uint8_t *buf, int buf_size, int packed) \
134 for (i = 0; i + 1 < buf_size; i += 2) \
135 w16(dst + i, SCALE16(r16(buf + i), avctx->bits_per_coded_sample)); \
138 init_get_bits(&gb, buf, buf_size * 8); \
139 for (i = 0; i < avctx->width * avctx->height; i++) { \
140 int sample = get_bits(&gb, avctx->bits_per_coded_sample); \
141 w16(dst + i*2, SCALE16(sample, avctx->bits_per_coded_sample)); \
155 int buf_size = avpkt->size;
156 int linesize_align = 4;
163 if ((avctx->bits_per_coded_sample == 4 || avctx->bits_per_coded_sample == 2) &&
165 (!avctx->codec_tag || avctx->codec_tag ==
MKTAG(
'r',
'a',
'w',
' '))) {
190 if (context->
tff >= 0) {
210 if (avctx->bits_per_coded_sample == 4) {
211 for (i = 0; 2 * i + 1 < buf_size && i<avpkt->size; i++) {
212 dst[2 * i + 0] = buf[i] >> 4;
213 dst[2 * i + 1] = buf[i] & 15;
217 av_assert0(avctx->bits_per_coded_sample == 2);
218 for (i = 0; 4 * i + 3 < buf_size && i<avpkt->size; i++) {
219 dst[4 * i + 0] = buf[i] >> 6;
220 dst[4 * i + 1] = buf[i] >> 4 & 3;
221 dst[4 * i + 2] = buf[i] >> 2 & 3;
222 dst[4 * i + 3] = buf[i] & 3;
229 int packed = (avctx->codec_tag & 0xFFFFFF) ==
MKTAG(
'B',
'I',
'T', 0);
230 int swap = avctx->codec_tag >> 24;
232 if (packed && swap) {
246 scale16be(avctx, dst, buf, buf_size, packed);
248 scale16le(avctx, dst, buf, buf_size, packed);
251 }
else if (need_copy) {
252 memcpy(frame->
buf[0]->
data, buf, buf_size);
256 if (avctx->codec_tag ==
MKTAG(
'A',
'V',
'1',
'x') ||
257 avctx->codec_tag ==
MKTAG(
'A',
'V',
'u',
'p'))
261 if (buf_size < len && (avctx->codec_tag & 0xFFFFFF) !=
MKTAG(
'B',
'I',
'T', 0)) {
262 av_log(avctx,
AV_LOG_ERROR,
"Invalid buffer size, packet size %d < expected frame_size %d\n", buf_size, len);
268 avctx->width, avctx->height)) < 0) {
296 FFALIGN(frame->
linesize[0], linesize_align) * avctx->height <= buf_size)
301 FFALIGN(frame->
linesize[1], linesize_align) * ((avctx->height + 1) / 2) <= buf_size) {
303 frame->
data[1] += (la0 - frame->
linesize[0]) * avctx->height;
311 if (!frame->
buf[1]) {
319 ((frame->
linesize[0] + 3) & ~3) * avctx->height <= buf_size)
323 flip(avctx, picture);
325 if (avctx->codec_tag ==
MKTAG(
'Y',
'V',
'1',
'2') ||
326 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'1',
'6') ||
327 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'2',
'4') ||
328 avctx->codec_tag ==
MKTAG(
'Y',
'V',
'U',
'9'))
331 if (avctx->codec_tag ==
AV_RL32(
"I420") && (avctx->width+1)*(avctx->height+1) * 3/2 == buf_size) {
332 picture->
data[1] = picture->
data[1] + (avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height;
333 picture->
data[2] = picture->
data[2] + ((avctx->width+1)*(avctx->height+1) -avctx->width*avctx->height)*5/4;
336 if (avctx->codec_tag ==
AV_RL32(
"yuv2") &&
340 for (y = 0; y < avctx->height; y++) {
341 for (x = 0; x < avctx->width; x++)
342 line[2 * x + 1] ^= 0x80;
374 .priv_class = &rawdec_class,
#define AV_PIX_FMT_FLAG_PAL
Pixel format has a palette in data[1], values are indexes in this palette.
void(* bswap_buf)(uint32_t *dst, const uint32_t *src, int w)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
int linesize[AV_NUM_DATA_POINTERS]
number of bytes per line
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
This structure describes decoded (raw) audio or video data.
AVCodec ff_rawvideo_decoder
ptrdiff_t const GLvoid * data
#define LIBAVUTIL_VERSION_INT
AVBufferRef * buf[AV_NUM_DATA_POINTERS]
AVBuffer references backing the data for this frame.
void(* bswap16_buf)(uint16_t *dst, const uint16_t *src, int len)
static av_cold int init(AVCodecContext *avctx)
int av_get_bits_per_pixel(const AVPixFmtDescriptor *pixdesc)
Return the number of bits per pixel used by the pixel format described by pixdesc.
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined ...
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
void av_frame_set_pkt_duration(AVFrame *frame, int64_t val)
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional FF_INPUT_BUFFER_PADDING_SIZE at the end w...
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
static const AVOption options[]
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
int avpicture_fill(AVPicture *picture, const uint8_t *ptr, enum AVPixelFormat pix_fmt, int width, int height)
Setup the picture fields based on the specified image parameters and the provided image data buffer...
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
8 bit with AV_PIX_FMT_RGB32 palette
uint8_t * data[AV_NUM_DATA_POINTERS]
pointers to the image data planes
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt)
int ff_decode_frame_props(AVCodecContext *avctx, AVFrame *frame)
Set various frame properties from the codec context / packet data.
const PixelFormatTag ff_raw_pix_fmt_tags[]
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
unsigned int bitstream_buf_size
bitstream reader API header.
int interlaced_frame
The content of the picture is interlaced.
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define CODEC_CAP_PARAM_CHANGE
Codec supports changed parameters at any point.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
simple assert() macros that are a bit more flexible than ISO C assert().
const char * name
Name of the codec implementation.
Libavcodec external API header.
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
enum AVPictureType pict_type
Picture type of the frame.
static int raw_decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
#define AV_PIX_FMT_FLAG_PSEUDOPAL
The pixel format is "pseudo-paletted".
void av_frame_set_pkt_pos(AVFrame *frame, int64_t val)
packed RGB 8:8:8, 24bpp, BGRBGR...
enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
#define AV_OPT_FLAG_VIDEO_PARAM
main external API structure.
uint8_t * data
The data buffer.
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
packed YUV 4:2:2, 16bpp, Y0 Cb Y1 Cr
Describe the class of an AVClass context structure.
static av_cold int raw_close_decoder(AVCodecContext *avctx)
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
int palette_has_changed
Tell user application that palette has changed from previous frame.
refcounted data buffer API
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), big-endian , X=unused/undefined
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
#define MKSCALE16(name, r16, w16)
Scale buffer to 16 bits per coded sample resolution.
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
A reference to a data buffer.
common internal api header.
common internal and external API header
Y , 1bpp, 0 is white, 1 is black, in each byte pixels are ordered from the msb to the lsb...
static void flip(AVCodecContext *avctx, AVPicture *picture)
static av_cold int raw_init_decoder(AVCodecContext *avctx)
AVBufferRef * av_buffer_ref(AVBufferRef *buf)
Create a new reference to an AVBuffer.
#define AV_PIX_FMT_FLAG_BE
Pixel format is big-endian.
int top_field_first
If the content is interlaced, is top field displayed first.
const PixelFormatTag avpriv_pix_fmt_bps_avi[]
int avpicture_get_size(enum AVPixelFormat pix_fmt, int width, int height)
Calculate the size in bytes that a picture of the given width and height would occupy if stored in th...
int key_frame
1 -> keyframe, 0-> not
const PixelFormatTag avpriv_pix_fmt_bps_mov[]
uint8_t * av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int *size)
Get side information from packet.
#define FFSWAP(type, a, b)
#define MKTAG(a, b, c, d)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
This structure stores compressed data.
static const AVClass rawdec_class