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