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.

354 lines
11KB

  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 "put_bits.h"
  29. #include "dsputil.h"
  30. #include "internal.h"
  31. #include "mathops.h"
  32. #include "mpeg12data.h"
  33. //#undef NDEBUG
  34. //#include <assert.h>
  35. #define VLC_BITS 6
  36. #define ASV2_LEVEL_VLC_BITS 10
  37. static VLC ccp_vlc;
  38. static VLC level_vlc;
  39. static VLC dc_ccp_vlc;
  40. static VLC ac_ccp_vlc;
  41. static VLC asv2_level_vlc;
  42. static av_cold void init_vlcs(ASV1Context *a)
  43. {
  44. static int done = 0;
  45. if (!done) {
  46. done = 1;
  47. INIT_VLC_STATIC(&ccp_vlc, VLC_BITS, 17,
  48. &ff_asv_ccp_tab[0][1], 2, 1,
  49. &ff_asv_ccp_tab[0][0], 2, 1, 64);
  50. INIT_VLC_STATIC(&dc_ccp_vlc, VLC_BITS, 8,
  51. &ff_asv_dc_ccp_tab[0][1], 2, 1,
  52. &ff_asv_dc_ccp_tab[0][0], 2, 1, 64);
  53. INIT_VLC_STATIC(&ac_ccp_vlc, VLC_BITS, 16,
  54. &ff_asv_ac_ccp_tab[0][1], 2, 1,
  55. &ff_asv_ac_ccp_tab[0][0], 2, 1, 64);
  56. INIT_VLC_STATIC(&level_vlc, VLC_BITS, 7,
  57. &ff_asv_level_tab[0][1], 2, 1,
  58. &ff_asv_level_tab[0][0], 2, 1, 64);
  59. INIT_VLC_STATIC(&asv2_level_vlc, ASV2_LEVEL_VLC_BITS, 63,
  60. &ff_asv2_level_tab[0][1], 2, 1,
  61. &ff_asv2_level_tab[0][0], 2, 1, 1024);
  62. }
  63. }
  64. //FIXME write a reversed bitstream reader to avoid the double reverse
  65. static inline int asv2_get_bits(GetBitContext *gb, int n)
  66. {
  67. return ff_reverse[get_bits(gb, n) << (8-n)];
  68. }
  69. static inline int asv1_get_level(GetBitContext *gb)
  70. {
  71. int code = get_vlc2(gb, level_vlc.table, VLC_BITS, 1);
  72. if (code == 3)
  73. return get_sbits(gb, 8);
  74. else
  75. return code - 3;
  76. }
  77. static inline int asv2_get_level(GetBitContext *gb)
  78. {
  79. int code = get_vlc2(gb, asv2_level_vlc.table, ASV2_LEVEL_VLC_BITS, 1);
  80. if (code == 31)
  81. return (int8_t)asv2_get_bits(gb, 8);
  82. else
  83. return code - 31;
  84. }
  85. static inline int asv1_decode_block(ASV1Context *a, int16_t block[64])
  86. {
  87. int i;
  88. block[0] = 8 * get_bits(&a->gb, 8);
  89. for (i = 0; i < 11; i++) {
  90. const int ccp = get_vlc2(&a->gb, ccp_vlc.table, VLC_BITS, 1);
  91. if (ccp) {
  92. if (ccp == 16)
  93. break;
  94. if (ccp < 0 || i >= 10) {
  95. av_log(a->avctx, AV_LOG_ERROR, "coded coeff pattern damaged\n");
  96. return AVERROR_INVALIDDATA;
  97. }
  98. if (ccp & 8)
  99. block[a->scantable.permutated[4 * i + 0]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 0]) >> 4;
  100. if (ccp & 4)
  101. block[a->scantable.permutated[4 * i + 1]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 1]) >> 4;
  102. if (ccp & 2)
  103. block[a->scantable.permutated[4 * i + 2]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 2]) >> 4;
  104. if (ccp & 1)
  105. block[a->scantable.permutated[4 * i + 3]] = (asv1_get_level(&a->gb) * a->intra_matrix[4 * i + 3]) >> 4;
  106. }
  107. }
  108. return 0;
  109. }
  110. static inline int asv2_decode_block(ASV1Context *a, int16_t block[64])
  111. {
  112. int i, count, ccp;
  113. count = asv2_get_bits(&a->gb, 4);
  114. block[0] = 8 * asv2_get_bits(&a->gb, 8);
  115. ccp = get_vlc2(&a->gb, dc_ccp_vlc.table, VLC_BITS, 1);
  116. if (ccp) {
  117. if (ccp & 4)
  118. block[a->scantable.permutated[1]] = (asv2_get_level(&a->gb) * a->intra_matrix[1]) >> 4;
  119. if (ccp & 2)
  120. block[a->scantable.permutated[2]] = (asv2_get_level(&a->gb) * a->intra_matrix[2]) >> 4;
  121. if (ccp & 1)
  122. block[a->scantable.permutated[3]] = (asv2_get_level(&a->gb) * a->intra_matrix[3]) >> 4;
  123. }
  124. for (i = 1; i < count + 1; i++) {
  125. const int ccp = get_vlc2(&a->gb, ac_ccp_vlc.table, VLC_BITS, 1);
  126. if (ccp) {
  127. if (ccp & 8)
  128. block[a->scantable.permutated[4*i + 0]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 0]) >> 4;
  129. if (ccp & 4)
  130. block[a->scantable.permutated[4*i + 1]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 1]) >> 4;
  131. if (ccp & 2)
  132. block[a->scantable.permutated[4*i + 2]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 2]) >> 4;
  133. if (ccp & 1)
  134. block[a->scantable.permutated[4*i + 3]] = (asv2_get_level(&a->gb) * a->intra_matrix[4*i + 3]) >> 4;
  135. }
  136. }
  137. return 0;
  138. }
  139. static inline int decode_mb(ASV1Context *a, int16_t block[6][64])
  140. {
  141. int i;
  142. a->dsp.clear_blocks(block[0]);
  143. if (a->avctx->codec_id == AV_CODEC_ID_ASV1) {
  144. for (i = 0; i < 6; i++) {
  145. if (asv1_decode_block(a, block[i]) < 0)
  146. return -1;
  147. }
  148. } else {
  149. for (i = 0; i < 6; i++) {
  150. if (asv2_decode_block(a, block[i]) < 0)
  151. return -1;
  152. }
  153. }
  154. return 0;
  155. }
  156. static inline void idct_put(ASV1Context *a, int mb_x, int mb_y)
  157. {
  158. int16_t (*block)[64] = a->block;
  159. int linesize = a->picture.linesize[0];
  160. uint8_t *dest_y = a->picture.data[0] + (mb_y * 16* linesize ) + mb_x * 16;
  161. uint8_t *dest_cb = a->picture.data[1] + (mb_y * 8 * a->picture.linesize[1]) + mb_x * 8;
  162. uint8_t *dest_cr = a->picture.data[2] + (mb_y * 8 * a->picture.linesize[2]) + mb_x * 8;
  163. a->dsp.idct_put(dest_y , linesize, block[0]);
  164. a->dsp.idct_put(dest_y + 8, linesize, block[1]);
  165. a->dsp.idct_put(dest_y + 8*linesize , linesize, block[2]);
  166. a->dsp.idct_put(dest_y + 8*linesize + 8, linesize, block[3]);
  167. if (!(a->avctx->flags&CODEC_FLAG_GRAY)) {
  168. a->dsp.idct_put(dest_cb, a->picture.linesize[1], block[4]);
  169. a->dsp.idct_put(dest_cr, a->picture.linesize[2], block[5]);
  170. }
  171. }
  172. static int decode_frame(AVCodecContext *avctx,
  173. void *data, int *got_frame,
  174. AVPacket *avpkt)
  175. {
  176. ASV1Context * const a = avctx->priv_data;
  177. const uint8_t *buf = avpkt->data;
  178. int buf_size = avpkt->size;
  179. AVFrame *picture = data;
  180. AVFrame * const p = &a->picture;
  181. int mb_x, mb_y, ret;
  182. if (p->data[0])
  183. avctx->release_buffer(avctx, p);
  184. p->reference = 0;
  185. if ((ret = ff_get_buffer(avctx, p)) < 0) {
  186. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  187. return ret;
  188. }
  189. p->pict_type = AV_PICTURE_TYPE_I;
  190. p->key_frame = 1;
  191. av_fast_padded_malloc(&a->bitstream_buffer, &a->bitstream_buffer_size,
  192. buf_size);
  193. if (!a->bitstream_buffer)
  194. return AVERROR(ENOMEM);
  195. if (avctx->codec_id == AV_CODEC_ID_ASV1)
  196. a->dsp.bswap_buf((uint32_t*)a->bitstream_buffer, (const uint32_t*)buf, buf_size/4);
  197. else {
  198. int i;
  199. for (i = 0; i < buf_size; i++)
  200. a->bitstream_buffer[i] = ff_reverse[buf[i]];
  201. }
  202. init_get_bits(&a->gb, a->bitstream_buffer, buf_size*8);
  203. for (mb_y = 0; mb_y < a->mb_height2; mb_y++) {
  204. for (mb_x = 0; mb_x < a->mb_width2; mb_x++) {
  205. if ((ret = decode_mb(a, a->block)) < 0)
  206. return ret;
  207. idct_put(a, mb_x, mb_y);
  208. }
  209. }
  210. if (a->mb_width2 != a->mb_width) {
  211. mb_x = a->mb_width2;
  212. for (mb_y = 0; mb_y < a->mb_height2; mb_y++) {
  213. if ((ret = decode_mb(a, a->block)) < 0)
  214. return ret;
  215. idct_put(a, mb_x, mb_y);
  216. }
  217. }
  218. if (a->mb_height2 != a->mb_height) {
  219. mb_y = a->mb_height2;
  220. for (mb_x = 0; mb_x < a->mb_width; mb_x++) {
  221. if ((ret = decode_mb(a, a->block)) < 0)
  222. return ret;
  223. idct_put(a, mb_x, mb_y);
  224. }
  225. }
  226. *picture = a->picture;
  227. *got_frame = 1;
  228. emms_c();
  229. return (get_bits_count(&a->gb) + 31) / 32 * 4;
  230. }
  231. static av_cold int decode_init(AVCodecContext *avctx)
  232. {
  233. ASV1Context * const a = avctx->priv_data;
  234. AVFrame *p = &a->picture;
  235. const int scale = avctx->codec_id == AV_CODEC_ID_ASV1 ? 1 : 2;
  236. int i;
  237. ff_asv_common_init(avctx);
  238. init_vlcs(a);
  239. ff_init_scantable(a->dsp.idct_permutation, &a->scantable, ff_asv_scantab);
  240. avctx->pix_fmt = AV_PIX_FMT_YUV420P;
  241. a->inv_qscale = avctx->extradata[0];
  242. if (a->inv_qscale == 0) {
  243. av_log(avctx, AV_LOG_ERROR, "illegal qscale 0\n");
  244. if (avctx->codec_id == AV_CODEC_ID_ASV1)
  245. a->inv_qscale = 6;
  246. else
  247. a->inv_qscale = 10;
  248. }
  249. for (i = 0; i < 64; i++) {
  250. int index = ff_asv_scantab[i];
  251. a->intra_matrix[i] = 64 * scale * ff_mpeg1_default_intra_matrix[index] / a->inv_qscale;
  252. }
  253. p->qstride = a->mb_width;
  254. p->qscale_table = av_malloc(p->qstride * a->mb_height);
  255. p->quality = (32 * scale + a->inv_qscale / 2) / a->inv_qscale;
  256. memset(p->qscale_table, p->quality, p->qstride * a->mb_height);
  257. return 0;
  258. }
  259. static av_cold int decode_end(AVCodecContext *avctx)
  260. {
  261. ASV1Context * const a = avctx->priv_data;
  262. av_freep(&a->bitstream_buffer);
  263. av_freep(&a->picture.qscale_table);
  264. a->bitstream_buffer_size = 0;
  265. if (a->picture.data[0])
  266. avctx->release_buffer(avctx, &a->picture);
  267. return 0;
  268. }
  269. AVCodec ff_asv1_decoder = {
  270. .name = "asv1",
  271. .type = AVMEDIA_TYPE_VIDEO,
  272. .id = AV_CODEC_ID_ASV1,
  273. .priv_data_size = sizeof(ASV1Context),
  274. .init = decode_init,
  275. .close = decode_end,
  276. .decode = decode_frame,
  277. .capabilities = CODEC_CAP_DR1,
  278. .long_name = NULL_IF_CONFIG_SMALL("ASUS V1"),
  279. };
  280. AVCodec ff_asv2_decoder = {
  281. .name = "asv2",
  282. .type = AVMEDIA_TYPE_VIDEO,
  283. .id = AV_CODEC_ID_ASV2,
  284. .priv_data_size = sizeof(ASV1Context),
  285. .init = decode_init,
  286. .close = decode_end,
  287. .decode = decode_frame,
  288. .capabilities = CODEC_CAP_DR1,
  289. .long_name = NULL_IF_CONFIG_SMALL("ASUS V2"),
  290. };