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