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.

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