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