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 #include "libavutil/attributes.h"
32 #define BITSTREAM_READER_LE
33 
34 #include "libavutil/mem_internal.h"
35 
36 #include "aandcttab.h"
37 #include "avcodec.h"
38 #include "bytestream.h"
39 #include "codec_internal.h"
40 #include "copy_block.h"
41 #include "decode.h"
42 #include "eaidct.h"
43 #include "get_bits.h"
44 
45 typedef struct TgqContext {
48  int width, height;
49  int qtable[64];
50  DECLARE_ALIGNED(16, int16_t, block)[6][64];
51 } TgqContext;
52 
54 {
55  TgqContext *s = avctx->priv_data;
56  s->avctx = avctx;
57  avctx->framerate = (AVRational){ 15, 1 };
58  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
59  s->last_frame = av_frame_alloc();
60  if (!s->last_frame)
61  return AVERROR(ENOMEM);
62  return 0;
63 }
64 
65 static int tgq_decode_block(TgqContext *s, int16_t block[64], GetBitContext *gb)
66 {
67  const uint8_t *scantable = ff_zigzag_direct;
68  int i, j, value;
69  block[0] = get_sbits(gb, 8) * s->qtable[0];
70  for (i = 1; i < 64;) {
71  switch (show_bits(gb, 3)) {
72  case 4:
73  if (i >= 63)
74  return AVERROR_INVALIDDATA;
75  block[scantable[i++]] = 0;
77  case 0:
78  block[scantable[i++]] = 0;
79  skip_bits(gb, 3);
80  break;
81  case 5:
82  case 1:
83  skip_bits(gb, 2);
84  value = get_bits(gb, 6);
85  if (value > 64 - i)
86  return AVERROR_INVALIDDATA;
87  for (j = 0; j < value; j++)
88  block[scantable[i++]] = 0;
89  break;
90  case 6:
91  skip_bits(gb, 3);
92  block[scantable[i]] = -s->qtable[scantable[i]];
93  i++;
94  break;
95  case 2:
96  skip_bits(gb, 3);
97  block[scantable[i]] = s->qtable[scantable[i]];
98  i++;
99  break;
100  case 7: // 111b
101  case 3: // 011b
102  skip_bits(gb, 2);
103  if (show_bits(gb, 6) == 0x3F) {
104  skip_bits(gb, 6);
105  block[scantable[i]] = get_sbits(gb, 8) * s->qtable[scantable[i]];
106  } else {
107  block[scantable[i]] = get_sbits(gb, 6) * s->qtable[scantable[i]];
108  }
109  i++;
110  break;
111  }
112  }
113  block[0] += 128 << 4;
114  return 0;
115 }
116 
117 static void tgq_idct_put_mb(TgqContext *s, int16_t (*block)[64], AVFrame *frame,
118  int mb_x, int mb_y)
119 {
120  ptrdiff_t linesize = frame->linesize[0];
121  uint8_t *dest_y = frame->data[0] + (mb_y * 16 * linesize) + mb_x * 16;
122  uint8_t *dest_cb = frame->data[1] + (mb_y * 8 * frame->linesize[1]) + mb_x * 8;
123  uint8_t *dest_cr = frame->data[2] + (mb_y * 8 * frame->linesize[2]) + mb_x * 8;
124 
125  ff_ea_idct_put_c(dest_y , linesize, block[0]);
126  ff_ea_idct_put_c(dest_y + 8, linesize, block[1]);
127  ff_ea_idct_put_c(dest_y + 8 * linesize , linesize, block[2]);
128  ff_ea_idct_put_c(dest_y + 8 * linesize + 8, linesize, block[3]);
129  if (!(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
130  ff_ea_idct_put_c(dest_cb, frame->linesize[1], block[4]);
131  ff_ea_idct_put_c(dest_cr, frame->linesize[2], block[5]);
132  }
133 }
134 
135 static inline void tgq_dconly(TgqContext *s, unsigned char *dst,
136  ptrdiff_t dst_stride, int dc)
137 {
138  int level = av_clip_uint8((dc*s->qtable[0] + 2056) >> 4);
139  int j;
140  for (j = 0; j < 8; j++)
141  memset(dst + j * dst_stride, level, 8);
142 }
143 
145  int mb_x, int mb_y, const int8_t *dc)
146 {
147  ptrdiff_t linesize = frame->linesize[0];
148  uint8_t *dest_y = frame->data[0] + (mb_y * 16 * linesize) + mb_x * 16;
149  uint8_t *dest_cb = frame->data[1] + (mb_y * 8 * frame->linesize[1]) + mb_x * 8;
150  uint8_t *dest_cr = frame->data[2] + (mb_y * 8 * frame->linesize[2]) + mb_x * 8;
151  tgq_dconly(s, dest_y, linesize, dc[0]);
152  tgq_dconly(s, dest_y + 8, linesize, dc[1]);
153  tgq_dconly(s, dest_y + 8 * linesize, linesize, dc[2]);
154  tgq_dconly(s, dest_y + 8 * linesize + 8, linesize, dc[3]);
155  if (!(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
156  tgq_dconly(s, dest_cb, frame->linesize[1], dc[4]);
157  tgq_dconly(s, dest_cr, frame->linesize[2], dc[5]);
158  }
159 }
160 
162  AVFrame *frame, int mb_y, int mb_x)
163 {
164  int mode;
165  int i;
166 
167  mode = bytestream2_get_byte(gbyte);
168  if (mode > 12) {
169  GetBitContext gb;
170  int ret = init_get_bits8(&gb, gbyte->buffer, FFMIN(bytestream2_get_bytes_left(gbyte), mode));
171  if (ret < 0)
172  return ret;
173 
174  for (i = 0; i < 6; i++) {
175  ret = tgq_decode_block(s, s->block[i], &gb);
176  if (ret < 0)
177  return ret;
178  }
179  tgq_idct_put_mb(s, s->block, frame, mb_x, mb_y);
180  bytestream2_skip(gbyte, mode);
181  } else {
182  int8_t dc[6];
183  if (mode == 1) {
184  int x, y;
185  int mv = bytestream2_get_byte(gbyte);
186  int mv_x = mv >> 4;
187  int mv_y = mv & 0x0F;
188  if (!s->last_frame->data[0]) {
189  av_log(s->avctx, AV_LOG_ERROR, "missing reference frame\n");
190  return -1;
191  }
192  if (mv_x >= 8) mv_x -= 16;
193  if (mv_y >= 8) mv_y -= 16;
194  x = mb_x * 16 - mv_x;
195  y = mb_y * 16 - mv_y;
196  if (x < 0 || x + 16 > s->width || y < 0 || y + 16 > s->height) {
197  av_log(s->avctx, AV_LOG_ERROR, "invalid motion vector\n");
198  return -1;
199  }
200  copy_block16(frame->data[0] + (mb_y * 16 * frame->linesize[0]) + mb_x * 16,
201  s->last_frame->data[0] + y * s->last_frame->linesize[0] + x,
202  frame->linesize[0], s->last_frame->linesize[0], 16);
203  for (int p = 1; p < 3; p++)
204  copy_block8(frame->data[p] + (mb_y * 8 * frame->linesize[p]) + mb_x * 8,
205  s->last_frame->data[p] + (y >> 1) * s->last_frame->linesize[p] + (x >> 1),
206  frame->linesize[p], s->last_frame->linesize[p], 8);
207  frame->flags &= ~AV_FRAME_FLAG_KEY;
208  return 0;
209  } else if (mode == 3) {
210  memset(dc, bytestream2_get_byte(gbyte), 4);
211  dc[4] = bytestream2_get_byte(gbyte);
212  dc[5] = bytestream2_get_byte(gbyte);
213  } else if (mode == 6) {
214  if (bytestream2_get_buffer(gbyte, dc, 6) != 6)
215  return AVERROR_INVALIDDATA;
216  } else if (mode == 12) {
217  for (i = 0; i < 6; i++) {
218  dc[i] = bytestream2_get_byte(gbyte);
219  bytestream2_skip(gbyte, 1);
220  }
221  } else {
222  av_log(s->avctx, AV_LOG_ERROR, "unsupported mb mode %i\n", mode);
223  return -1;
224  }
225  tgq_idct_put_mb_dconly(s, frame, mb_x, mb_y, dc);
226  }
227  return 0;
228 }
229 
231 {
232  int i, j;
233  const int a = (14 * (100 - quant)) / 100 + 1;
234  const int b = (11 * (100 - quant)) / 100 + 4;
235  for (j = 0; j < 8; j++)
236  for (i = 0; i < 8; i++)
237  s->qtable[j * 8 + i] = ((a * (j + i) / (7 + 7) + b) *
238  ff_inv_aanscales[j * 8 + i]) >> (14 - 4);
239 }
240 
242  int *got_frame, AVPacket *avpkt)
243 {
244  const uint8_t *buf = avpkt->data;
245  int buf_size = avpkt->size;
246  TgqContext *s = avctx->priv_data;
247  GetByteContext gbyte;
248  int x, y, ret;
249  int big_endian;
250 
251  if (buf_size < 16) {
252  av_log(avctx, AV_LOG_WARNING, "truncated header\n");
253  return AVERROR_INVALIDDATA;
254  }
255  big_endian = AV_RL32(&buf[4]) > 0x000FFFFF;
256  bytestream2_init(&gbyte, buf + 8, buf_size - 8);
257  if (big_endian) {
258  s->width = bytestream2_get_be16u(&gbyte);
259  s->height = bytestream2_get_be16u(&gbyte);
260  } else {
261  s->width = bytestream2_get_le16u(&gbyte);
262  s->height = bytestream2_get_le16u(&gbyte);
263  }
264 
265  if (s->avctx->width != s->width || s->avctx->height != s->height) {
266  av_frame_unref(s->last_frame);
267  ret = ff_set_dimensions(s->avctx, s->width, s->height);
268  if (ret < 0)
269  return ret;
270  }
271 
272  tgq_calculate_qtable(s, bytestream2_get_byteu(&gbyte));
273  bytestream2_skipu(&gbyte, 3);
274 
275  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
276  return ret;
277 
278  frame->flags |= AV_FRAME_FLAG_KEY;
279  for (y = 0; y < FFALIGN(avctx->height, 16) >> 4; y++)
280  for (x = 0; x < FFALIGN(avctx->width, 16) >> 4; x++)
281  if (tgq_decode_mb(s, &gbyte, frame, y, x) < 0)
282  return AVERROR_INVALIDDATA;
283 
284  if ((ret = av_frame_replace(s->last_frame, frame)) < 0)
285  return ret;
286 
287  *got_frame = 1;
288 
289  return avpkt->size;
290 }
291 
293 {
294  TgqContext *s = avctx->priv_data;
295  av_frame_free(&s->last_frame);
296  return 0;
297 }
298 
300  .p.name = "eatgq",
301  CODEC_LONG_NAME("Electronic Arts TGQ video"),
302  .p.type = AVMEDIA_TYPE_VIDEO,
303  .p.id = AV_CODEC_ID_TGQ,
304  .priv_data_size = sizeof(TgqContext),
308  .p.capabilities = AV_CODEC_CAP_DR1,
309 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
level
uint8_t level
Definition: svq3.c:208
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
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition: bytestream.h:158
mem_internal.h
TgqContext
Definition: eatgq.c:45
tgq_decode_mb
static int tgq_decode_mb(TgqContext *s, GetByteContext *gbyte, AVFrame *frame, int mb_y, int mb_x)
Definition: eatgq.c:161
GetByteContext
Definition: bytestream.h:33
tgq_calculate_qtable
static void tgq_calculate_qtable(TgqContext *s, int quant)
Definition: eatgq.c:230
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:64
mode
Definition: swscale.c:60
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:434
AVPacket::data
uint8_t * data
Definition: packet.h:595
b
#define b
Definition: input.c:43
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:91
TgqContext::block
int16_t block[6][64]
Definition: eatgq.c:50
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:65
tgq_decode_frame
static int tgq_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition: eatgq.c:241
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:383
AVCodecContext::framerate
AVRational framerate
Definition: avcodec.h:559
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:197
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:337
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
GetBitContext
Definition: get_bits.h:109
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:52
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:210
av_cold
#define av_cold
Definition: attributes.h:119
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:544
AV_FRAME_FLAG_KEY
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition: frame.h:649
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:347
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:117
GetByteContext::buffer
const uint8_t * buffer
Definition: bytestream.h:34
get_sbits
static int get_sbits(GetBitContext *s, int n)
Definition: get_bits.h:322
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
av_fallthrough
#define av_fallthrough
Definition: attributes.h:67
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:332
tgq_dconly
static void tgq_dconly(TgqContext *s, unsigned char *dst, ptrdiff_t dst_stride, int dc)
Definition: eatgq.c:135
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:299
tgq_decode_close
static av_cold int tgq_decode_close(AVCodecContext *avctx)
Definition: eatgq.c:292
TgqContext::qtable
int qtable[64]
Definition: eatgq.c:49
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1765
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:551
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:302
AVPacket::size
int size
Definition: packet.h:596
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:87
i
#define i(width, name, range_min, range_max)
Definition: cbs_h264.c:63
TgqContext::last_frame
AVFrame * last_frame
Definition: eatgq.c:47
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
attributes.h
TgqContext::height
int height
Definition: eatgq.c:48
TgqContext::avctx
AVCodecContext * avctx
Definition: eatgq.c:46
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:144
copy_block.h
show_bits
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition: get_bits.h:373
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:496
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
AVCodecContext::height
int height
Definition: avcodec.h:600
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:639
avcodec.h
ff_zigzag_direct
const uint8_t ff_zigzag_direct[64]
Definition: mathtables.c:137
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:265
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:53
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:376
AVCodecContext
main external API structure.
Definition: avcodec.h:439
mode
mode
Definition: ebur128.h:83
Windows::Graphics::DirectX::Direct3D11::p
IDirect3DDxgiInterfaceAccess _COM_Outptr_ void ** p
Definition: vsrc_gfxcapture_winrt.hpp:53
av_clip_uint8
#define av_clip_uint8
Definition: common.h:106
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:78
AVPacket
This structure stores compressed data.
Definition: packet.h:572
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:466
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:600
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:48