30 #define BITSTREAM_READER_LE
46 2, -3, 8, -8, 18, -18, 36, -36,
50 1, -1, 2, -3, 8, -8, 18, -18, 36, -36, 54, -54, 96, -96, 144, -144,
63 uint8_t header_buffer[128] = { 0 };
74 header_size = ((buf[0] >> 5) | (buf[0] << 3)) & 0x7f;
75 if (header_size < 10) {
80 if (header_size + 1 > size) {
86 for (i = 1; i < header_size; i++)
87 header_buffer[i - 1] = buf[i] ^ buf[i + 1];
90 s->
hscale = 1 + !!header_buffer[3];
94 height =
AV_RL16(header_buffer + 5);
95 width =
AV_RL16(header_buffer + 7);
112 int x, y, delta_mode;
133 for (y = 0; y < avctx->
height; y++) {
137 dst[x] = av_clip_uint8((y ? dst[x - p->
linesize[0]] : 0) + diff);
144 for (y = 0; y < avctx->
height; y++) {
152 for (y = 0; y < avctx->
height; y++) {
153 for (x = 0; x < avctx->
width; x++)
154 dst[x] = av_clip_uint8(dst[x] + (dst[x] - 128) / 3);
159 for (y = 0; y < avctx->
height >> 2; y++) {
161 for (x = 0; x < avctx->
width >> 2; x += s->
hscale) {
163 dst[x] = av_clip_uint8((y ? dst[x - p->
linesize[1]] : 128) + diff);
170 for (y = 0; y < avctx->
height >> 2; y++) {
178 for (y = 0; y < avctx->
height >> 2; y++) {
179 for (x = 0; x < avctx->
width >> 2; x++)
180 dst[x] += (dst[x] - 128) / 8;
185 for (y = 0; y < avctx->
height >> 2; y++) {
187 for (x = 0; x < avctx->
width >> 2; x += s->
hscale) {
189 dst[x] = av_clip_uint8((y ? dst[x - p->
linesize[2]] : 128) + diff);
196 for (y = 0; y < avctx->
height >> 2; y++) {
204 for (y = 0; y < avctx->
height >> 2; y++) {
205 for (x = 0; x < avctx->
width >> 2; x++)
206 dst[x] += (dst[x] - 128) / 8;
224 .
name =
"truemotion2rt",
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Memory handling functions.
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context.
static av_cold int init(AVCodecContext *avctx)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
static const int16_t *const delta_tabs[]
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
bitstream reader API header.
static const int16_t delta_tab2[]
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
AVCodec ff_truemotion2rt_decoder
const char * name
Name of the codec implementation.
common internal API header
enum AVPictureType pict_type
Picture type of the frame.
int width
picture width / height.
static const int16_t delta_tab4[]
static const int16_t delta_tab3[]
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
main external API structure.
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
static void skip_bits(GetBitContext *s, int n)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static int truemotion2rt_decode_header(AVCodecContext *avctx, const AVPacket *avpkt)
common internal api header.
static av_always_inline int diff(const uint32_t a, const uint32_t b)
int key_frame
1 -> keyframe, 0-> not
static int truemotion2rt_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
This structure stores compressed data.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
static av_cold int truemotion2rt_decode_init(AVCodecContext *avctx)