You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

344 lines
11KB

  1. /*
  2. * Electronic Arts Madcow Video Decoder
  3. * Copyright (c) 2007-2009 Peter Ross
  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. * @file
  23. * Electronic Arts Madcow Video Decoder
  24. * @author Peter Ross <pross@xvid.org>
  25. *
  26. * @see technical details at
  27. * http://wiki.multimedia.cx/index.php?title=Electronic_Arts_MAD
  28. */
  29. #include "avcodec.h"
  30. #include "bswapdsp.h"
  31. #include "get_bits.h"
  32. #include "aandcttab.h"
  33. #include "eaidct.h"
  34. #include "idctdsp.h"
  35. #include "internal.h"
  36. #include "mpeg12.h"
  37. #include "mpeg12data.h"
  38. #include "libavutil/imgutils.h"
  39. #define EA_PREAMBLE_SIZE 8
  40. #define MADk_TAG MKTAG('M', 'A', 'D', 'k') /* MAD i-frame */
  41. #define MADm_TAG MKTAG('M', 'A', 'D', 'm') /* MAD p-frame */
  42. #define MADe_TAG MKTAG('M', 'A', 'D', 'e') /* MAD lqp-frame */
  43. typedef struct MadContext {
  44. AVCodecContext *avctx;
  45. BlockDSPContext bdsp;
  46. BswapDSPContext bbdsp;
  47. IDCTDSPContext idsp;
  48. AVFrame *last_frame;
  49. GetBitContext gb;
  50. void *bitstream_buf;
  51. unsigned int bitstream_buf_size;
  52. DECLARE_ALIGNED(16, int16_t, block)[64];
  53. ScanTable scantable;
  54. uint16_t quant_matrix[64];
  55. int mb_x;
  56. int mb_y;
  57. } MadContext;
  58. static av_cold int decode_init(AVCodecContext *avctx)
  59. {
  60. MadContext *s = avctx->priv_data;
  61. s->avctx = avctx;
  62. avctx->pix_fmt = AV_PIX_FMT_YUV420P;
  63. ff_blockdsp_init(&s->bdsp, avctx);
  64. ff_bswapdsp_init(&s->bbdsp);
  65. ff_idctdsp_init(&s->idsp, avctx);
  66. ff_init_scantable_permutation(s->idsp.idct_permutation, FF_NO_IDCT_PERM);
  67. ff_init_scantable(s->idsp.idct_permutation, &s->scantable, ff_zigzag_direct);
  68. ff_mpeg12_init_vlcs();
  69. s->last_frame = av_frame_alloc();
  70. if (!s->last_frame)
  71. return AVERROR(ENOMEM);
  72. return 0;
  73. }
  74. static inline void comp(unsigned char *dst, int dst_stride,
  75. unsigned char *src, int src_stride, int add)
  76. {
  77. int j, i;
  78. for (j=0; j<8; j++)
  79. for (i=0; i<8; i++)
  80. dst[j*dst_stride + i] = av_clip_uint8(src[j*src_stride + i] + add);
  81. }
  82. static inline void comp_block(MadContext *t, AVFrame *frame,
  83. int mb_x, int mb_y,
  84. int j, int mv_x, int mv_y, int add)
  85. {
  86. if (j < 4) {
  87. unsigned offset = (mb_y*16 + ((j&2)<<2) + mv_y)*t->last_frame->linesize[0] + mb_x*16 + ((j&1)<<3) + mv_x;
  88. if (offset >= (t->avctx->height - 7) * t->last_frame->linesize[0] - 7)
  89. return;
  90. comp(frame->data[0] + (mb_y*16 + ((j&2)<<2))*frame->linesize[0] + mb_x*16 + ((j&1)<<3),
  91. frame->linesize[0],
  92. t->last_frame->data[0] + offset,
  93. t->last_frame->linesize[0], add);
  94. } else if (!(t->avctx->flags & CODEC_FLAG_GRAY)) {
  95. int index = j - 3;
  96. unsigned offset = (mb_y * 8 + (mv_y/2))*t->last_frame->linesize[index] + mb_x * 8 + (mv_x/2);
  97. if (offset >= (t->avctx->height/2 - 7) * t->last_frame->linesize[index] - 7)
  98. return;
  99. comp(frame->data[index] + (mb_y*8)*frame->linesize[index] + mb_x * 8,
  100. frame->linesize[index],
  101. t->last_frame->data[index] + offset,
  102. t->last_frame->linesize[index], add);
  103. }
  104. }
  105. static inline void idct_put(MadContext *t, AVFrame *frame, int16_t *block,
  106. int mb_x, int mb_y, int j)
  107. {
  108. if (j < 4) {
  109. ff_ea_idct_put_c(
  110. frame->data[0] + (mb_y*16 + ((j&2)<<2))*frame->linesize[0] + mb_x*16 + ((j&1)<<3),
  111. frame->linesize[0], block);
  112. } else if (!(t->avctx->flags & CODEC_FLAG_GRAY)) {
  113. int index = j - 3;
  114. ff_ea_idct_put_c(
  115. frame->data[index] + (mb_y*8)*frame->linesize[index] + mb_x*8,
  116. frame->linesize[index], block);
  117. }
  118. }
  119. static inline int decode_block_intra(MadContext *s, int16_t * block)
  120. {
  121. int level, i, j, run;
  122. RLTable *rl = &ff_rl_mpeg1;
  123. const uint8_t *scantable = s->scantable.permutated;
  124. int16_t *quant_matrix = s->quant_matrix;
  125. block[0] = (128 + get_sbits(&s->gb, 8)) * quant_matrix[0];
  126. /* The RL decoder is derived from mpeg1_decode_block_intra;
  127. Escaped level and run values a decoded differently */
  128. i = 0;
  129. {
  130. OPEN_READER(re, &s->gb);
  131. /* now quantify & encode AC coefficients */
  132. for (;;) {
  133. UPDATE_CACHE(re, &s->gb);
  134. GET_RL_VLC(level, run, re, &s->gb, rl->rl_vlc[0], TEX_VLC_BITS, 2, 0);
  135. if (level == 127) {
  136. break;
  137. } else if (level != 0) {
  138. i += run;
  139. j = scantable[i];
  140. level = (level*quant_matrix[j]) >> 4;
  141. level = (level-1)|1;
  142. level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
  143. LAST_SKIP_BITS(re, &s->gb, 1);
  144. } else {
  145. /* escape */
  146. UPDATE_CACHE(re, &s->gb);
  147. level = SHOW_SBITS(re, &s->gb, 10); SKIP_BITS(re, &s->gb, 10);
  148. UPDATE_CACHE(re, &s->gb);
  149. run = SHOW_UBITS(re, &s->gb, 6)+1; LAST_SKIP_BITS(re, &s->gb, 6);
  150. i += run;
  151. j = scantable[i];
  152. if (level < 0) {
  153. level = -level;
  154. level = (level*quant_matrix[j]) >> 4;
  155. level = (level-1)|1;
  156. level = -level;
  157. } else {
  158. level = (level*quant_matrix[j]) >> 4;
  159. level = (level-1)|1;
  160. }
  161. }
  162. if (i > 63) {
  163. av_log(s->avctx, AV_LOG_ERROR, "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y);
  164. return -1;
  165. }
  166. block[j] = level;
  167. }
  168. CLOSE_READER(re, &s->gb);
  169. }
  170. return 0;
  171. }
  172. static int decode_motion(GetBitContext *gb)
  173. {
  174. int value = 0;
  175. if (get_bits1(gb)) {
  176. if (get_bits1(gb))
  177. value = -17;
  178. value += get_bits(gb, 4) + 1;
  179. }
  180. return value;
  181. }
  182. static int decode_mb(MadContext *s, AVFrame *frame, int inter)
  183. {
  184. int mv_map = 0;
  185. int av_uninit(mv_x), av_uninit(mv_y);
  186. int j;
  187. if (inter) {
  188. int v = decode210(&s->gb);
  189. if (v < 2) {
  190. mv_map = v ? get_bits(&s->gb, 6) : 63;
  191. mv_x = decode_motion(&s->gb);
  192. mv_y = decode_motion(&s->gb);
  193. }
  194. }
  195. for (j=0; j<6; j++) {
  196. if (mv_map & (1<<j)) { // mv_x and mv_y are guarded by mv_map
  197. int add = 2*decode_motion(&s->gb);
  198. if (s->last_frame->data[0])
  199. comp_block(s, frame, s->mb_x, s->mb_y, j, mv_x, mv_y, add);
  200. } else {
  201. s->bdsp.clear_block(s->block);
  202. if(decode_block_intra(s, s->block) < 0)
  203. return -1;
  204. idct_put(s, frame, s->block, s->mb_x, s->mb_y, j);
  205. }
  206. }
  207. return 0;
  208. }
  209. static void calc_quant_matrix(MadContext *s, int qscale)
  210. {
  211. int i;
  212. s->quant_matrix[0] = (ff_inv_aanscales[0]*ff_mpeg1_default_intra_matrix[0]) >> 11;
  213. for (i=1; i<64; i++)
  214. s->quant_matrix[i] = (ff_inv_aanscales[i]*ff_mpeg1_default_intra_matrix[i]*qscale + 32) >> 10;
  215. }
  216. static int decode_frame(AVCodecContext *avctx,
  217. void *data, int *got_frame,
  218. AVPacket *avpkt)
  219. {
  220. const uint8_t *buf = avpkt->data;
  221. int buf_size = avpkt->size;
  222. const uint8_t *buf_end = buf+buf_size;
  223. MadContext *s = avctx->priv_data;
  224. AVFrame *frame = data;
  225. int width, height;
  226. int chunk_type;
  227. int inter, ret;
  228. if (buf_size < 26) {
  229. av_log(avctx, AV_LOG_ERROR, "Input buffer too small\n");
  230. *got_frame = 0;
  231. return AVERROR_INVALIDDATA;
  232. }
  233. chunk_type = AV_RL32(&buf[0]);
  234. inter = (chunk_type == MADm_TAG || chunk_type == MADe_TAG);
  235. buf += 8;
  236. av_reduce(&avctx->time_base.num, &avctx->time_base.den,
  237. AV_RL16(&buf[6]), 1000, 1<<30);
  238. width = AV_RL16(&buf[8]);
  239. height = AV_RL16(&buf[10]);
  240. calc_quant_matrix(s, buf[13]);
  241. buf += 16;
  242. if (width < 16 || height < 16) {
  243. av_log(avctx, AV_LOG_ERROR, "Dimensions too small\n");
  244. return AVERROR_INVALIDDATA;
  245. }
  246. if (avctx->width != width || avctx->height != height) {
  247. av_frame_unref(s->last_frame);
  248. if((width * height)/2048*7 > buf_end-buf)
  249. return AVERROR_INVALIDDATA;
  250. if ((ret = ff_set_dimensions(avctx, width, height)) < 0)
  251. return ret;
  252. }
  253. if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0)
  254. return ret;
  255. if (inter && !s->last_frame->data[0]) {
  256. av_log(avctx, AV_LOG_WARNING, "Missing reference frame.\n");
  257. ret = ff_get_buffer(avctx, s->last_frame, AV_GET_BUFFER_FLAG_REF);
  258. if (ret < 0)
  259. return ret;
  260. memset(s->last_frame->data[0], 0, s->last_frame->height *
  261. s->last_frame->linesize[0]);
  262. memset(s->last_frame->data[1], 0x80, s->last_frame->height / 2 *
  263. s->last_frame->linesize[1]);
  264. memset(s->last_frame->data[2], 0x80, s->last_frame->height / 2 *
  265. s->last_frame->linesize[2]);
  266. }
  267. av_fast_padded_malloc(&s->bitstream_buf, &s->bitstream_buf_size,
  268. buf_end - buf);
  269. if (!s->bitstream_buf)
  270. return AVERROR(ENOMEM);
  271. s->bbdsp.bswap16_buf(s->bitstream_buf, (const uint16_t *) buf,
  272. (buf_end - buf) / 2);
  273. memset((uint8_t*)s->bitstream_buf + (buf_end-buf), 0, FF_INPUT_BUFFER_PADDING_SIZE);
  274. init_get_bits(&s->gb, s->bitstream_buf, 8*(buf_end-buf));
  275. for (s->mb_y=0; s->mb_y < (avctx->height+15)/16; s->mb_y++)
  276. for (s->mb_x=0; s->mb_x < (avctx->width +15)/16; s->mb_x++)
  277. if(decode_mb(s, frame, inter) < 0)
  278. return AVERROR_INVALIDDATA;
  279. *got_frame = 1;
  280. if (chunk_type != MADe_TAG) {
  281. av_frame_unref(s->last_frame);
  282. if ((ret = av_frame_ref(s->last_frame, frame)) < 0)
  283. return ret;
  284. }
  285. return buf_size;
  286. }
  287. static av_cold int decode_end(AVCodecContext *avctx)
  288. {
  289. MadContext *t = avctx->priv_data;
  290. av_frame_free(&t->last_frame);
  291. av_free(t->bitstream_buf);
  292. return 0;
  293. }
  294. AVCodec ff_eamad_decoder = {
  295. .name = "eamad",
  296. .long_name = NULL_IF_CONFIG_SMALL("Electronic Arts Madcow Video"),
  297. .type = AVMEDIA_TYPE_VIDEO,
  298. .id = AV_CODEC_ID_MAD,
  299. .priv_data_size = sizeof(MadContext),
  300. .init = decode_init,
  301. .close = decode_end,
  302. .decode = decode_frame,
  303. .capabilities = CODEC_CAP_DR1,
  304. };