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.

328 lines
9.9KB

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