]> git.sesse.net Git - ffmpeg/blob - libavcodec/vc1.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavcodec / vc1.c
1 /*
2  * VC-1 and WMV3 decoder common code
3  * Copyright (c) 2006-2007 Konstantin Shishkov
4  * Partly based on vc9.c (c) 2005 Anonymous, Alex Beregszaszi, Michael Niedermayer
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * VC-1 and WMV3 decoder common code
26  *
27  */
28 #include "internal.h"
29 #include "dsputil.h"
30 #include "avcodec.h"
31 #include "mpegvideo.h"
32 #include "vc1.h"
33 #include "vc1data.h"
34 #include "msmpeg4data.h"
35 #include "unary.h"
36 #include "simple_idct.h"
37
38 #undef NDEBUG
39 #include <assert.h>
40
41 /***********************************************************************/
42 /**
43  * @name VC-1 Bitplane decoding
44  * @see 8.7, p56
45  * @{
46  */
47
48 /**
49  * Imode types
50  * @{
51  */
52 enum Imode {
53     IMODE_RAW,
54     IMODE_NORM2,
55     IMODE_DIFF2,
56     IMODE_NORM6,
57     IMODE_DIFF6,
58     IMODE_ROWSKIP,
59     IMODE_COLSKIP
60 };
61 /** @} */ //imode defines
62
63 /** Decode rows by checking if they are skipped
64  * @param plane Buffer to store decoded bits
65  * @param[in] width Width of this buffer
66  * @param[in] height Height of this buffer
67  * @param[in] stride of this buffer
68  */
69 static void decode_rowskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
70     int x, y;
71
72     for (y=0; y<height; y++){
73         if (!get_bits1(gb)) //rowskip
74             memset(plane, 0, width);
75         else
76             for (x=0; x<width; x++)
77                 plane[x] = get_bits1(gb);
78         plane += stride;
79     }
80 }
81
82 /** Decode columns by checking if they are skipped
83  * @param plane Buffer to store decoded bits
84  * @param[in] width Width of this buffer
85  * @param[in] height Height of this buffer
86  * @param[in] stride of this buffer
87  * @todo FIXME: Optimize
88  */
89 static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
90     int x, y;
91
92     for (x=0; x<width; x++){
93         if (!get_bits1(gb)) //colskip
94             for (y=0; y<height; y++)
95                 plane[y*stride] = 0;
96         else
97             for (y=0; y<height; y++)
98                 plane[y*stride] = get_bits1(gb);
99         plane ++;
100     }
101 }
102
103 /** Decode a bitplane's bits
104  * @param data bitplane where to store the decode bits
105  * @param[out] raw_flag pointer to the flag indicating that this bitplane is not coded explicitly
106  * @param v VC-1 context for bit reading and logging
107  * @return Status
108  * @todo FIXME: Optimize
109  */
110 static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v)
111 {
112     GetBitContext *gb = &v->s.gb;
113
114     int imode, x, y, code, offset;
115     uint8_t invert, *planep = data;
116     int width, height, stride;
117
118     width = v->s.mb_width;
119     height = v->s.mb_height;
120     stride = v->s.mb_stride;
121     invert = get_bits1(gb);
122     imode = get_vlc2(gb, ff_vc1_imode_vlc.table, VC1_IMODE_VLC_BITS, 1);
123
124     *raw_flag = 0;
125     switch (imode)
126     {
127     case IMODE_RAW:
128         //Data is actually read in the MB layer (same for all tests == "raw")
129         *raw_flag = 1; //invert ignored
130         return invert;
131     case IMODE_DIFF2:
132     case IMODE_NORM2:
133         if ((height * width) & 1)
134         {
135             *planep++ = get_bits1(gb);
136             offset = 1;
137         }
138         else offset = 0;
139         // decode bitplane as one long line
140         for (y = offset; y < height * width; y += 2) {
141             code = get_vlc2(gb, ff_vc1_norm2_vlc.table, VC1_NORM2_VLC_BITS, 1);
142             *planep++ = code & 1;
143             offset++;
144             if(offset == width) {
145                 offset = 0;
146                 planep += stride - width;
147             }
148             *planep++ = code >> 1;
149             offset++;
150             if(offset == width) {
151                 offset = 0;
152                 planep += stride - width;
153             }
154         }
155         break;
156     case IMODE_DIFF6:
157     case IMODE_NORM6:
158         if(!(height % 3) && (width % 3)) { // use 2x3 decoding
159             for(y = 0; y < height; y+= 3) {
160                 for(x = width & 1; x < width; x += 2) {
161                     code = get_vlc2(gb, ff_vc1_norm6_vlc.table, VC1_NORM6_VLC_BITS, 2);
162                     if(code < 0){
163                         av_log(v->s.avctx, AV_LOG_DEBUG, "invalid NORM-6 VLC\n");
164                         return -1;
165                     }
166                     planep[x + 0] = (code >> 0) & 1;
167                     planep[x + 1] = (code >> 1) & 1;
168                     planep[x + 0 + stride] = (code >> 2) & 1;
169                     planep[x + 1 + stride] = (code >> 3) & 1;
170                     planep[x + 0 + stride * 2] = (code >> 4) & 1;
171                     planep[x + 1 + stride * 2] = (code >> 5) & 1;
172                 }
173                 planep += stride * 3;
174             }
175             if(width & 1) decode_colskip(data, 1, height, stride, &v->s.gb);
176         } else { // 3x2
177             planep += (height & 1) * stride;
178             for(y = height & 1; y < height; y += 2) {
179                 for(x = width % 3; x < width; x += 3) {
180                     code = get_vlc2(gb, ff_vc1_norm6_vlc.table, VC1_NORM6_VLC_BITS, 2);
181                     if(code < 0){
182                         av_log(v->s.avctx, AV_LOG_DEBUG, "invalid NORM-6 VLC\n");
183                         return -1;
184                     }
185                     planep[x + 0] = (code >> 0) & 1;
186                     planep[x + 1] = (code >> 1) & 1;
187                     planep[x + 2] = (code >> 2) & 1;
188                     planep[x + 0 + stride] = (code >> 3) & 1;
189                     planep[x + 1 + stride] = (code >> 4) & 1;
190                     planep[x + 2 + stride] = (code >> 5) & 1;
191                 }
192                 planep += stride * 2;
193             }
194             x = width % 3;
195             if(x) decode_colskip(data  ,             x, height    , stride, &v->s.gb);
196             if(height & 1) decode_rowskip(data+x, width - x, 1, stride, &v->s.gb);
197         }
198         break;
199     case IMODE_ROWSKIP:
200         decode_rowskip(data, width, height, stride, &v->s.gb);
201         break;
202     case IMODE_COLSKIP:
203         decode_colskip(data, width, height, stride, &v->s.gb);
204         break;
205     default: break;
206     }
207
208     /* Applying diff operator */
209     if (imode == IMODE_DIFF2 || imode == IMODE_DIFF6)
210     {
211         planep = data;
212         planep[0] ^= invert;
213         for (x=1; x<width; x++)
214             planep[x] ^= planep[x-1];
215         for (y=1; y<height; y++)
216         {
217             planep += stride;
218             planep[0] ^= planep[-stride];
219             for (x=1; x<width; x++)
220             {
221                 if (planep[x-1] != planep[x-stride]) planep[x] ^= invert;
222                 else                                 planep[x] ^= planep[x-1];
223             }
224         }
225     }
226     else if (invert)
227     {
228         planep = data;
229         for (x=0; x<stride*height; x++) planep[x] = !planep[x]; //FIXME stride
230     }
231     return (imode<<1) + invert;
232 }
233
234 /** @} */ //Bitplane group
235
236 /***********************************************************************/
237 /** VOP Dquant decoding
238  * @param v VC-1 Context
239  */
240 static int vop_dquant_decoding(VC1Context *v)
241 {
242     GetBitContext *gb = &v->s.gb;
243     int pqdiff;
244
245     //variable size
246     if (v->dquant == 2)
247     {
248         pqdiff = get_bits(gb, 3);
249         if (pqdiff == 7) v->altpq = get_bits(gb, 5);
250         else v->altpq = v->pq + pqdiff + 1;
251     }
252     else
253     {
254         v->dquantfrm = get_bits1(gb);
255         if ( v->dquantfrm )
256         {
257             v->dqprofile = get_bits(gb, 2);
258             switch (v->dqprofile)
259             {
260             case DQPROFILE_SINGLE_EDGE:
261             case DQPROFILE_DOUBLE_EDGES:
262                 v->dqsbedge = get_bits(gb, 2);
263                 break;
264             case DQPROFILE_ALL_MBS:
265                 v->dqbilevel = get_bits1(gb);
266                 if(!v->dqbilevel)
267                     v->halfpq = 0;
268             default: break; //Forbidden ?
269             }
270             if (v->dqbilevel || v->dqprofile != DQPROFILE_ALL_MBS)
271             {
272                 pqdiff = get_bits(gb, 3);
273                 if (pqdiff == 7) v->altpq = get_bits(gb, 5);
274                 else v->altpq = v->pq + pqdiff + 1;
275             }
276         }
277     }
278     return 0;
279 }
280
281 static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb);
282
283 /**
284  * Decode Simple/Main Profiles sequence header
285  * @see Figure 7-8, p16-17
286  * @param avctx Codec context
287  * @param gb GetBit context initialized from Codec context extra_data
288  * @return Status
289  */
290 int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb)
291 {
292     av_log(avctx, AV_LOG_DEBUG, "Header: %0X\n", show_bits(gb, 32));
293     v->profile = get_bits(gb, 2);
294     if (v->profile == PROFILE_COMPLEX)
295     {
296         av_log(avctx, AV_LOG_WARNING, "WMV3 Complex Profile is not fully supported\n");
297     }
298
299     if (v->profile == PROFILE_ADVANCED)
300     {
301         v->zz_8x4 = ff_vc1_adv_progressive_8x4_zz;
302         v->zz_4x8 = ff_vc1_adv_progressive_4x8_zz;
303         return decode_sequence_header_adv(v, gb);
304     }
305     else
306     {
307         v->zz_8x4 = wmv2_scantableA;
308         v->zz_4x8 = wmv2_scantableB;
309         v->res_y411   = get_bits1(gb);
310         v->res_sprite = get_bits1(gb);
311         if (v->res_y411)
312         {
313             av_log(avctx, AV_LOG_ERROR,
314                    "Old interlaced mode is not supported\n");
315             return -1;
316         }
317     }
318
319     // (fps-2)/4 (->30)
320     v->frmrtq_postproc = get_bits(gb, 3); //common
321     // (bitrate-32kbps)/64kbps
322     v->bitrtq_postproc = get_bits(gb, 5); //common
323     v->s.loop_filter = get_bits1(gb); //common
324     if(v->s.loop_filter == 1 && v->profile == PROFILE_SIMPLE)
325     {
326         av_log(avctx, AV_LOG_ERROR,
327                "LOOPFILTER shall not be enabled in Simple Profile\n");
328     }
329     if(v->s.avctx->skip_loop_filter >= AVDISCARD_ALL)
330         v->s.loop_filter = 0;
331
332     v->res_x8 = get_bits1(gb); //reserved
333     v->multires = get_bits1(gb);
334     v->res_fasttx = get_bits1(gb);
335     if (!v->res_fasttx)
336     {
337         v->vc1dsp.vc1_inv_trans_8x8 = ff_simple_idct_8;
338         v->vc1dsp.vc1_inv_trans_8x4 = ff_simple_idct84_add;
339         v->vc1dsp.vc1_inv_trans_4x8 = ff_simple_idct48_add;
340         v->vc1dsp.vc1_inv_trans_4x4 = ff_simple_idct44_add;
341         v->vc1dsp.vc1_inv_trans_8x8_dc = ff_simple_idct_add_8;
342         v->vc1dsp.vc1_inv_trans_8x4_dc = ff_simple_idct84_add;
343         v->vc1dsp.vc1_inv_trans_4x8_dc = ff_simple_idct48_add;
344         v->vc1dsp.vc1_inv_trans_4x4_dc = ff_simple_idct44_add;
345     }
346
347     v->fastuvmc =  get_bits1(gb); //common
348     if (!v->profile && !v->fastuvmc)
349     {
350         av_log(avctx, AV_LOG_ERROR,
351                "FASTUVMC unavailable in Simple Profile\n");
352         return -1;
353     }
354     v->extended_mv =  get_bits1(gb); //common
355     if (!v->profile && v->extended_mv)
356     {
357         av_log(avctx, AV_LOG_ERROR,
358                "Extended MVs unavailable in Simple Profile\n");
359         return -1;
360     }
361     v->dquant =  get_bits(gb, 2); //common
362     v->vstransform =  get_bits1(gb); //common
363
364     v->res_transtab = get_bits1(gb);
365     if (v->res_transtab)
366     {
367         av_log(avctx, AV_LOG_ERROR,
368                "1 for reserved RES_TRANSTAB is forbidden\n");
369         return -1;
370     }
371
372     v->overlap = get_bits1(gb); //common
373
374     v->s.resync_marker = get_bits1(gb);
375     v->rangered = get_bits1(gb);
376     if (v->rangered && v->profile == PROFILE_SIMPLE)
377     {
378         av_log(avctx, AV_LOG_INFO,
379                "RANGERED should be set to 0 in Simple Profile\n");
380     }
381
382     v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common
383     v->quantizer_mode = get_bits(gb, 2); //common
384
385     v->finterpflag = get_bits1(gb); //common
386
387     if (v->res_sprite) {
388         int w = get_bits(gb, 11);
389         int h = get_bits(gb, 11);
390         avcodec_set_dimensions(v->s.avctx, w, h);
391         skip_bits(gb, 5); //frame rate
392         v->res_x8 = get_bits1(gb);
393         if (get_bits1(gb)) { // something to do with DC VLC selection
394             av_log(avctx, AV_LOG_ERROR, "Unsupported sprite feature\n");
395             return -1;
396         }
397         skip_bits(gb, 3); //slice code
398         v->res_rtm_flag = 0;
399     } else {
400         v->res_rtm_flag = get_bits1(gb); //reserved
401     }
402     if (!v->res_rtm_flag)
403     {
404 //            av_log(avctx, AV_LOG_ERROR,
405 //                   "0 for reserved RES_RTM_FLAG is forbidden\n");
406         av_log(avctx, AV_LOG_ERROR,
407                "Old WMV3 version detected, some frames may be decoded incorrectly\n");
408         //return -1;
409     }
410     //TODO: figure out what they mean (always 0x402F)
411     if(!v->res_fasttx) skip_bits(gb, 16);
412     av_log(avctx, AV_LOG_DEBUG,
413                "Profile %i:\nfrmrtq_postproc=%i, bitrtq_postproc=%i\n"
414                "LoopFilter=%i, MultiRes=%i, FastUVMC=%i, Extended MV=%i\n"
415                "Rangered=%i, VSTransform=%i, Overlap=%i, SyncMarker=%i\n"
416                "DQuant=%i, Quantizer mode=%i, Max B frames=%i\n",
417                v->profile, v->frmrtq_postproc, v->bitrtq_postproc,
418                v->s.loop_filter, v->multires, v->fastuvmc, v->extended_mv,
419                v->rangered, v->vstransform, v->overlap, v->s.resync_marker,
420                v->dquant, v->quantizer_mode, avctx->max_b_frames
421                );
422     return 0;
423 }
424
425 static int decode_sequence_header_adv(VC1Context *v, GetBitContext *gb)
426 {
427     int w, h;
428     v->res_rtm_flag = 1;
429     v->level = get_bits(gb, 3);
430     if(v->level >= 5)
431     {
432         av_log(v->s.avctx, AV_LOG_ERROR, "Reserved LEVEL %i\n",v->level);
433     }
434     v->chromaformat = get_bits(gb, 2);
435     if (v->chromaformat != 1)
436     {
437         av_log(v->s.avctx, AV_LOG_ERROR,
438                "Only 4:2:0 chroma format supported\n");
439         return -1;
440     }
441
442     // (fps-2)/4 (->30)
443     v->frmrtq_postproc = get_bits(gb, 3); //common
444     // (bitrate-32kbps)/64kbps
445     v->bitrtq_postproc = get_bits(gb, 5); //common
446     v->postprocflag = get_bits1(gb); //common
447
448     w = (get_bits(gb, 12) + 1) << 1;
449     h = (get_bits(gb, 12) + 1) << 1;
450     avcodec_set_dimensions(v->s.avctx, w, h);
451     v->broadcast = get_bits1(gb);
452     v->interlace = get_bits1(gb);
453     v->tfcntrflag = get_bits1(gb);
454     v->finterpflag = get_bits1(gb);
455     skip_bits1(gb); // reserved
456
457     av_log(v->s.avctx, AV_LOG_DEBUG,
458                "Advanced Profile level %i:\nfrmrtq_postproc=%i, bitrtq_postproc=%i\n"
459                "LoopFilter=%i, ChromaFormat=%i, Pulldown=%i, Interlace: %i\n"
460                "TFCTRflag=%i, FINTERPflag=%i\n",
461                v->level, v->frmrtq_postproc, v->bitrtq_postproc,
462                v->s.loop_filter, v->chromaformat, v->broadcast, v->interlace,
463                v->tfcntrflag, v->finterpflag
464                );
465
466     v->psf = get_bits1(gb);
467     if(v->psf) { //PsF, 6.1.13
468         av_log(v->s.avctx, AV_LOG_ERROR, "Progressive Segmented Frame mode: not supported (yet)\n");
469         return -1;
470     }
471     v->s.max_b_frames = v->s.avctx->max_b_frames = 7;
472     if(get_bits1(gb)) { //Display Info - decoding is not affected by it
473         int w, h, ar = 0;
474         av_log(v->s.avctx, AV_LOG_DEBUG, "Display extended info:\n");
475         w = get_bits(gb, 14) + 1;
476         h = get_bits(gb, 14) + 1;
477         av_log(v->s.avctx, AV_LOG_DEBUG, "Display dimensions: %ix%i\n", w, h);
478         if(get_bits1(gb))
479             ar = get_bits(gb, 4);
480         if(ar && ar < 14){
481             v->s.avctx->sample_aspect_ratio = ff_vc1_pixel_aspect[ar];
482         }else if(ar == 15){
483             w = get_bits(gb, 8) + 1;
484             h = get_bits(gb, 8) + 1;
485             v->s.avctx->sample_aspect_ratio = (AVRational){w, h};
486         } else {
487             av_reduce(&v->s.avctx->sample_aspect_ratio.num,
488                       &v->s.avctx->sample_aspect_ratio.den,
489                       v->s.avctx->height * w,
490                       v->s.avctx->width * h,
491                       1<<30);
492         }
493         av_log(v->s.avctx, AV_LOG_DEBUG, "Aspect: %i:%i\n", v->s.avctx->sample_aspect_ratio.num, v->s.avctx->sample_aspect_ratio.den);
494
495         if(get_bits1(gb)){ //framerate stuff
496             if(get_bits1(gb)) {
497                 v->s.avctx->time_base.num = 32;
498                 v->s.avctx->time_base.den = get_bits(gb, 16) + 1;
499             } else {
500                 int nr, dr;
501                 nr = get_bits(gb, 8);
502                 dr = get_bits(gb, 4);
503                 if(nr && nr < 8 && dr && dr < 3){
504                     v->s.avctx->time_base.num = ff_vc1_fps_dr[dr - 1];
505                     v->s.avctx->time_base.den = ff_vc1_fps_nr[nr - 1] * 1000;
506                 }
507             }
508             if(v->broadcast) { // Pulldown may be present
509                 v->s.avctx->time_base.den *= 2;
510                 v->s.avctx->ticks_per_frame = 2;
511             }
512         }
513
514         if(get_bits1(gb)){
515             v->color_prim = get_bits(gb, 8);
516             v->transfer_char = get_bits(gb, 8);
517             v->matrix_coef = get_bits(gb, 8);
518         }
519     }
520
521     v->hrd_param_flag = get_bits1(gb);
522     if(v->hrd_param_flag) {
523         int i;
524         v->hrd_num_leaky_buckets = get_bits(gb, 5);
525         skip_bits(gb, 4); //bitrate exponent
526         skip_bits(gb, 4); //buffer size exponent
527         for(i = 0; i < v->hrd_num_leaky_buckets; i++) {
528             skip_bits(gb, 16); //hrd_rate[n]
529             skip_bits(gb, 16); //hrd_buffer[n]
530         }
531     }
532     return 0;
533 }
534
535 int vc1_decode_entry_point(AVCodecContext *avctx, VC1Context *v, GetBitContext *gb)
536 {
537     int i;
538
539     av_log(avctx, AV_LOG_DEBUG, "Entry point: %08X\n", show_bits_long(gb, 32));
540     v->broken_link = get_bits1(gb);
541     v->closed_entry = get_bits1(gb);
542     v->panscanflag = get_bits1(gb);
543     v->refdist_flag = get_bits1(gb);
544     v->s.loop_filter = get_bits1(gb);
545     v->fastuvmc = get_bits1(gb);
546     v->extended_mv = get_bits1(gb);
547     v->dquant = get_bits(gb, 2);
548     v->vstransform = get_bits1(gb);
549     v->overlap = get_bits1(gb);
550     v->quantizer_mode = get_bits(gb, 2);
551
552     if(v->hrd_param_flag){
553         for(i = 0; i < v->hrd_num_leaky_buckets; i++) {
554             skip_bits(gb, 8); //hrd_full[n]
555         }
556     }
557
558     if(get_bits1(gb)){
559         int w = (get_bits(gb, 12)+1)<<1;
560         int h = (get_bits(gb, 12)+1)<<1;
561         avcodec_set_dimensions(avctx, w, h);
562     }
563     if(v->extended_mv)
564         v->extended_dmv = get_bits1(gb);
565     if((v->range_mapy_flag = get_bits1(gb))) {
566         av_log(avctx, AV_LOG_ERROR, "Luma scaling is not supported, expect wrong picture\n");
567         v->range_mapy = get_bits(gb, 3);
568     }
569     if((v->range_mapuv_flag = get_bits1(gb))) {
570         av_log(avctx, AV_LOG_ERROR, "Chroma scaling is not supported, expect wrong picture\n");
571         v->range_mapuv = get_bits(gb, 3);
572     }
573
574     av_log(avctx, AV_LOG_DEBUG, "Entry point info:\n"
575         "BrokenLink=%i, ClosedEntry=%i, PanscanFlag=%i\n"
576         "RefDist=%i, Postproc=%i, FastUVMC=%i, ExtMV=%i\n"
577         "DQuant=%i, VSTransform=%i, Overlap=%i, Qmode=%i\n",
578         v->broken_link, v->closed_entry, v->panscanflag, v->refdist_flag, v->s.loop_filter,
579         v->fastuvmc, v->extended_mv, v->dquant, v->vstransform, v->overlap, v->quantizer_mode);
580
581     return 0;
582 }
583
584 int vc1_parse_frame_header(VC1Context *v, GetBitContext* gb)
585 {
586     int pqindex, lowquant, status;
587
588     if(v->finterpflag) v->interpfrm = get_bits1(gb);
589     skip_bits(gb, 2); //framecnt unused
590     v->rangeredfrm = 0;
591     if (v->rangered) v->rangeredfrm = get_bits1(gb);
592     v->s.pict_type = get_bits1(gb);
593     if (v->s.avctx->max_b_frames) {
594         if (!v->s.pict_type) {
595             if (get_bits1(gb)) v->s.pict_type = AV_PICTURE_TYPE_I;
596             else v->s.pict_type = AV_PICTURE_TYPE_B;
597         } else v->s.pict_type = AV_PICTURE_TYPE_P;
598     } else v->s.pict_type = v->s.pict_type ? AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;
599
600     v->bi_type = 0;
601     if(v->s.pict_type == AV_PICTURE_TYPE_B) {
602         v->bfraction_lut_index = get_vlc2(gb, ff_vc1_bfraction_vlc.table, VC1_BFRACTION_VLC_BITS, 1);
603         v->bfraction = ff_vc1_bfraction_lut[v->bfraction_lut_index];
604         if(v->bfraction == 0) {
605             v->s.pict_type = AV_PICTURE_TYPE_BI;
606         }
607     }
608     if(v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_BI)
609         skip_bits(gb, 7); // skip buffer fullness
610
611     if(v->parse_only)
612         return 0;
613
614     /* calculate RND */
615     if(v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_BI)
616         v->rnd = 1;
617     if(v->s.pict_type == AV_PICTURE_TYPE_P)
618         v->rnd ^= 1;
619
620     /* Quantizer stuff */
621     pqindex = get_bits(gb, 5);
622     if(!pqindex) return -1;
623     if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
624         v->pq = ff_vc1_pquant_table[0][pqindex];
625     else
626         v->pq = ff_vc1_pquant_table[1][pqindex];
627
628     v->pquantizer = 1;
629     if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
630         v->pquantizer = pqindex < 9;
631     if (v->quantizer_mode == QUANT_NON_UNIFORM)
632         v->pquantizer = 0;
633     v->pqindex = pqindex;
634     if (pqindex < 9) v->halfpq = get_bits1(gb);
635     else v->halfpq = 0;
636     if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
637         v->pquantizer = get_bits1(gb);
638     v->dquantfrm = 0;
639     if (v->extended_mv == 1) v->mvrange = get_unary(gb, 0, 3);
640     v->k_x = v->mvrange + 9 + (v->mvrange >> 1); //k_x can be 9 10 12 13
641     v->k_y = v->mvrange + 8; //k_y can be 8 9 10 11
642     v->range_x = 1 << (v->k_x - 1);
643     v->range_y = 1 << (v->k_y - 1);
644     if (v->multires && v->s.pict_type != AV_PICTURE_TYPE_B) v->respic = get_bits(gb, 2);
645
646     if(v->res_x8 && (v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_BI)){
647         v->x8_type = get_bits1(gb);
648     }else v->x8_type = 0;
649 //av_log(v->s.avctx, AV_LOG_INFO, "%c Frame: QP=[%i]%i (+%i/2) %i\n",
650 //        (v->s.pict_type == AV_PICTURE_TYPE_P) ? 'P' : ((v->s.pict_type == AV_PICTURE_TYPE_I) ? 'I' : 'B'), pqindex, v->pq, v->halfpq, v->rangeredfrm);
651
652     if(v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_P) v->use_ic = 0;
653
654     switch(v->s.pict_type) {
655     case AV_PICTURE_TYPE_P:
656         if (v->pq < 5) v->tt_index = 0;
657         else if(v->pq < 13) v->tt_index = 1;
658         else v->tt_index = 2;
659
660         lowquant = (v->pq > 12) ? 0 : 1;
661         v->mv_mode = ff_vc1_mv_pmode_table[lowquant][get_unary(gb, 1, 4)];
662         if (v->mv_mode == MV_PMODE_INTENSITY_COMP)
663         {
664             int scale, shift, i;
665             v->mv_mode2 = ff_vc1_mv_pmode_table2[lowquant][get_unary(gb, 1, 3)];
666             v->lumscale = get_bits(gb, 6);
667             v->lumshift = get_bits(gb, 6);
668             v->use_ic = 1;
669             /* fill lookup tables for intensity compensation */
670             if(!v->lumscale) {
671                 scale = -64;
672                 shift = (255 - v->lumshift * 2) << 6;
673                 if(v->lumshift > 31)
674                     shift += 128 << 6;
675             } else {
676                 scale = v->lumscale + 32;
677                 if(v->lumshift > 31)
678                     shift = (v->lumshift - 64) << 6;
679                 else
680                     shift = v->lumshift << 6;
681             }
682             for(i = 0; i < 256; i++) {
683                 v->luty[i] = av_clip_uint8((scale * i + shift + 32) >> 6);
684                 v->lutuv[i] = av_clip_uint8((scale * (i - 128) + 128*64 + 32) >> 6);
685             }
686         }
687         if(v->mv_mode == MV_PMODE_1MV_HPEL || v->mv_mode == MV_PMODE_1MV_HPEL_BILIN)
688             v->s.quarter_sample = 0;
689         else if(v->mv_mode == MV_PMODE_INTENSITY_COMP) {
690             if(v->mv_mode2 == MV_PMODE_1MV_HPEL || v->mv_mode2 == MV_PMODE_1MV_HPEL_BILIN)
691                 v->s.quarter_sample = 0;
692             else
693                 v->s.quarter_sample = 1;
694         } else
695             v->s.quarter_sample = 1;
696         v->s.mspel = !(v->mv_mode == MV_PMODE_1MV_HPEL_BILIN || (v->mv_mode == MV_PMODE_INTENSITY_COMP && v->mv_mode2 == MV_PMODE_1MV_HPEL_BILIN));
697
698         if ((v->mv_mode == MV_PMODE_INTENSITY_COMP &&
699                  v->mv_mode2 == MV_PMODE_MIXED_MV)
700                 || v->mv_mode == MV_PMODE_MIXED_MV)
701         {
702             status = bitplane_decoding(v->mv_type_mb_plane, &v->mv_type_is_raw, v);
703             if (status < 0) return -1;
704             av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
705                    "Imode: %i, Invert: %i\n", status>>1, status&1);
706         } else {
707             v->mv_type_is_raw = 0;
708             memset(v->mv_type_mb_plane, 0, v->s.mb_stride * v->s.mb_height);
709         }
710         status = bitplane_decoding(v->s.mbskip_table, &v->skip_is_raw, v);
711         if (status < 0) return -1;
712         av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
713                "Imode: %i, Invert: %i\n", status>>1, status&1);
714
715         /* Hopefully this is correct for P frames */
716         v->s.mv_table_index = get_bits(gb, 2); //but using ff_vc1_ tables
717         v->cbpcy_vlc = &ff_vc1_cbpcy_p_vlc[get_bits(gb, 2)];
718
719         if (v->dquant)
720         {
721             av_log(v->s.avctx, AV_LOG_DEBUG, "VOP DQuant info\n");
722             vop_dquant_decoding(v);
723         }
724
725         v->ttfrm = 0; //FIXME Is that so ?
726         if (v->vstransform)
727         {
728             v->ttmbf = get_bits1(gb);
729             if (v->ttmbf)
730             {
731                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
732             }
733         } else {
734             v->ttmbf = 1;
735             v->ttfrm = TT_8X8;
736         }
737         break;
738     case AV_PICTURE_TYPE_B:
739         if (v->pq < 5) v->tt_index = 0;
740         else if(v->pq < 13) v->tt_index = 1;
741         else v->tt_index = 2;
742
743         v->mv_mode = get_bits1(gb) ? MV_PMODE_1MV : MV_PMODE_1MV_HPEL_BILIN;
744         v->s.quarter_sample = (v->mv_mode == MV_PMODE_1MV);
745         v->s.mspel = v->s.quarter_sample;
746
747         status = bitplane_decoding(v->direct_mb_plane, &v->dmb_is_raw, v);
748         if (status < 0) return -1;
749         av_log(v->s.avctx, AV_LOG_DEBUG, "MB Direct Type plane encoding: "
750                "Imode: %i, Invert: %i\n", status>>1, status&1);
751         status = bitplane_decoding(v->s.mbskip_table, &v->skip_is_raw, v);
752         if (status < 0) return -1;
753         av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
754                "Imode: %i, Invert: %i\n", status>>1, status&1);
755
756         v->s.mv_table_index = get_bits(gb, 2);
757         v->cbpcy_vlc = &ff_vc1_cbpcy_p_vlc[get_bits(gb, 2)];
758
759         if (v->dquant)
760         {
761             av_log(v->s.avctx, AV_LOG_DEBUG, "VOP DQuant info\n");
762             vop_dquant_decoding(v);
763         }
764
765         v->ttfrm = 0;
766         if (v->vstransform)
767         {
768             v->ttmbf = get_bits1(gb);
769             if (v->ttmbf)
770             {
771                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
772             }
773         } else {
774             v->ttmbf = 1;
775             v->ttfrm = TT_8X8;
776         }
777         break;
778     }
779
780     if(!v->x8_type)
781     {
782         /* AC Syntax */
783         v->c_ac_table_index = decode012(gb);
784         if (v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_BI)
785         {
786             v->y_ac_table_index = decode012(gb);
787         }
788         /* DC Syntax */
789         v->s.dc_table_index = get_bits1(gb);
790     }
791
792     if(v->s.pict_type == AV_PICTURE_TYPE_BI) {
793         v->s.pict_type = AV_PICTURE_TYPE_B;
794         v->bi_type = 1;
795     }
796     return 0;
797 }
798
799 int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
800 {
801     int pqindex, lowquant;
802     int status;
803
804     v->p_frame_skipped = 0;
805
806     if(v->interlace){
807         v->fcm = decode012(gb);
808         if(v->fcm){
809             if(!v->warn_interlaced++)
810                 av_log(v->s.avctx, AV_LOG_ERROR, "Interlaced frames/fields support is not implemented\n");
811             return -1;
812         }
813     }
814     switch(get_unary(gb, 0, 4)) {
815     case 0:
816         v->s.pict_type = AV_PICTURE_TYPE_P;
817         break;
818     case 1:
819         v->s.pict_type = AV_PICTURE_TYPE_B;
820         break;
821     case 2:
822         v->s.pict_type = AV_PICTURE_TYPE_I;
823         break;
824     case 3:
825         v->s.pict_type = AV_PICTURE_TYPE_BI;
826         break;
827     case 4:
828         v->s.pict_type = AV_PICTURE_TYPE_P; // skipped pic
829         v->p_frame_skipped = 1;
830         break;
831     }
832     if(v->tfcntrflag)
833         skip_bits(gb, 8);
834     if(v->broadcast) {
835         if(!v->interlace || v->psf) {
836             v->rptfrm = get_bits(gb, 2);
837         } else {
838             v->tff = get_bits1(gb);
839             v->rff = get_bits1(gb);
840         }
841     }
842     if(v->panscanflag) {
843         av_log_missing_feature(v->s.avctx, "Pan-scan", 0);
844         //...
845     }
846     if(v->p_frame_skipped) {
847         return 0;
848     }
849     v->rnd = get_bits1(gb);
850     if(v->interlace)
851         v->uvsamp = get_bits1(gb);
852     if(v->finterpflag) v->interpfrm = get_bits1(gb);
853     if(v->s.pict_type == AV_PICTURE_TYPE_B) {
854         v->bfraction_lut_index = get_vlc2(gb, ff_vc1_bfraction_vlc.table, VC1_BFRACTION_VLC_BITS, 1);
855         v->bfraction = ff_vc1_bfraction_lut[v->bfraction_lut_index];
856         if(v->bfraction == 0) {
857             v->s.pict_type = AV_PICTURE_TYPE_BI; /* XXX: should not happen here */
858         }
859     }
860     pqindex = get_bits(gb, 5);
861     if(!pqindex) return -1;
862     v->pqindex = pqindex;
863     if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
864         v->pq = ff_vc1_pquant_table[0][pqindex];
865     else
866         v->pq = ff_vc1_pquant_table[1][pqindex];
867
868     v->pquantizer = 1;
869     if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
870         v->pquantizer = pqindex < 9;
871     if (v->quantizer_mode == QUANT_NON_UNIFORM)
872         v->pquantizer = 0;
873     v->pqindex = pqindex;
874     if (pqindex < 9) v->halfpq = get_bits1(gb);
875     else v->halfpq = 0;
876     if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
877         v->pquantizer = get_bits1(gb);
878     if(v->postprocflag)
879         v->postproc = get_bits(gb, 2);
880
881     if(v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_P) v->use_ic = 0;
882
883     if(v->parse_only)
884         return 0;
885
886     switch(v->s.pict_type) {
887     case AV_PICTURE_TYPE_I:
888     case AV_PICTURE_TYPE_BI:
889         status = bitplane_decoding(v->acpred_plane, &v->acpred_is_raw, v);
890         if (status < 0) return -1;
891         av_log(v->s.avctx, AV_LOG_DEBUG, "ACPRED plane encoding: "
892                 "Imode: %i, Invert: %i\n", status>>1, status&1);
893         v->condover = CONDOVER_NONE;
894         if(v->overlap && v->pq <= 8) {
895             v->condover = decode012(gb);
896             if(v->condover == CONDOVER_SELECT) {
897                 status = bitplane_decoding(v->over_flags_plane, &v->overflg_is_raw, v);
898                 if (status < 0) return -1;
899                 av_log(v->s.avctx, AV_LOG_DEBUG, "CONDOVER plane encoding: "
900                         "Imode: %i, Invert: %i\n", status>>1, status&1);
901             }
902         }
903         break;
904     case AV_PICTURE_TYPE_P:
905         if (v->extended_mv) v->mvrange = get_unary(gb, 0, 3);
906         else v->mvrange = 0;
907         v->k_x = v->mvrange + 9 + (v->mvrange >> 1); //k_x can be 9 10 12 13
908         v->k_y = v->mvrange + 8; //k_y can be 8 9 10 11
909         v->range_x = 1 << (v->k_x - 1);
910         v->range_y = 1 << (v->k_y - 1);
911
912         if (v->pq < 5) v->tt_index = 0;
913         else if(v->pq < 13) v->tt_index = 1;
914         else v->tt_index = 2;
915
916         lowquant = (v->pq > 12) ? 0 : 1;
917         v->mv_mode = ff_vc1_mv_pmode_table[lowquant][get_unary(gb, 1, 4)];
918         if (v->mv_mode == MV_PMODE_INTENSITY_COMP)
919         {
920             int scale, shift, i;
921             v->mv_mode2 = ff_vc1_mv_pmode_table2[lowquant][get_unary(gb, 1, 3)];
922             v->lumscale = get_bits(gb, 6);
923             v->lumshift = get_bits(gb, 6);
924             /* fill lookup tables for intensity compensation */
925             if(!v->lumscale) {
926                 scale = -64;
927                 shift = (255 - v->lumshift * 2) << 6;
928                 if(v->lumshift > 31)
929                     shift += 128 << 6;
930             } else {
931                 scale = v->lumscale + 32;
932                 if(v->lumshift > 31)
933                     shift = (v->lumshift - 64) << 6;
934                 else
935                     shift = v->lumshift << 6;
936             }
937             for(i = 0; i < 256; i++) {
938                 v->luty[i] = av_clip_uint8((scale * i + shift + 32) >> 6);
939                 v->lutuv[i] = av_clip_uint8((scale * (i - 128) + 128*64 + 32) >> 6);
940             }
941             v->use_ic = 1;
942         }
943         if(v->mv_mode == MV_PMODE_1MV_HPEL || v->mv_mode == MV_PMODE_1MV_HPEL_BILIN)
944             v->s.quarter_sample = 0;
945         else if(v->mv_mode == MV_PMODE_INTENSITY_COMP) {
946             if(v->mv_mode2 == MV_PMODE_1MV_HPEL || v->mv_mode2 == MV_PMODE_1MV_HPEL_BILIN)
947                 v->s.quarter_sample = 0;
948             else
949                 v->s.quarter_sample = 1;
950         } else
951             v->s.quarter_sample = 1;
952         v->s.mspel = !(v->mv_mode == MV_PMODE_1MV_HPEL_BILIN || (v->mv_mode == MV_PMODE_INTENSITY_COMP && v->mv_mode2 == MV_PMODE_1MV_HPEL_BILIN));
953
954         if ((v->mv_mode == MV_PMODE_INTENSITY_COMP &&
955                  v->mv_mode2 == MV_PMODE_MIXED_MV)
956                 || v->mv_mode == MV_PMODE_MIXED_MV)
957         {
958             status = bitplane_decoding(v->mv_type_mb_plane, &v->mv_type_is_raw, v);
959             if (status < 0) return -1;
960             av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
961                    "Imode: %i, Invert: %i\n", status>>1, status&1);
962         } else {
963             v->mv_type_is_raw = 0;
964             memset(v->mv_type_mb_plane, 0, v->s.mb_stride * v->s.mb_height);
965         }
966         status = bitplane_decoding(v->s.mbskip_table, &v->skip_is_raw, v);
967         if (status < 0) return -1;
968         av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
969                "Imode: %i, Invert: %i\n", status>>1, status&1);
970
971         /* Hopefully this is correct for P frames */
972         v->s.mv_table_index = get_bits(gb, 2); //but using ff_vc1_ tables
973         v->cbpcy_vlc = &ff_vc1_cbpcy_p_vlc[get_bits(gb, 2)];
974         if (v->dquant)
975         {
976             av_log(v->s.avctx, AV_LOG_DEBUG, "VOP DQuant info\n");
977             vop_dquant_decoding(v);
978         }
979
980         v->ttfrm = 0; //FIXME Is that so ?
981         if (v->vstransform)
982         {
983             v->ttmbf = get_bits1(gb);
984             if (v->ttmbf)
985             {
986                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
987             }
988         } else {
989             v->ttmbf = 1;
990             v->ttfrm = TT_8X8;
991         }
992         break;
993     case AV_PICTURE_TYPE_B:
994         if (v->extended_mv) v->mvrange = get_unary(gb, 0, 3);
995         else v->mvrange = 0;
996         v->k_x = v->mvrange + 9 + (v->mvrange >> 1); //k_x can be 9 10 12 13
997         v->k_y = v->mvrange + 8; //k_y can be 8 9 10 11
998         v->range_x = 1 << (v->k_x - 1);
999         v->range_y = 1 << (v->k_y - 1);
1000
1001         if (v->pq < 5) v->tt_index = 0;
1002         else if(v->pq < 13) v->tt_index = 1;
1003         else v->tt_index = 2;
1004
1005         v->mv_mode = get_bits1(gb) ? MV_PMODE_1MV : MV_PMODE_1MV_HPEL_BILIN;
1006         v->s.quarter_sample = (v->mv_mode == MV_PMODE_1MV);
1007         v->s.mspel = v->s.quarter_sample;
1008
1009         status = bitplane_decoding(v->direct_mb_plane, &v->dmb_is_raw, v);
1010         if (status < 0) return -1;
1011         av_log(v->s.avctx, AV_LOG_DEBUG, "MB Direct Type plane encoding: "
1012                "Imode: %i, Invert: %i\n", status>>1, status&1);
1013         status = bitplane_decoding(v->s.mbskip_table, &v->skip_is_raw, v);
1014         if (status < 0) return -1;
1015         av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
1016                "Imode: %i, Invert: %i\n", status>>1, status&1);
1017
1018         v->s.mv_table_index = get_bits(gb, 2);
1019         v->cbpcy_vlc = &ff_vc1_cbpcy_p_vlc[get_bits(gb, 2)];
1020
1021         if (v->dquant)
1022         {
1023             av_log(v->s.avctx, AV_LOG_DEBUG, "VOP DQuant info\n");
1024             vop_dquant_decoding(v);
1025         }
1026
1027         v->ttfrm = 0;
1028         if (v->vstransform)
1029         {
1030             v->ttmbf = get_bits1(gb);
1031             if (v->ttmbf)
1032             {
1033                 v->ttfrm = ff_vc1_ttfrm_to_tt[get_bits(gb, 2)];
1034             }
1035         } else {
1036             v->ttmbf = 1;
1037             v->ttfrm = TT_8X8;
1038         }
1039         break;
1040     }
1041
1042     /* AC Syntax */
1043     v->c_ac_table_index = decode012(gb);
1044     if (v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_BI)
1045     {
1046         v->y_ac_table_index = decode012(gb);
1047     }
1048     /* DC Syntax */
1049     v->s.dc_table_index = get_bits1(gb);
1050     if ((v->s.pict_type == AV_PICTURE_TYPE_I || v->s.pict_type == AV_PICTURE_TYPE_BI) && v->dquant) {
1051         av_log(v->s.avctx, AV_LOG_DEBUG, "VOP DQuant info\n");
1052         vop_dquant_decoding(v);
1053     }
1054
1055     v->bi_type = 0;
1056     if(v->s.pict_type == AV_PICTURE_TYPE_BI) {
1057         v->s.pict_type = AV_PICTURE_TYPE_B;
1058         v->bi_type = 1;
1059     }
1060     return 0;
1061 }