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.

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