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