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.

334 lines
10.0KB

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