RV10/RV20 decoder.
More...
#include <inttypes.h>
#include "libavutil/imgutils.h"
#include "avcodec.h"
#include "error_resilience.h"
#include "h263.h"
#include "h263data.h"
#include "internal.h"
#include "mpeg_er.h"
#include "mpegutils.h"
#include "mpegvideo.h"
#include "mpeg4video.h"
#include "mpegvideodata.h"
#include "rv10.h"
|
|
#define | RV_GET_MAJOR_VER(x) ((x) >> 28) |
| |
|
#define | RV_GET_MINOR_VER(x) (((x) >> 20) & 0xFF) |
| |
|
#define | RV_GET_MICRO_VER(x) (((x) >> 12) & 0xFF) |
| |
|
#define | DC_VLC_BITS 14 |
| |
|
#define | ERROR_SKIP_FRAME -123 |
| |
§ ff_rv10_decoder
Initial value:= {
.name = "rv10",
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_RV10,
.init = rv10_decode_init,
.close = rv10_decode_end,
.decode = rv10_decode_frame,
.max_lowres = 3,
AV_PIX_FMT_NONE
},
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959
§ ff_rv20_decoder
Initial value:= {
.name = "rv20",
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_RV20,
.init = rv10_decode_init,
.close = rv10_decode_end,
.decode = rv10_decode_frame,
.flush = ff_mpeg_flush,
.max_lowres = 3,
AV_PIX_FMT_NONE
},
}
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:984
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959