FFmpeg
Loading...
Searching...
No Matches
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
32#define BITSTREAM_READER_LE
33
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
45typedef struct TgqContext {
49 int qtable[64];
50 DECLARE_ALIGNED(16, int16_t, block)[6][64];
52
54{
55 TgqContext *s = avctx->priv_data;
56 s->avctx = avctx;
57 avctx->framerate = (AVRational){ 15, 1 };
59 s->last_frame = av_frame_alloc();
60 if (!s->last_frame)
61 return AVERROR(ENOMEM);
62 return 0;
63}
64
65static 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)
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)
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
117static 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
135static 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};
const uint16_t ff_inv_aanscales[64]
Definition aandcttab.c:38
AAN (Arai, Agui and Nakajima) (I)DCT tables.
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition dsp.h:87
const FFCodec ff_eatgq_decoder
Definition eatgq.c:299
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
Libavcodec external API header.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
Definition bytestream.h:267
static av_always_inline void bytestream2_skipu(GetByteContext *g, unsigned int size)
Definition bytestream.h:174
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition bytestream.h:158
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition bytestream.h:137
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
Definition bytestream.h:168
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define av_clip_uint8
Definition common.h:106
static void copy_block8(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)
Definition copy_block.h:47
static void copy_block16(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride, int h)
Definition copy_block.h:68
static int16_t block[64]
Definition dct.c:125
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Definition utils.c:91
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
void ff_ea_idct_put_c(uint8_t *dest, ptrdiff_t linesize, int16_t *block)
Definition eaidct.c:80
static void tgq_calculate_qtable(TgqContext *s, int quant)
Definition eatgq.c:230
static int tgq_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition eatgq.c:241
static void tgq_dconly(TgqContext *s, unsigned char *dst, ptrdiff_t dst_stride, int dc)
Definition eatgq.c:135
static int tgq_decode_block(TgqContext *s, int16_t block[64], GetBitContext *gb)
Definition eatgq.c:65
static int tgq_decode_mb(TgqContext *s, GetByteContext *gbyte, AVFrame *frame, int mb_y, int mb_x)
Definition eatgq.c:161
static av_cold int tgq_decode_init(AVCodecContext *avctx)
Definition eatgq.c:53
static av_cold int tgq_decode_close(AVCodecContext *avctx)
Definition eatgq.c:292
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
static void tgq_idct_put_mb(TgqContext *s, int16_t(*block)[64], AVFrame *frame, int mb_x, int mb_y)
Definition eatgq.c:117
double value
Definition eval.c:102
bitstream reader API header.
static int get_sbits(GetBitContext *s, int n)
Definition get_bits.h:322
static void skip_bits(GetBitContext *s, int n)
Definition get_bits.h:383
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition get_bits.h:544
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition get_bits.h:337
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition get_bits.h:373
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
#define AV_CODEC_FLAG_GRAY
Only decode/encode grayscale.
Definition avcodec.h:302
@ AV_CODEC_ID_TGQ
Definition codec_id.h:171
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AVERROR(e)
Definition error.h:45
#define AV_FRAME_FLAG_KEY
A flag to mark frames that are keyframes.
Definition frame.h:687
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition frame.c:496
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
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition frame.c:64
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition frame.c:52
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_VIDEO
Definition avutil.h:200
int a
#define b
Definition input.c:43
#define AV_RL32(p)
static const int8_t mv[256][2]
Definition 4xm.c:81
Macro definitions for various function/variable attributes.
#define av_fallthrough
Definition attributes.h:67
#define av_cold
Definition attributes.h:117
#define FFMIN(a, b)
Definition macros.h:49
#define FFALIGN(x, a)
Definition macros.h:78
const uint8_t ff_zigzag_direct[64]
Definition mathtables.c:137
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
main external API structure.
Definition avcodec.h:443
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition avcodec.h:643
int width
picture width / height.
Definition avcodec.h:604
AVRational framerate
Definition avcodec.h:563
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
Rational number (pair of numerator and denominator).
Definition rational.h:58
const uint8_t * buffer
Definition bytestream.h:34
AVCodecContext * avctx
Definition eatgq.c:46
int qtable[64]
Definition eatgq.c:49
int height
Definition eatgq.c:48
AVFrame * last_frame
Definition eatgq.c:47
int width
Definition eatgq.c:48
int16_t block[6][64]
Definition eatgq.c:50
Definition swscale.c:71
uint8_t level
Definition svq3.c:208
#define av_log(a,...)
static const uint8_t quant[64]
Definition vmixdec.c:71