FFmpeg
eatgq.c
Go to the documentation of this file.
1 /*
2  * Electronic Arts TGQ Video Decoder
3  * Copyright (c) 2007-2008 Peter Ross <pross@xvid.org>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * Electronic Arts TGQ Video Decoder
25  * @author Peter Ross <pross@xvid.org>
26  *
27  * Technical details here:
28  * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_TGQ
29  */
30 
31 #define BITSTREAM_READER_LE
32 
33 #include "libavutil/mem_internal.h"
34 
35 #include "aandcttab.h"
36 #include "avcodec.h"
37 #include "bytestream.h"
38 #include "codec_internal.h"
39 #include "copy_block.h"
40 #include "decode.h"
41 #include "eaidct.h"
42 #include "get_bits.h"
43 
44 typedef struct TgqContext {
47  int width, height;
48  int qtable[64];
49  DECLARE_ALIGNED(16, int16_t, block)[6][64];
50 } TgqContext;
51 
53 {
54  TgqContext *s = avctx->priv_data;
55  s->avctx = avctx;
56  avctx->framerate = (AVRational){ 15, 1 };
57  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
58  s->last_frame = av_frame_alloc();
59  if (!s->last_frame)
60  return AVERROR(ENOMEM);
61  return 0;
62 }
63 
64 static int tgq_decode_block(TgqContext *s, int16_t block[64], GetBitContext *gb)
65 {
66  const uint8_t *scantable = ff_zigzag_direct;
67  int i, j, value;
68  block[0] = get_sbits(gb, 8) * s->qtable[0];
69  for (i = 1; i < 64;) {
70  switch (show_bits(gb, 3)) {
71  case 4:
72  if (i >= 63)
73  return AVERROR_INVALIDDATA;
74  block[scantable[i++]] = 0;
75  case 0:
76  block[scantable[i++]] = 0;
77  skip_bits(gb, 3);
78  break;
79  case 5:
80  case 1:
81  skip_bits(gb, 2);
82  value = get_bits(gb, 6);
83  if (value > 64 - i)
84  return AVERROR_INVALIDDATA;
85  for (j = 0; j < value; j++)
86  block[scantable[i++]] = 0;
87  break;
88  case 6:
89  skip_bits(gb, 3);
90  block[scantable[i]] = -s->qtable[scantable[i]];
91  i++;
92  break;
93  case 2:
94  skip_bits(gb, 3);
95  block[scantable[i]] = s->qtable[scantable[i]];
96  i++;
97  break;
98  case 7: // 111b
99  case 3: // 011b
100  skip_bits(gb, 2);
101  if (show_bits(gb, 6) == 0x3F) {
102  skip_bits(gb, 6);
103  block[scantable[i]] = get_sbits(gb, 8) * s->qtable[scantable[i]];
104  } else {
105  block[scantable[i]] = get_sbits(gb, 6) * s->qtable[scantable[i]];
106  }
107  i++;
108  break;
109  }
110  }
111  block[0] += 128 << 4;
112  return 0;
113 }
114 
115 static void tgq_idct_put_mb(TgqContext *s, int16_t (*block)[64], AVFrame *frame,
116  int mb_x, int mb_y)
117 {
118  ptrdiff_t linesize = frame->linesize[0];
119  uint8_t *dest_y = frame->data[0] + (mb_y * 16 * linesize) + mb_x * 16;
120  uint8_t *dest_cb = frame->data[1] + (mb_y * 8 * frame->linesize[1]) + mb_x * 8;
121  uint8_t *dest_cr = frame->data[2] + (mb_y * 8 * frame->linesize[2]) + mb_x * 8;
122 
123  ff_ea_idct_put_c(dest_y , linesize, block[0]);
124  ff_ea_idct_put_c(dest_y + 8, linesize, block[1]);
125  ff_ea_idct_put_c(dest_y + 8 * linesize , linesize, block[2]);
126  ff_ea_idct_put_c(dest_y + 8 * linesize + 8, linesize, block[3]);
127  if (!(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
128  ff_ea_idct_put_c(dest_cb, frame->linesize[1], block[4]);
129  ff_ea_idct_put_c(dest_cr, frame->linesize[2], block[5]);
130  }
131 }
132 
133 static inline void tgq_dconly(TgqContext *s, unsigned char *dst,
134  ptrdiff_t dst_stride, int dc)
135 {
136  int level = av_clip_uint8((dc*s->qtable[0] + 2056) >> 4);
137  int j;
138  for (j = 0; j < 8; j++)
139  memset(dst + j * dst_stride, level, 8);
140 }
141 
143  int mb_x, int mb_y, const int8_t *dc)
144 {
145  ptrdiff_t linesize = frame->linesize[0];
146  uint8_t *dest_y = frame->data[0] + (mb_y * 16 * linesize) + mb_x * 16;
147  uint8_t *dest_cb = frame->data[1] + (mb_y * 8 * frame->linesize[1]) + mb_x * 8;
148  uint8_t *dest_cr = frame->data[2] + (mb_y * 8 * frame->linesize[2]) + mb_x * 8;
149  tgq_dconly(s, dest_y, linesize, dc[0]);
150  tgq_dconly(s, dest_y + 8, linesize, dc[1]);
151  tgq_dconly(s, dest_y + 8 * linesize, linesize, dc[2]);
152  tgq_dconly(s, dest_y + 8 * linesize + 8, linesize, dc[3]);
153  if (!(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
154  tgq_dconly(s, dest_cb, frame->linesize[1], dc[4]);
155  tgq_dconly(s, dest_cr, frame->linesize[2], dc[5]);
156  }
157 }
158 
160  AVFrame *frame, int mb_y, int mb_x)
161 {
162  int mode;
163  int i;
164 
165  mode = bytestream2_get_byte(gbyte);
166  if (mode > 12) {
167  GetBitContext gb;
168  int ret = init_get_bits8(&gb, gbyte->buffer, FFMIN(bytestream2_get_bytes_left(gbyte), mode));
169  if (ret < 0)
170  return ret;
171 
172  for (i = 0; i < 6; i++) {
173  int ret = tgq_decode_block(s, s->block[i], &gb);
174  if (ret < 0)
175  return ret;
176  }
177  tgq_idct_put_mb(s, s->block, frame, mb_x, mb_y);
178  bytestream2_skip(gbyte, mode);
179  } else {
180  int8_t dc[6];
181  if (mode == 1) {
182  int x, y;
183  int mv = bytestream2_get_byte(gbyte);
184  int mv_x = mv >> 4;
185  int mv_y = mv & 0x0F;
186  if (!s->last_frame->data[0]) {
187  av_log(s->avctx, AV_LOG_ERROR, "missing reference frame\n");
188  return -1;
189  }
190  if (mv_x >= 8) mv_x -= 16;
191  if (mv_y >= 8) mv_y -= 16;
192  x = mb_x * 16 - mv_x;
193  y = mb_y * 16 - mv_y;
194  if (x < 0 || x + 16 > s->width || y < 0 || y + 16 > s->height) {
195  av_log(s->avctx, AV_LOG_ERROR, "invalid motion vector\n");
196  return -1;
197  }
198  copy_block16(frame->data[0] + (mb_y * 16 * frame->linesize[0]) + mb_x * 16,
199  s->last_frame->data[0] + y * s->last_frame->linesize[0] + x,
200  frame->linesize[0], s->last_frame->linesize[0], 16);
201  for (int p = 1; p < 3; p++)
202  copy_block8(frame->data[p] + (mb_y * 8 * frame->linesize[p]) + mb_x * 8,
203  s->last_frame->data[p] + (y >> 1) * s->last_frame->linesize[p] + (x >> 1),
204  frame->linesize[p], s->last_frame->linesize[p], 8);
205  frame->flags &= ~AV_FRAME_FLAG_KEY;
206  return 0;
207  } else if (mode == 3) {
208  memset(dc, bytestream2_get_byte(gbyte), 4);
209  dc[4] = bytestream2_get_byte(gbyte);
210  dc[5] = bytestream2_get_byte(gbyte);
211  } else if (mode == 6) {
212  if (bytestream2_get_buffer(gbyte, dc, 6) != 6)
213  return AVERROR_INVALIDDATA;
214  } else if (mode == 12) {
215  for (i = 0; i < 6; i++) {
216  dc[i] = bytestream2_get_byte(gbyte);
217  bytestream2_skip(gbyte, 1);
218  }
219  } else {
220  av_log(s->avctx, AV_LOG_ERROR, "unsupported mb mode %i\n", mode);
221  return -1;
222  }
223  tgq_idct_put_mb_dconly(s, frame, mb_x, mb_y, dc);
224  }
225  return 0;
226 }
227 
229 {
230  int i, j;
231  const int a = (14 * (100 - quant)) / 100 + 1;
232  const int b = (11 * (100 - quant)) / 100 + 4;
233  for (j = 0; j < 8; j++)
234  for (i = 0; i < 8; i++)
235  s->qtable[j * 8 + i] = ((a * (j + i) / (7 + 7) + b) *
236  ff_inv_aanscales[j * 8 + i]) >> (14 - 4);
237 }
238 
240  int *got_frame, AVPacket *avpkt)
241 {
242  const uint8_t *buf = avpkt->data;
243  int buf_size = avpkt->size;
244  TgqContext *s = avctx->priv_data;
245  GetByteContext gbyte;
246  int x, y, ret;
247  int big_endian;
248 
249  if (buf_size < 16) {
250  av_log(avctx, AV_LOG_WARNING, "truncated header\n");
251  return AVERROR_INVALIDDATA;
252  }
253  big_endian = AV_RL32(&buf[4]) > 0x000FFFFF;
254  bytestream2_init(&gbyte, buf + 8, buf_size - 8);
255  if (big_endian) {
256  s->width = bytestream2_get_be16u(&gbyte);
257  s->height = bytestream2_get_be16u(&gbyte);
258  } else {
259  s->width = bytestream2_get_le16u(&gbyte);
260  s->height = bytestream2_get_le16u(&gbyte);
261  }
262 
263  if (s->avctx->width != s->width || s->avctx->height != s->height) {
264  av_frame_unref(s->last_frame);
265  ret = ff_set_dimensions(s->avctx, s->width, s->height);
266  if (ret < 0)
267  return ret;
268  }
269 
270  tgq_calculate_qtable(s, bytestream2_get_byteu(&gbyte));
271  bytestream2_skipu(&gbyte, 3);
272 
273  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
274  return ret;
275 
276  frame->flags |= AV_FRAME_FLAG_KEY;
277  for (y = 0; y < FFALIGN(avctx->height, 16) >> 4; y++)
278  for (x = 0; x < FFALIGN(avctx->width, 16) >> 4; x++)
279  if (tgq_decode_mb(s, &gbyte, frame, y, x) < 0)
280  return AVERROR_INVALIDDATA;
281 
282  if ((ret = av_frame_replace(s->last_frame, frame)) < 0)
283  return ret;
284 
285  *got_frame = 1;
286 
287  return avpkt->size;
288 }
289 
291 {
292  TgqContext *s = avctx->priv_data;
293  av_frame_free(&s->last_frame);
294  return 0;
295 }
296 
298  .p.name = "eatgq",
299  CODEC_LONG_NAME("Electronic Arts TGQ video"),
300  .p.type = AVMEDIA_TYPE_VIDEO,
301  .p.id = AV_CODEC_ID_TGQ,
302  .priv_data_size = sizeof(TgqContext),
304  .close = tgq_decode_close,
306  .p.capabilities = AV_CODEC_CAP_DR1,
307 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:215
level
uint8_t level
Definition: svq3.c:205
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
mem_internal.h
TgqContext
Definition: eatgq.c:44
tgq_decode_mb
static int tgq_decode_mb(TgqContext *s, GetByteContext *gbyte, AVFrame *frame, int mb_y, int mb_x)
Definition: eatgq.c:159
GetByteContext
Definition: bytestream.h:33
tgq_calculate_qtable
static void tgq_calculate_qtable(TgqContext *s, int quant)
Definition: eatgq.c:228
bytestream2_skipu
static av_always_inline void bytestream2_skipu(GetByteContext *g, unsigned int size)
Definition: bytestream.h:174
mv
static const int8_t mv[256][2]
Definition: 4xm.c:81
av_frame_free
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:162
mode
Definition: swscale.c:52
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:389
AVPacket::data
uint8_t * data
Definition: packet.h:539
b
#define b
Definition: input.c:41
FFCodec
Definition: codec_internal.h:127
copy_block8
static void copy_block8(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)
Definition: copy_block.h:47
ff_set_dimensions
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.
Definition: utils.c:94
TgqContext::block
int16_t block[6][64]
Definition: eatgq.c:49
AV_CODEC_ID_TGQ
@ AV_CODEC_ID_TGQ
Definition: codec_id.h:173
tgq_decode_block
static int tgq_decode_block(TgqContext *s, int16_t block[64], GetBitContext *gb)
Definition: eatgq.c:64
tgq_decode_frame
static int tgq_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition: eatgq.c:239
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:381
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:574
bytestream2_skip
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition: bytestream.h:168
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:335
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
GetBitContext
Definition: get_bits.h:108
ff_ea_idct_put_c
void ff_ea_idct_put_c(uint8_t *dest, ptrdiff_t linesize, int16_t *block)
Definition: eaidct.c:80
av_frame_alloc
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:150
quant
static const uint8_t quant[64]
Definition: vmixdec.c:71
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:209
av_cold
#define av_cold
Definition: attributes.h:90
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:545
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:640
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:311
s
#define s(width, name)
Definition: cbs_vp9.c:198
tgq_idct_put_mb
static void tgq_idct_put_mb(TgqContext *s, int16_t(*block)[64], AVFrame *frame, int mb_x, int mb_y)
Definition: eatgq.c:115
GetByteContext::buffer
const uint8_t * buffer
Definition: bytestream.h:34
get_sbits
static int get_sbits(GetBitContext *s, int n)
Definition: get_bits.h:320
decode.h
get_bits.h
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:73
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:296
tgq_dconly
static void tgq_dconly(TgqContext *s, unsigned char *dst, ptrdiff_t dst_stride, int dc)
Definition: eatgq.c:133
copy_block16
static void copy_block16(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)
Definition: copy_block.h:68
aandcttab.h
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
bytestream2_get_buffer
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition: bytestream.h:267
ff_eatgq_decoder
const FFCodec ff_eatgq_decoder
Definition: eatgq.c:297
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(GetByteContext *g)
Definition: bytestream.h:158
tgq_decode_close
static av_cold int tgq_decode_close(AVCodecContext *avctx)
Definition: eatgq.c:290
TgqContext::qtable
int qtable[64]
Definition: eatgq.c:48
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1697
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:368
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AV_CODEC_FLAG_GRAY
#define AV_CODEC_FLAG_GRAY
Only decode/encode grayscale.
Definition: avcodec.h:322
AVPacket::size
int size
Definition: packet.h:540
dc
Tag MUST be and< 10hcoeff half pel interpolation filter coefficients, hcoeff[0] are the 2 middle coefficients[1] are the next outer ones and so on, resulting in a filter like:...eff[2], hcoeff[1], hcoeff[0], hcoeff[0], hcoeff[1], hcoeff[2] ... the sign of the coefficients is not explicitly stored but alternates after each coeff and coeff[0] is positive, so ...,+,-,+,-,+,+,-,+,-,+,... hcoeff[0] is not explicitly stored but found by subtracting the sum of all stored coefficients with signs from 32 hcoeff[0]=32 - hcoeff[1] - hcoeff[2] - ... a good choice for hcoeff and htaps is htaps=6 hcoeff={40,-10, 2} an alternative which requires more computations at both encoder and decoder side and may or may not be better is htaps=8 hcoeff={42,-14, 6,-2}ref_frames minimum of the number of available reference frames and max_ref_frames for example the first frame after a key frame always has ref_frames=1spatial_decomposition_type wavelet type 0 is a 9/7 symmetric compact integer wavelet 1 is a 5/3 symmetric compact integer wavelet others are reserved stored as delta from last, last is reset to 0 if always_reset||keyframeqlog quality(logarithmic quantizer scale) stored as delta from last, last is reset to 0 if always_reset||keyframemv_scale stored as delta from last, last is reset to 0 if always_reset||keyframe FIXME check that everything works fine if this changes between framesqbias dequantization bias stored as delta from last, last is reset to 0 if always_reset||keyframeblock_max_depth maximum depth of the block tree stored as delta from last, last is reset to 0 if always_reset||keyframequant_table quantization tableHighlevel bitstream structure:==============================--------------------------------------------|Header|--------------------------------------------|------------------------------------|||Block0||||split?||||yes no||||......... intra?||||:Block01 :yes no||||:Block02 :....... ..........||||:Block03 ::y DC ::ref index:||||:Block04 ::cb DC ::motion x :||||......... :cr DC ::motion y :||||....... ..........|||------------------------------------||------------------------------------|||Block1|||...|--------------------------------------------|------------ ------------ ------------|||Y subbands||Cb subbands||Cr subbands||||--- ---||--- ---||--- ---|||||LL0||HL0||||LL0||HL0||||LL0||HL0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||LH0||HH0||||LH0||HH0||||LH0||HH0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HL1||LH1||||HL1||LH1||||HL1||LH1|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HH1||HL2||||HH1||HL2||||HH1||HL2|||||...||...||...|||------------ ------------ ------------|--------------------------------------------Decoding process:=================------------|||Subbands|------------||||------------|Intra DC||||LL0 subband prediction ------------|\ Dequantization ------------------- \||Reference frames|\ IDWT|------- -------|Motion \|||Frame 0||Frame 1||Compensation . OBMC v -------|------- -------|--------------. \------> Frame n output Frame Frame<----------------------------------/|...|------------------- Range Coder:============Binary Range Coder:------------------- The implemented range coder is an adapted version based upon "Range encoding: an algorithm for removing redundancy from a digitised message." by G. N. N. Martin. The symbols encoded by the Snow range coder are bits(0|1). The associated probabilities are not fix but change depending on the symbol mix seen so far. bit seen|new state ---------+----------------------------------------------- 0|256 - state_transition_table[256 - old_state];1|state_transition_table[old_state];state_transition_table={ 0, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 190, 191, 192, 194, 194, 195, 196, 197, 198, 199, 200, 201, 202, 202, 204, 205, 206, 207, 208, 209, 209, 210, 211, 212, 213, 215, 215, 216, 217, 218, 219, 220, 220, 222, 223, 224, 225, 226, 227, 227, 229, 229, 230, 231, 232, 234, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 248, 0, 0, 0, 0, 0, 0, 0};FIXME Range Coding of integers:------------------------- FIXME Neighboring Blocks:===================left and top are set to the respective blocks unless they are outside of the image in which case they are set to the Null block top-left is set to the top left block unless it is outside of the image in which case it is set to the left block if this block has no larger parent block or it is at the left side of its parent block and the top right block is not outside of the image then the top right block is used for top-right else the top-left block is used Null block y, cb, cr are 128 level, ref, mx and my are 0 Motion Vector Prediction:=========================1. the motion vectors of all the neighboring blocks are scaled to compensate for the difference of reference frames scaled_mv=(mv *(256 *(current_reference+1)/(mv.reference+1))+128)> the median of the scaled top and top right vectors is used as motion vector prediction the used motion vector is the sum of the predictor and(mvx_diff, mvy_diff) *mv_scale Intra DC Prediction block[y][x] dc[1]
Definition: snow.txt:400
codec_internal.h
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem_internal.h:104
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:83
TgqContext::last_frame
AVFrame * last_frame
Definition: eatgq.c:46
a
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
Definition: undefined.txt:41
TgqContext::height
int height
Definition: eatgq.c:47
TgqContext::avctx
AVCodecContext * avctx
Definition: eatgq.c:45
tgq_idct_put_mb_dconly
static void tgq_idct_put_mb_dconly(TgqContext *s, AVFrame *frame, int mb_x, int mb_y, const int8_t *dc)
Definition: eatgq.c:142
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
copy_block.h
show_bits
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition: get_bits.h:371
value
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default value
Definition: writing_filters.txt:86
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:622
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
AVCodecContext::height
int height
Definition: avcodec.h:632
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:671
avcodec.h
ff_zigzag_direct
const uint8_t ff_zigzag_direct[64]
Definition: mathtables.c:98
ret
ret
Definition: filter_design.txt:187
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
ff_inv_aanscales
const uint16_t ff_inv_aanscales[64]
Definition: aandcttab.c:38
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
tgq_decode_init
static av_cold int tgq_decode_init(AVCodecContext *avctx)
Definition: eatgq.c:52
av_frame_replace
int av_frame_replace(AVFrame *dst, const AVFrame *src)
Ensure the destination frame refers to the same data described by the source frame,...
Definition: frame.c:499
AVCodecContext
main external API structure.
Definition: avcodec.h:451
mode
mode
Definition: ebur128.h:83
av_clip_uint8
#define av_clip_uint8
Definition: common.h:106
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:78
AVPacket
This structure stores compressed data.
Definition: packet.h:516
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:478
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:632
bytestream.h
eaidct.h
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
TgqContext::width
int width
Definition: eatgq.c:47