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.

342 lines
10KB

  1. /*
  2. * Copyright (c) 2003 Michael Niedermayer
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * ASUS V1/V2 decoder.
  23. */
  24. #include "libavutil/attributes.h"
  25. #include "libavutil/mem.h"
  26. #include "asv.h"
  27. #include "avcodec.h"
  28. #include "blockdsp.h"
  29. #include "put_bits.h"
  30. #include "internal.h"
  31. #include "mathops.h"
  32. #include "mpeg12data.h"
  33. #define VLC_BITS 6
  34. #define ASV2_LEVEL_VLC_BITS 10
  35. static VLC ccp_vlc;
  36. static VLC level_vlc;
  37. static VLC dc_ccp_vlc;
  38. static VLC ac_ccp_vlc;
  39. static VLC asv2_level_vlc;
  40. static av_cold void init_vlcs(ASV1Context *a)
  41. {
  42. static int done = 0;
  43. if (!done) {
  44. done = 1;
  45. INIT_VLC_STATIC(&ccp_vlc, VLC_BITS, 17,
  46. &ff_asv_ccp_tab[0][1], 2, 1,
  47. &ff_asv_ccp_tab[0][0], 2, 1, 64);
  48. INIT_VLC_STATIC(&dc_ccp_vlc, VLC_BITS, 8,
  49. &ff_asv_dc_ccp_tab[0][1], 2, 1,
  50. &ff_asv_dc_ccp_tab[0][0], 2, 1, 64);
  51. INIT_VLC_STATIC(&ac_ccp_vlc, VLC_BITS, 16,
  52. &ff_asv_ac_ccp_tab[0][1], 2, 1,
  53. &ff_asv_ac_ccp_tab[0][0], 2, 1, 64);
  54. INIT_VLC_STATIC(&level_vlc, VLC_BITS, 7,
  55. &ff_asv_level_tab[0][1], 2, 1,
  56. &ff_asv_level_tab[0][0], 2, 1, 64);
  57. INIT_VLC_STATIC(&asv2_level_vlc, ASV2_LEVEL_VLC_BITS, 63,
  58. &ff_asv2_level_tab[0][1], 2, 1,
  59. &ff_asv2_level_tab[0][0], 2, 1, 1024);
  60. }
  61. }
  62. //FIXME write a reversed bitstream reader to avoid the double reverse
  63. static inline int asv2_get_bits(GetBitContext *gb, int n)
  64. {
  65. return ff_reverse[get_bits(gb, n) << (8-n)];
  66. }
  67. static inline int asv1_get_level(GetBitContext *gb)
  68. {
  69. int code = get_vlc2(gb, level_vlc.table, VLC_BITS, 1);
  70. if (code == 3)
  71. return get_sbits(gb, 8);
  72. else
  73. return code - 3;
  74. }
  75. static inline int asv2_get_level(GetBitContext *gb)
  76. {
  77. int code = get_vlc2(gb, asv2_level_vlc.table, ASV2_LEVEL_VLC_BITS, 1);
  78. if (code == 31)
  79. return (int8_t)asv2_get_bits(gb, 8);
  80. else
  81. return code - 31;
  82. }
  83. static inline int asv1_decode_block(ASV1Context *a, int16_t block[64])
  84. {
  85. int i;
  86. block[0] = 8 * get_bits(&a->gb, 8);
  87. for (i = 0; i < 11; i++) {
  88. const int ccp = get_vlc2(&a->gb, ccp_vlc.table, VLC_BITS, 1);
  89. if (ccp) {
  90. if (ccp == 16)
  91. break;
  92. if (ccp < 0 || i >= 10) {
  93. av_log(a->avctx, AV_LOG_ERROR, "coded coeff pattern damaged\n");
  94. return AVERROR_INVALIDDATA;
  95. }
  96. if (ccp & 8)
  97. block[a->scantable.permutated[4 * i + 0]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 0]) >> 4;
  98. if (ccp & 4)
  99. block[a->scantable.permutated[4 * i + 1]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 1]) >> 4;
  100. if (ccp & 2)
  101. block[a->scantable.permutated[4 * i + 2]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 2]) >> 4;
  102. if (ccp & 1)
  103. block[a->scantable.permutated[4 * i + 3]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 3]) >> 4;
  104. }
  105. }
  106. return 0;
  107. }
  108. static inline int asv2_decode_block(ASV1Context *a, int16_t block[64])
  109. {
  110. int i, count, ccp;
  111. count = asv2_get_bits(&a->gb, 4);
  112. block[0] = 8 * asv2_get_bits(&a->gb, 8);
  113. ccp = get_vlc2(&a->gb, dc_ccp_vlc.table, VLC_BITS, 1);
  114. if (ccp) {
  115. if (ccp & 4)
  116. block[a->scantable.permutated[1]] = (asv2_get_level(&a->gb) * a->intra_matrix[1]) >> 4;
  117. if (ccp & 2)
  118. block[a->scantable.permutated[2]] = (asv2_get_level(&a->gb) * a->intra_matrix[2]) >> 4;
  119. if (ccp & 1)
  120. block[a->scantable.permutated[3]] = (asv2_get_level(&a->gb) * a->intra_matrix[3]) >> 4;
  121. }
  122. for (i = 1; i < count + 1; i++) {
  123. const int ccp = get_vlc2(&a->gb, ac_ccp_vlc.table, VLC_BITS, 1);
  124. if (ccp) {
  125. if (ccp & 8)
  126. block[a->scantable.permutated[4*i + 0]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 0]) >> 4;
  127. if (ccp & 4)
  128. block[a->scantable.permutated[4*i + 1]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 1]) >> 4;
  129. if (ccp & 2)
  130. block[a->scantable.permutated[4*i + 2]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 2]) >> 4;
  131. if (ccp & 1)
  132. block[a->scantable.permutated[4*i + 3]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 3]) >> 4;
  133. }
  134. }
  135. return 0;
  136. }
  137. static inline int decode_mb(ASV1Context *a, int16_t block[6][64])
  138. {
  139. int i;
  140. a->bdsp.clear_blocks(block[0]);
  141. if (a->avctx->codec_id == AV_CODEC_ID_ASV1) {
  142. for (i = 0; i < 6; i++) {
  143. if (asv1_decode_block(a, block[i]) < 0)
  144. return -1;
  145. }
  146. } else {
  147. for (i = 0; i < 6; i++) {
  148. if (asv2_decode_block(a, block[i]) < 0)
  149. return -1;
  150. }
  151. }
  152. return 0;
  153. }
  154. static inline void idct_put(ASV1Context *a, AVFrame *frame, int mb_x, int mb_y)
  155. {
  156. int16_t (*block)[64] = a->block;
  157. int linesize = frame->linesize[0];
  158. uint8_t *dest_y = frame->data[0] + (mb_y * 16* linesize ) + mb_x * 16;
  159. uint8_t *dest_cb = frame->data[1] + (mb_y * 8 * frame->linesize[1]) + mb_x * 8;
  160. uint8_t *dest_cr = frame->data[2] + (mb_y * 8 * frame->linesize[2]) + mb_x * 8;
  161. a->dsp.idct_put(dest_y , linesize, block[0]);
  162. a->dsp.idct_put(dest_y + 8, linesize, block[1]);
  163. a->dsp.idct_put(dest_y + 8*linesize , linesize, block[2]);
  164. a->dsp.idct_put(dest_y + 8*linesize + 8, linesize, block[3]);
  165. if (!(a->avctx->flags&CODEC_FLAG_GRAY)) {
  166. a->dsp.idct_put(dest_cb, frame->linesize[1], block[4]);
  167. a->dsp.idct_put(dest_cr, frame->linesize[2], block[5]);
  168. }
  169. }
  170. static int decode_frame(AVCodecContext *avctx,
  171. void *data, int *got_frame,
  172. AVPacket *avpkt)
  173. {
  174. ASV1Context * const a = avctx->priv_data;
  175. const uint8_t *buf = avpkt->data;
  176. int buf_size = avpkt->size;
  177. AVFrame * const p = data;
  178. int mb_x, mb_y, ret;
  179. if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
  180. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  181. return ret;
  182. }
  183. p->pict_type = AV_PICTURE_TYPE_I;
  184. p->key_frame = 1;
  185. av_fast_padded_malloc(&a->bitstream_buffer, &a->bitstream_buffer_size,
  186. buf_size);
  187. if (!a->bitstream_buffer)
  188. return AVERROR(ENOMEM);
  189. if (avctx->codec_id == AV_CODEC_ID_ASV1)
  190. a->bbdsp.bswap_buf((uint32_t *) a->bitstream_buffer,
  191. (const uint32_t *) buf, buf_size / 4);
  192. else {
  193. int i;
  194. for (i = 0; i < buf_size; i++)
  195. a->bitstream_buffer[i] = ff_reverse[buf[i]];
  196. }
  197. init_get_bits(&a->gb, a->bitstream_buffer, buf_size*8);
  198. for (mb_y = 0; mb_y < a->mb_height2; mb_y++) {
  199. for (mb_x = 0; mb_x < a->mb_width2; mb_x++) {
  200. if ((ret = decode_mb(a, a->block)) < 0)
  201. return ret;
  202. idct_put(a, p, mb_x, mb_y);
  203. }
  204. }
  205. if (a->mb_width2 != a->mb_width) {
  206. mb_x = a->mb_width2;
  207. for (mb_y = 0; mb_y < a->mb_height2; mb_y++) {
  208. if ((ret = decode_mb(a, a->block)) < 0)
  209. return ret;
  210. idct_put(a, p, mb_x, mb_y);
  211. }
  212. }
  213. if (a->mb_height2 != a->mb_height) {
  214. mb_y = a->mb_height2;
  215. for (mb_x = 0; mb_x < a->mb_width; mb_x++) {
  216. if ((ret = decode_mb(a, a->block)) < 0)
  217. return ret;
  218. idct_put(a, p, mb_x, mb_y);
  219. }
  220. }
  221. *got_frame = 1;
  222. emms_c();
  223. return (get_bits_count(&a->gb) + 31) / 32 * 4;
  224. }
  225. static av_cold int decode_init(AVCodecContext *avctx)
  226. {
  227. ASV1Context * const a = avctx->priv_data;
  228. const int scale = avctx->codec_id == AV_CODEC_ID_ASV1 ? 1 : 2;
  229. int i;
  230. if (avctx->extradata_size < 1) {
  231. av_log(avctx, AV_LOG_ERROR, "No extradata provided\n");
  232. return AVERROR_INVALIDDATA;
  233. }
  234. ff_asv_common_init(avctx);
  235. ff_blockdsp_init(&a->bdsp, avctx);
  236. init_vlcs(a);
  237. ff_init_scantable(a->dsp.idct_permutation, &a->scantable, ff_asv_scantab);
  238. avctx->pix_fmt = AV_PIX_FMT_YUV420P;
  239. a->inv_qscale = avctx->extradata[0];
  240. if (a->inv_qscale == 0) {
  241. av_log(avctx, AV_LOG_ERROR, "illegal qscale 0\n");
  242. if (avctx->codec_id == AV_CODEC_ID_ASV1)
  243. a->inv_qscale = 6;
  244. else
  245. a->inv_qscale = 10;
  246. }
  247. for (i = 0; i < 64; i++) {
  248. int index = ff_asv_scantab[i];
  249. a->intra_matrix[i] = 64 * scale * ff_mpeg1_default_intra_matrix[index] / a->inv_qscale;
  250. }
  251. return 0;
  252. }
  253. static av_cold int decode_end(AVCodecContext *avctx)
  254. {
  255. ASV1Context * const a = avctx->priv_data;
  256. av_freep(&a->bitstream_buffer);
  257. a->bitstream_buffer_size = 0;
  258. return 0;
  259. }
  260. AVCodec ff_asv1_decoder = {
  261. .name = "asv1",
  262. .long_name = NULL_IF_CONFIG_SMALL("ASUS V1"),
  263. .type = AVMEDIA_TYPE_VIDEO,
  264. .id = AV_CODEC_ID_ASV1,
  265. .priv_data_size = sizeof(ASV1Context),
  266. .init = decode_init,
  267. .close = decode_end,
  268. .decode = decode_frame,
  269. .capabilities = CODEC_CAP_DR1,
  270. };
  271. AVCodec ff_asv2_decoder = {
  272. .name = "asv2",
  273. .long_name = NULL_IF_CONFIG_SMALL("ASUS V2"),
  274. .type = AVMEDIA_TYPE_VIDEO,
  275. .id = AV_CODEC_ID_ASV2,
  276. .priv_data_size = sizeof(ASV1Context),
  277. .init = decode_init,
  278. .close = decode_end,
  279. .decode = decode_frame,
  280. .capabilities = CODEC_CAP_DR1,
  281. };