vc9.c 70.4 KB
Newer Older
1 2 3 4
/*
 * VC-9 and WMV3 decoder
 * Copyright (c) 2005 Anonymous
 * Copyright (c) 2005 Alex Beregszaszi
A
Fixes:  
anonymous 已提交
5
 * Copyright (c) 2005 Michael Niedermayer
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

/**
 * @file vc9.c
 * VC-9 and WMV3 decoder
 *
 * TODO: Norm-6 bitplane imode, most AP stuff, optimize, all of MB layer :)
 * TODO: use MPV_ !!
 */
#include "common.h"
#include "dsputil.h"
#include "avcodec.h"
#include "mpegvideo.h"
#include "vc9data.h"
A
anonymous 已提交
35

36 37 38
#undef NDEBUG
#include <assert.h>

39 40
extern const uint32_t ff_table0_dc_lum[120][2], ff_table1_dc_lum[120][2];
extern const uint32_t ff_table0_dc_chroma[120][2], ff_table1_dc_chroma[120][2];
A
anonymous 已提交
41 42 43 44 45
extern VLC ff_msmp4_dc_luma_vlc[2], ff_msmp4_dc_chroma_vlc[2];
#define MB_INTRA_VLC_BITS 9
extern VLC ff_msmp4_mb_i_vlc;
#define DC_VLC_BITS 9
static const uint16_t table_mb_intra[64][2];
46 47 48 49 50 51 52 53 54 55 56

/* Some inhibiting stuff */
#define HAS_ADVANCED_PROFILE   1
#define TRACE                  1

#if TRACE
#  define INIT_VLC(vlc, nb_bits, nb_codes, bits, bits_wrap, bits_size, \
                   codes, codes_wrap, codes_size, use_static)          \
  if (init_vlc(vlc, nb_bits, nb_codes, bits, bits_wrap, bits_size,     \
               codes, codes_wrap, codes_size, use_static) < 0)         \
  {                                                                    \
A
anonymous 已提交
57
    av_log(v->s.avctx, AV_LOG_ERROR, "Error for " # vlc " (%i)\n", i);   \
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
    return -1;                                                         \
  }
#else
#  define INIT_VLC(vlc, nb_bits, nb_codes, bits, bits_wrap, bits_size, \
                   codes, codes_wrap, codes_size, use_static)          \
  init_vlc(vlc, nb_bits, nb_codes, bits, bits_wrap, bits_size,         \
           codes, codes_wrap, codes_size, use_static)
#endif

#define PROFILE_SIMPLE   0
#define PROFILE_MAIN     1
#define PROFILE_ADVANCED 3

#define QUANT_FRAME_IMPLICIT   0
#define QUANT_FRAME_EXPLICIT   1
#define QUANT_NON_UNIFORM      2
#define QUANT_UNIFORM          3

/* Where quant can be changed */
#define DQPROFILE_FOUR_EDGES   0
#define DQPROFILE_DOUBLE_EDGES 1
#define DQPROFILE_SINGLE_EDGE  2
#define DQPROFILE_ALL_MBS      3

/* Which edge is quantized with ALTPQUANT */
#define DQSINGLE_BEDGE_LEFT   0
#define DQSINGLE_BEDGE_TOP    1
#define DQSINGLE_BEDGE_RIGHT  2
#define DQSINGLE_BEDGE_BOTTOM 3

/* Which pair of edges is quantized with ALTPQUANT */
#define DQDOUBLE_BEDGE_TOPLEFT     0
#define DQDOUBLE_BEDGE_TOPRIGHT    1
#define DQDOUBLE_BEDGE_BOTTOMRIGHT 2
#define DQDOUBLE_BEDGE_BOTTOMLEFT  3

/* MV P modes */
#define MV_PMODE_1MV_HPEL_BILIN   0
#define MV_PMODE_1MV              1
#define MV_PMODE_1MV_HPEL         2
#define MV_PMODE_MIXED_MV         3
#define MV_PMODE_INTENSITY_COMP   4

A
Fixes:  
anonymous 已提交
101 102 103 104
#define BMV_TYPE_BACKWARD          0
#define BMV_TYPE_FORWARD           1
#define BMV_TYPE_INTERPOLATED      3

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
/* MV P mode - the 5th element is only used for mode 1 */
static const uint8_t mv_pmode_table[2][5] = {
  { MV_PMODE_1MV_HPEL_BILIN, MV_PMODE_1MV, MV_PMODE_1MV_HPEL, MV_PMODE_MIXED_MV, MV_PMODE_INTENSITY_COMP },
  { MV_PMODE_1MV, MV_PMODE_MIXED_MV, MV_PMODE_1MV_HPEL, MV_PMODE_1MV_HPEL_BILIN, MV_PMODE_INTENSITY_COMP }
};

/* One more frame type */
#define BI_TYPE 7

/* FIXME Worse than ugly */
static const int fps_nr[5] = { 24, 25, 30, 50, 60 },
  fps_dr[2] = { 1000, 1001 };
static const uint8_t pquant_table[3][32] = {
  {  /* Implicit quantizer */
     0,  1,  2,  3,  4,  5,  6,  7,  8,  6,  7,  8,  9, 10, 11, 12,
    13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 27, 29, 31
  },
  {  /* Explicit quantizer, pquantizer uniform */
     0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
    16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31
  },
  {  /* Explicit quantizer, pquantizer non-uniform */
     0,  1,  1,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13,
    14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31
  }
};

// FIXME move this into the context
#define VC9_BFRACTION_VLC_BITS 7
static VLC vc9_bfraction_vlc;
#define VC9_IMODE_VLC_BITS 4
static VLC vc9_imode_vlc;
#define VC9_NORM2_VLC_BITS 3
static VLC vc9_norm2_vlc;
139
#if TILE_VLC_METHOD == 1
140 141
#define VC9_NORM6_VLC_BITS 9
static VLC vc9_norm6_vlc;
142 143 144
#endif
#if TILE_VLC_METHOD == 2
#define VC9_NORM6_FIRST_BITS 8
145
#define VC9_NORM6_SECOND_BITS 8
146 147
static VLC vc9_norm6_first, vc9_norm6_second;
#endif
148
/* Could be optimized, one table only needs 8 bits */
A
Fixes:  
anonymous 已提交
149
#define VC9_TTMB_VLC_BITS 9 //12
150
static VLC vc9_ttmb_vlc[3];
A
Fixes:  
anonymous 已提交
151
#define VC9_MV_DIFF_VLC_BITS 9 //15
152
static VLC vc9_mv_diff_vlc[4];
A
Fixes:  
anonymous 已提交
153
#define VC9_CBPCY_P_VLC_BITS 9 //14
154 155 156
static VLC vc9_cbpcy_p_vlc[4];
#define VC9_4MV_BLOCK_PATTERN_VLC_BITS 6
static VLC vc9_4mv_block_pattern_vlc[4];
A
Fixes:  
anonymous 已提交
157 158 159 160 161 162 163 164 165

//We mainly need data and is_raw, so this struct could be avoided
//to save a level of indirection; feel free to modify
typedef struct BitPlane {
    uint8_t *data;
    int width, stride;
    int height;
    uint8_t is_raw;
} BitPlane;
166 167 168

typedef struct VC9Context{
  /* No MpegEnc context, might be good to use it */
A
anonymous 已提交
169
  MpegEncContext s;
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207

  /***************************/
  /* Sequence Header         */
  /***************************/
  /* Simple/Main Profile */
  int res_sm; //reserved, 2b
  int res_x8; //reserved
  int multires; //frame-level RESPIC syntax element present
  int res_fasttx; //always 1
  int res_transtab; //always 0
  int rangered; //RANGEREDFRM (range reduction) syntax element present
  int res_rtm_flag; //reserved, set to 1
  int reserved; //duh

#if HAS_ADVANCED_PROFILE
  /* Advanced Profile */
  int level; //3
  int chromaformat; //2
  int postprocflag; //frame-based processing use
  int broadcast; //TFF/RFF present
    int interlace; //Progressive/interlaced (RPTFTM syntax element)
  int tfcntrflag; //TFCNTR present
  int panscanflag; //NUMPANSCANWIN, TOPLEFT{X,Y}, BOTRIGHT{X,Y} presents
    int extended_dmv;
  int color_prim; //8
  int transfer_char; //8
  int matrix_coef; //8
  int hrd_param_flag;
#endif

  /* All Profiles */
  /* TODO: move all int to flags */
  int profile; //2
  int frmrtq_postproc; //3
  int bitrtq_postproc; //5
    int loopfilter;
    int fastuvmc; //Rounding of qpel vector to hpel ? (not in Simple)
  int extended_mv; //Ext MV in P/B (not in Simple)
A
anonymous 已提交
208
  int dquant; //How qscale varies with MBs, 2bits (not in Simple)
209
  int vstransform; //variable-size transform46
A
anonymous 已提交
210
  
211 212 213 214 215 216 217 218 219 220 221 222 223 224

  int overlap; //overlapped transforms in use
  int quantizer_mode; //2, quantizer mode used for sequence, see QUANT_*
  int finterpflag; //INTERPFRM present


  /*****************************/
  /* Frame decoding            */
  /*****************************/
  /* All profiles */
  uint8_t mv_mode, mv_mode2; /* MV coding mode */
  uint8_t pq, altpq; /* Quantizers */
  uint8_t dquantfrm, dqprofile, dqsbedge, dqbilevel; /* pquant parameters */
  int tile; /* 3x2 if (width_mb%3) else 2x3 */
225 226
  int ac_table_level;
  VLC *luma_dc_vlc, *chroma_dc_vlc; /* transac/dcfrm bits are indexes */
227 228 229 230 231
  uint8_t ttmbf, ttfrm; /* Transform type */
  uint8_t lumscale, lumshift; /* Luma compensation parameters */
  int16_t bfraction; /* Relative position % anchors=> how to scale MVs */
  uint8_t halfpq; /* Uniform quant over image and qp+.5 */
  uint8_t respic;
232
  int buffer_fullness; /* For HRD ? */
233 234 235 236 237 238 239 240
  /* Ranges:
   * 0 -> [-64n 63.f] x [-32, 31.f]
   * 1 -> [-128, 127.f] x [-64, 63.f]
   * 2 -> [-512, 511.f] x [-128, 127.f]
   * 3 -> [-1024, 1023.f] x [-256, 255.f]
   */
  uint8_t mvrange;
  uint8_t pquantizer;
A
Fixes:  
anonymous 已提交
241
  uint8_t *previous_line_cbpcy; /* To use for predicted CBPCY */
242 243
  VLC *cbpcy_vlc /* Current CBPCY VLC table */,
    *ttmb_vlc /* Current MB Transform Type VLC table */;
A
Fixes:  
anonymous 已提交
244 245 246
  BitPlane mv_type_mb_plane; /* bitplane for mv_type == (4MV) */
  BitPlane skip_mb_plane, /* bitplane for skipped MBs */
    direct_mb_plane; /* bitplane for "direct" MBs */
247 248

  /* S/M only ? */
A
Fixes:  
anonymous 已提交
249 250
  uint8_t rangeredfrm; /* out_sample = CLIP((in_sample-128)*2+128) */
  uint8_t interpfrm;
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266

#if HAS_ADVANCED_PROFILE
  /* Advanced */
  uint8_t fcm; //0->Progressive, 2->Frame-Interlace, 3->Field-Interlace
  uint8_t numpanscanwin;
  uint8_t tfcntr;
  uint8_t rptfrm, tff, rff;
  uint8_t topleftx;
  uint8_t toplefty;
  uint8_t bottomrightx;
  uint8_t bottomrighty;
  uint8_t uvsamp;
  uint8_t postproc;
  int hrd_num_leaky_buckets;
  uint8_t bit_rate_exponent;
  uint8_t buffer_size_exponent;
A
Fixes:  
anonymous 已提交
267 268 269
  BitPlane ac_pred_plane; //AC prediction flags bitplane
  BitPlane over_flags_plane; //Overflags bitplane
  uint8_t condover;
270
  uint16_t *hrd_rate, *hrd_buffer;
A
Fixes:  
anonymous 已提交
271
  VLC *luma_ac2_vlc, *chroma_ac2_vlc;
272 273 274 275 276 277
#endif
} VC9Context;

/* FIXME Slow and ugly */
static int get_prefix(GetBitContext *gb, int stop, int len)
{
A
Fixes:  
anonymous 已提交
278
#if 1
279 280 281 282 283 284 285 286
  int i = 0, tmp = !stop;

  while (i != len && tmp != stop)
  {
    tmp = get_bits(gb, 1);
    i++;
  }
  return i;
A
Fixes:  
anonymous 已提交
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
#else
  unsigned int buf;
  int log;

  OPEN_READER(re, gb);
  UPDATE_CACHE(re, gb);
  buf=GET_CACHE(re, gb); //Still not sure
  if (stop) buf = ~buf;
  
  log= av_log2(-buf); //FIXME: -?
  if (log < limit){
    LAST_SKIP_BITS(re, gb, log+1);
    CLOSE_READER(re, gb);
    return log;
  }
  
  LAST_SKIP_BITS(re, gb, limit);
  CLOSE_READER(re, gb);
  return limit;
#endif
}

A
anonymous 已提交
309
static int vc9_init_common(VC9Context *v)
310 311 312 313
{
    static int done = 0;
    int i;

A
Fixes:  
anonymous 已提交
314 315 316 317 318
    /* Set the bit planes */
    /* FIXME memset better ? (16bytes) */
    v->mv_type_mb_plane = (struct BitPlane) { NULL, 0, 0, 0 };
    v->direct_mb_plane = (struct BitPlane) { NULL, 0, 0, 0 };
    v->skip_mb_plane = (struct BitPlane) { NULL, 0, 0, 0 };
319
#if HAS_ADVANCED_PROFILE
A
Fixes:  
anonymous 已提交
320
    v->ac_pred_plane = v->over_flags_plane = (struct BitPlane) { NULL, 0, 0, 0 };
321
    v->hrd_rate = v->hrd_buffer = NULL;
322
#endif
A
Fixes:  
anonymous 已提交
323 324

    /* VLC tables */
325 326
#if TILE_VLC_METHOD == 1
#  if 0 // spec -> actual tables converter
327 328 329 330 331 332 333 334 335 336
    for(i=0; i<64; i++){
        int code= (vc9_norm6_spec[i][1] << vc9_norm6_spec[i][4]) + vc9_norm6_spec[i][3];
        av_log(NULL, AV_LOG_DEBUG, "0x%03X, ", code);
        if(i%16==15) av_log(NULL, AV_LOG_DEBUG, "\n");
    }
    for(i=0; i<64; i++){
        int code= vc9_norm6_spec[i][2] + vc9_norm6_spec[i][4];
        av_log(NULL, AV_LOG_DEBUG, "%2d, ", code);
        if(i%16==15) av_log(NULL, AV_LOG_DEBUG, "\n");
    }
337
#  endif
338 339 340 341 342 343 344 345 346 347
#endif
    if(!done)
    {
        done = 1;
        INIT_VLC(&vc9_bfraction_vlc, VC9_BFRACTION_VLC_BITS, 23,
                 vc9_bfraction_bits, 1, 1,
                 vc9_bfraction_codes, 1, 1, 1);
        INIT_VLC(&vc9_norm2_vlc, VC9_NORM2_VLC_BITS, 4,
                 vc9_norm2_bits, 1, 1,
                 vc9_norm2_codes, 1, 1, 1);
348
#if TILE_VLC_METHOD == 1
349 350 351
        INIT_VLC(&vc9_norm6_vlc, VC9_NORM6_VLC_BITS, 64,
                 vc9_norm6_bits, 1, 1,
                 vc9_norm6_codes, 2, 2, 1);
352 353 354 355 356 357 358 359 360
#endif
#if TILE_VLC_METHOD == 2
        INIT_VLC(&vc9_norm6_first, VC9_NORM6_FIRST_BITS, 64,
                 &vc9_norm6_first[0][1], 1, 1,
                 &vc9_norm6_first[0][0], 1, 1, 1);
        INIT_VLC(&vc9_norm6_second, VC9_NORM6_SECOND_BITS, 64,
                 vc9_norm6_second[0][1], 1, 1,
                 vc9_norm6_second[0][1], 1, 1, 1);
#endif
361 362 363
        INIT_VLC(&vc9_imode_vlc, VC9_IMODE_VLC_BITS, 7,
                 vc9_imode_bits, 1, 1,
                 vc9_imode_codes, 1, 1, 1);
A
Fixes:  
anonymous 已提交
364 365 366 367 368 369 370
        for (i=0; i<3; i++)
        {
            INIT_VLC(&vc9_ttmb_vlc[i], VC9_TTMB_VLC_BITS, 16,
                     vc9_ttmb_bits[i], 1, 1,
                     vc9_ttmb_codes[i], 2, 2, 1);
        }
        for(i=0; i<4; i++)
371 372 373 374 375 376 377 378 379 380 381 382 383
        {
            INIT_VLC(&vc9_4mv_block_pattern_vlc[i], VC9_4MV_BLOCK_PATTERN_VLC_BITS, 16,
                     vc9_4mv_block_pattern_bits[i], 1, 1,
                     vc9_4mv_block_pattern_codes[i], 1, 1, 1);
            INIT_VLC(&vc9_cbpcy_p_vlc[i], VC9_CBPCY_P_VLC_BITS, 64,
                     vc9_cbpcy_p_bits[i], 1, 1,
                     vc9_cbpcy_p_codes[i], 2, 2, 1);
            INIT_VLC(&vc9_mv_diff_vlc[i], VC9_MV_DIFF_VLC_BITS, 73,
                     vc9_mv_diff_bits[i], 1, 1,
                     vc9_mv_diff_codes[i], 2, 2, 1);
        }
    }

A
Fixes:  
anonymous 已提交
384 385 386 387
    /* Other defaults */
    v->pq = -1;
    v->mvrange = 0; /* 7.1.1.18, p80 */

388 389 390 391
    return 0;
}

#if HAS_ADVANCED_PROFILE
A
Fixes:  
anonymous 已提交
392
/* 6.2.1, p32 */
393 394 395 396 397 398 399 400
static int decode_hrd(VC9Context *v, GetBitContext *gb)
{
    int i, num;

    num = get_bits(gb, 5);

    if (v->hrd_rate || num != v->hrd_num_leaky_buckets)
    {
401
        av_freep(&v->hrd_rate);
402
    }
A
Fixes:  
anonymous 已提交
403
    if (!v->hrd_rate) v->hrd_rate = av_malloc(num*sizeof(uint16_t));
404 405 406 407
    if (!v->hrd_rate) return -1;

    if (v->hrd_buffer || num != v->hrd_num_leaky_buckets)
    {
408
        av_freep(&v->hrd_buffer);
409
    }
A
Fixes:  
anonymous 已提交
410
    if (!v->hrd_buffer) v->hrd_buffer = av_malloc(num*sizeof(uint16_t));
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
    if (!v->hrd_buffer) return -1;

    v->hrd_num_leaky_buckets = num;

    //exponent in base-2 for rate
    v->bit_rate_exponent = get_bits(gb, 4);
    //exponent in base-2 for buffer_size
    v->buffer_size_exponent = get_bits(gb, 4);

    for (i=0; i<num; i++)
    {
        //mantissae, ordered (if not, use a function ?
        v->hrd_rate[i] = get_bits(gb, 16);
        if (i && v->hrd_rate[i-1]>=v->hrd_rate[i])
        {
426
            av_log(v->s.avctx, AV_LOG_ERROR, "HDR Rates aren't strictly increasing:"
427 428 429 430 431 432
                   "%i vs %i\n", v->hrd_rate[i-1], v->hrd_rate[i]);
            return -1;
        }
        v->hrd_buffer[i] = get_bits(gb, 16);
        if (i && v->hrd_buffer[i-1]<v->hrd_buffer[i])
        {
433
            av_log(v->s.avctx, AV_LOG_ERROR, "HDR Buffers aren't decreasing:"
434 435 436 437 438 439 440
                   "%i vs %i\n", v->hrd_buffer[i-1], v->hrd_buffer[i]);
            return -1;
        }
    }
    return 0;
}

A
Fixes:  
anonymous 已提交
441
/* Table 2, p18 */
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
static int decode_advanced_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
{
    VC9Context *v = avctx->priv_data;
    int nr, dr, aspect_ratio;

    v->postprocflag = get_bits(gb, 1);
    v->broadcast = get_bits(gb, 1);
    v->interlace = get_bits(gb, 1);

    v->tfcntrflag = get_bits(gb, 1);
    v->finterpflag = get_bits(gb, 1); //common
    v->panscanflag = get_bits(gb, 1);
    v->reserved = get_bits(gb, 1);
    if (v->reserved)
    {
        av_log(avctx, AV_LOG_ERROR, "RESERVED should be 0 (is %i)\n",
               v->reserved);
        return -1;
    }
    if (v->extended_mv)
        v->extended_dmv = get_bits(gb, 1);

A
Fixes:  
anonymous 已提交
464
    /* 6.1.7, p21 */
465 466 467 468 469 470 471 472 473 474
    if (get_bits(gb, 1) /* pic_size_flag */)
    {
        avctx->coded_width = get_bits(gb, 12);
        avctx->coded_height = get_bits(gb, 12);
        if ( get_bits(gb, 1) /* disp_size_flag */)
        {
            avctx->width = get_bits(gb, 14);
            avctx->height = get_bits(gb, 14);
        }

A
Fixes:  
anonymous 已提交
475
        /* 6.1.7.4, p22 */
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
        if ( get_bits(gb, 1) /* aspect_ratio_flag */)
        {
            aspect_ratio = get_bits(gb, 4); //SAR
            if (aspect_ratio == 0x0F) //FF_ASPECT_EXTENDED
            {
                avctx->sample_aspect_ratio.num = get_bits(gb, 8);
                avctx->sample_aspect_ratio.den = get_bits(gb, 8);
            }
            else if (aspect_ratio == 0x0E)
            {
                av_log(avctx, AV_LOG_DEBUG, "Reserved AR found\n");
            }
            else
            {
              avctx->sample_aspect_ratio = vc9_pixel_aspect[aspect_ratio];
            }
        }
    }
    else
    {
        avctx->coded_width = avctx->width;
        avctx->coded_height = avctx->height;
    }

A
Fixes:  
anonymous 已提交
500
    /* 6.1.8, p23 */
501
    if ( !get_bits(gb, 1) /* framerateflag */)
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
    {
        if ( get_bits(gb, 1) /* framerateind */)
        {
            nr = get_bits(gb, 8);
            dr = get_bits(gb, 4);
            if (nr<1)
            {
                av_log(avctx, AV_LOG_ERROR, "0 is forbidden for FRAMERATENR\n");
                return -1;
            }
            if (nr>5)
            {
                av_log(avctx, AV_LOG_ERROR,
                       "Reserved FRAMERATENR %i not handled\n", nr);
           }
            if (dr<1)
            {
                av_log(avctx, AV_LOG_ERROR, "0 is forbidden for FRAMERATEDR\n");
           }
            if (dr>2)
            {
                av_log(avctx, AV_LOG_ERROR,
                       "Reserved FRAMERATEDR %i not handled\n", dr);
            }
            avctx->frame_rate_base = fps_nr[dr];
            avctx->frame_rate = fps_nr[nr];
        }
        else
        {
            nr = get_bits(gb, 16);
            // 0.03125->2048Hz / 0.03125Hz
            avctx->frame_rate = 1000000;
            avctx->frame_rate_base = 31250*(1+nr);
        }
    }

A
Fixes:  
anonymous 已提交
538
    /* 6.1.9, p25 */
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
    if ( get_bits(gb, 1) /* color_format_flag */)
    {
        //Chromacity coordinates of color primaries
        //like ITU-R BT.709-2, BT.470-2, ...
        v->color_prim = get_bits(gb, 8);
        if (v->color_prim<1)
        {
            av_log(avctx, AV_LOG_ERROR, "0 for COLOR_PRIM is reserved\n");
            return -1;
        }
        if (v->color_prim == 3 || v->color_prim>6)
        {
            av_log(avctx, AV_LOG_DEBUG, "Reserved COLOR_PRIM %i found\n",
                   v->color_prim);
            return -1;
        }

        //Opto-electronic transfer characteristics
        v->transfer_char = get_bits(gb, 8);
        if (v->transfer_char == 3 || v->transfer_char>8)
        {
            av_log(avctx, AV_LOG_DEBUG, "Reserved TRANSFERT_CHAR %i found\n",
                   v->color_prim);
            return -1;
        }

        //Matrix coefficient for primariev->YCbCr
        v->matrix_coef = get_bits(gb, 8);
        if (v->matrix_coef < 1) return -1; //forbidden
        if ((v->matrix_coef>3 && v->matrix_coef<6) || v->matrix_coef>7)
        {
            av_log(avctx, AV_LOG_DEBUG, "Reserved MATRIX_COEF %i found\n",
                   v->color_prim);
            return -1;
        }
    }

    //Hypothetical reference decoder indicator flag
    v->hrd_param_flag = get_bits(gb, 1);
    if (v->hrd_param_flag)
    {
      if (decode_hrd(v, gb) < 0) return -1;
    }

    av_log(avctx, AV_LOG_DEBUG, "Advanced profile not supported yet\n");
    return -1;
}
#endif

A
Fixes:  
anonymous 已提交
588
/* Figure 7-8, p16-17 */
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
{
    VC9Context *v = avctx->priv_data;

    v->profile = get_bits(gb, 2);
    av_log(avctx, AV_LOG_DEBUG, "Profile: %i\n", v->profile);

#if HAS_ADVANCED_PROFILE
    if (v->profile > PROFILE_MAIN)
    {
        v->level = get_bits(gb, 3);
        v->chromaformat = get_bits(gb, 2);
        if (v->chromaformat != 1)
        {
            av_log(avctx, AV_LOG_ERROR,
                   "Only 4:2:0 chroma format supported\n");
            return -1;
        }
    }
    else
#endif
    {
        v->res_sm = get_bits(gb, 2); //reserved
        if (v->res_sm)
        {
            av_log(avctx, AV_LOG_ERROR,
                   "Reserved RES_SM=%i is forbidden\n", v->res_sm);
            //return -1;
        }
    }

    // (fps-2)/4 (->30)
    v->frmrtq_postproc = get_bits(gb, 3); //common
    // (bitrate-32kbps)/64kbps
    v->bitrtq_postproc = get_bits(gb, 5); //common
624
    v->s.loop_filter = get_bits(gb, 1); //common
625 626 627 628 629 630 631 632 633 634

#if HAS_ADVANCED_PROFILE
    if (v->profile <= PROFILE_MAIN)
#endif
    {
        v->res_x8 = get_bits(gb, 1); //reserved
        if (v->res_x8)
        {
            av_log(avctx, AV_LOG_ERROR,
                   "1 for reserved RES_X8 is forbidden\n");
635
            //return -1;
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
        }
        v->multires = get_bits(gb, 1);
        v->res_fasttx = get_bits(gb, 1);
        if (!v->res_fasttx)
        {
            av_log(avctx, AV_LOG_ERROR,
                   "0 for reserved RES_FASTTX is forbidden\n");
            //return -1;
        }
    }

    v->fastuvmc =  get_bits(gb, 1); //common
    if (!v->profile && !v->fastuvmc)
    {
        av_log(avctx, AV_LOG_ERROR,
               "FASTUVMC unavailable in Simple Profile\n");
        return -1;
    }
    v->extended_mv =  get_bits(gb, 1); //common
    if (!v->profile && v->extended_mv)
    {
        av_log(avctx, AV_LOG_ERROR,
               "Extended MVs unavailable in Simple Profile\n");
        return -1;
    }
    v->dquant =  get_bits(gb, 2); //common
    v->vstransform =  get_bits(gb, 1); //common
    
#if HAS_ADVANCED_PROFILE
    if (v->profile <= PROFILE_MAIN)
#endif
    {
        v->res_transtab = get_bits(gb, 1);
        if (v->res_transtab)
        {
            av_log(avctx, AV_LOG_ERROR,
                   "1 for reserved RES_TRANSTAB is forbidden\n");
            return -1;
        }
    }

    v->overlap = get_bits(gb, 1); //common

#if HAS_ADVANCED_PROFILE
    if (v->profile <= PROFILE_MAIN)
#endif
    {
A
anonymous 已提交
683
        v->s.resync_marker = get_bits(gb, 1);
684 685 686
        v->rangered = get_bits(gb, 1);
    }

A
anonymous 已提交
687
    v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
    v->quantizer_mode = get_bits(gb, 2); //common

#if HAS_ADVANCED_PROFILE
    if (v->profile <= PROFILE_MAIN)
#endif
    {
        v->finterpflag = get_bits(gb, 1); //common
        v->res_rtm_flag = get_bits(gb, 1); //reserved
        if (!v->res_rtm_flag)
        {
            av_log(avctx, AV_LOG_ERROR,
                   "0 for reserved RES_RTM_FLAG is forbidden\n");
            //return -1;
        }
#if TRACE
        av_log(avctx, AV_LOG_INFO,
               "Profile %i:\nfrmrtq_postproc=%i, bitrtq_postproc=%i\n"
               "LoopFilter=%i, MultiRes=%i, FastUVMV=%i, Extended MV=%i\n"
               "Rangered=%i, VSTransform=%i, Overlap=%i, SyncMarker=%i\n"
               "DQuant=%i, Quantizer mode=%i, Max B frames=%i\n",
               v->profile, v->frmrtq_postproc, v->bitrtq_postproc,
               v->loopfilter, v->multires, v->fastuvmc, v->extended_mv,
A
anonymous 已提交
710
               v->rangered, v->vstransform, v->overlap, v->s.resync_marker,
711 712
               v->dquant, v->quantizer_mode, avctx->max_b_frames
               );
A
Fixes:  
anonymous 已提交
713
        return 0;
714 715 716
#endif
    }
#if HAS_ADVANCED_PROFILE
A
Fixes:  
anonymous 已提交
717
    else return decode_advanced_sequence_header(avctx, gb);
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
#endif
}


#if HAS_ADVANCED_PROFILE
/*****************************************************************************/
/* Entry point decoding (Advanced Profile)                                   */
/*****************************************************************************/
static int advanced_entry_point_process(AVCodecContext *avctx, GetBitContext *gb)
{
    VC9Context *v = avctx->priv_data;
    int range_mapy_flag, range_mapuv_flag, i;
    if (v->profile != PROFILE_ADVANCED)
    {
        av_log(avctx, AV_LOG_ERROR,
               "Entry point are only defined in Advanced Profile!\n");
        return -1; //Only for advanced profile!
    }
    if (v->hrd_param_flag)
    {
        //Update buffer fullness
        av_log(avctx, AV_LOG_DEBUG, "Buffer fullness update\n");
        for (i=0; i<v->hrd_num_leaky_buckets; i++)
            skip_bits(gb, 8);
    }
    if ((range_mapy_flag = get_bits(gb, 1)))
    {
        //RANGE_MAPY
        av_log(avctx, AV_LOG_DEBUG, "RANGE_MAPY\n");
        skip_bits(gb, 3);
    }
    if ((range_mapuv_flag = get_bits(gb, 1)))
    {
        //RANGE_MAPUV
        av_log(avctx, AV_LOG_DEBUG, "RANGE_MAPUV\n");
        skip_bits(gb, 3);
    }
    if (v->panscanflag)
    {
        //NUMPANSCANWIN
        v->numpanscanwin = get_bits(gb, 3);
        av_log(avctx, AV_LOG_DEBUG, "NUMPANSCANWIN: %u\n", v->numpanscanwin);
    }
    return 0;
}
#endif

/******************************************************************************/
A
Fixes:  
anonymous 已提交
766
/* Bitplane decoding: 8.7, p56                                                */
767 768 769 770 771 772 773 774
/******************************************************************************/
#define IMODE_RAW     0
#define IMODE_NORM2   1
#define IMODE_DIFF2   2
#define IMODE_NORM6   3
#define IMODE_DIFF6   4
#define IMODE_ROWSKIP 5
#define IMODE_COLSKIP 6
A
Fixes:  
anonymous 已提交
775 776 777 778 779 780 781 782 783
int alloc_bitplane(BitPlane *bp, int width, int height)
{
    if (!bp || bp->width<0 || bp->height<0) return -1;
    bp->data = (uint8_t*)av_malloc(width*height);
    if (!bp->data) return -1;
    bp->width = bp->stride = width; //FIXME Needed for aligned data ?
    bp->height = height;
    return 0;
}
784

A
anonymous 已提交
785 786 787 788 789 790
void free_bitplane(BitPlane *bp)
{
    bp->width = bp->stride = bp->height = 0;
    if (bp->data) av_freep(&bp->data);
}

791 792
static void decode_rowskip(uint8_t* plane, int width, int height, int stride, VC9Context *v){
    int x, y;
A
anonymous 已提交
793
    GetBitContext *gb = &v->s.gb;
794 795

    for (y=0; y<height; y++){
A
anonymous 已提交
796
        if (!get_bits(gb, 1)) //rowskip
797 798 799
            memset(plane, 0, width);
        else
            for (x=0; x<width; x++) 
A
anonymous 已提交
800
                plane[x] = get_bits(gb, 1);
801 802 803 804
        plane += stride;
    }
}

805
//FIXME optimize
806 807
static void decode_colskip(uint8_t* plane, int width, int height, int stride, VC9Context *v){
    int x, y;
A
anonymous 已提交
808
    GetBitContext *gb = &v->s.gb;
809 810

    for (x=0; x<width; x++){
A
anonymous 已提交
811
        if (!get_bits(gb, 1)) //colskip
812 813 814 815
            for (y=0; y<height; y++)
                plane[y*stride] = 0;
        else
            for (y=0; y<height; y++)
A
anonymous 已提交
816
                plane[y*stride] = get_bits(gb, 1);
817 818 819 820
        plane ++;
    }
}

821
//FIXME optimize
A
Fixes:  
anonymous 已提交
822 823
//FIXME Use BitPlane struct or return if table is raw (no bits read here but
//      later on)
824
//Elements must be either 0 or 1
A
Fixes:  
anonymous 已提交
825
static int bitplane_decoding(BitPlane *bp, VC9Context *v)
826
{
A
anonymous 已提交
827 828
    GetBitContext *gb = &v->s.gb;

A
Fixes:  
anonymous 已提交
829 830
    int imode, x, y, code, use_vertical_tile, tile_w, tile_h;
    uint8_t invert, *planep = bp->data;
831

A
anonymous 已提交
832 833
    invert = get_bits(gb, 1);
    imode = get_vlc2(gb, vc9_imode_vlc.table, VC9_IMODE_VLC_BITS, 2);
834

A
Fixes:  
anonymous 已提交
835
    bp->is_raw = 0;
836 837 838
    switch (imode)
    {
    case IMODE_RAW:
A
Fixes:  
anonymous 已提交
839 840 841
        //Data is actually read in the MB layer (same for all tests == "raw")
        bp->is_raw = 1; //invert ignored
        return invert;
842 843
    case IMODE_DIFF2:
    case IMODE_NORM2:
A
anonymous 已提交
844
        if ((bp->height*bp->width) & 1) *(++planep) = get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
845
        for(x=0; x<(bp->height*bp->width)>>1; x++){
A
anonymous 已提交
846
            code = get_vlc2(gb, vc9_norm2_vlc.table, VC9_NORM2_VLC_BITS, 2);
847
            *(++planep) = code&1; //lsb => left
848
            *(++planep) = (code>>1)&1; //msb => right
849 850
            //FIXME width->stride
        }
851 852 853
        break;
    case IMODE_DIFF6:
    case IMODE_NORM6:
A
Fixes:  
anonymous 已提交
854
        use_vertical_tile=  bp->height%3==0 &&  bp->width%3!=0;
855 856 857
        tile_w= use_vertical_tile ? 2 : 3;
        tile_h= use_vertical_tile ? 3 : 2;

A
Fixes:  
anonymous 已提交
858 859
        for(y=  bp->height%tile_h; y< bp->height; y+=tile_h){
            for(x=  bp->width%tile_w; x< bp->width; x+=tile_w){
860
#if TILE_VLC_METHOD == 1 //FIXME Too much optimized ?
A
anonymous 已提交
861
                code = get_vlc2(gb, vc9_norm6_vlc.table, VC9_NORM6_VLC_BITS, 2);
862
                if(code<0){
A
anonymous 已提交
863
                    av_log(v->s.avctx, AV_LOG_DEBUG, "inavlid NORM-6 VLC\n");
864 865
                    return -1;
                }
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
#endif
#if TILE_VLC_METHOD == 2 //TODO Optimize VLC decoding
                code = get_vlc2(gb, vc9_norm6_first.table, VC9_NORM6_FIRST_BITS, 2);
                if (vc9_norm6_mode[code] == 1)
                {
#  if TRACE
                    code = get_bits(gb, 5);
                    assert(code>-1 && code<20);
                    code = vc9_norm6_flc_val[code];
#  else
                    code = vc9_norm6_flc_val[get_bits(gb, 5)];
#  endif
                }
                else if (vc9_norm6_mode[code] == 2)
                {
#  if TRACE
                    code = get_vlc2(gb, vc9_norm6_second.table, VC9_NORM6_SECOND_BITS, 2);
                    assert(code>-1 && code<22);
                    code = vc9_norm6_second_val[code];
#  else
                    code = vc9_norm6_second_val[get_vlc2(gb, vc9_norm6_second.table, VC9_NORM6_SECOND_BITS, 2)];
#  endif
#endif //TILE_VLC_METHOD == 2
889
                //FIXME following is a pure guess and probably wrong
A
Fixes:  
anonymous 已提交
890 891 892
                //FIXME A bitplane (0 | !0), so could the shifts be avoided ?
                planep[x     + 0*bp->stride]= (code>>0)&1;
                planep[x + 1 + 0*bp->stride]= (code>>1)&1;
893
                //FIXME Does branch prediction help here?
894
                if(use_vertical_tile){
A
Fixes:  
anonymous 已提交
895 896 897 898
                    planep[x + 0 + 1*bp->stride]= (code>>2)&1;
                    planep[x + 1 + 1*bp->stride]= (code>>3)&1;
                    planep[x + 0 + 2*bp->stride]= (code>>4)&1;
                    planep[x + 1 + 2*bp->stride]= (code>>5)&1;
899
                }else{
A
Fixes:  
anonymous 已提交
900 901 902 903
                    planep[x + 2 + 0*bp->stride]= (code>>2)&1;
                    planep[x + 0 + 1*bp->stride]= (code>>3)&1;
                    planep[x + 1 + 1*bp->stride]= (code>>4)&1;
                    planep[x + 2 + 1*bp->stride]= (code>>5)&1;
904 905
                }
            }
906
        }
907

A
Fixes:  
anonymous 已提交
908 909 910
        x=  bp->width % tile_w;
        decode_colskip(bp->data  ,             x, bp->height         , bp->stride, v);
        decode_rowskip(bp->data+x, bp->width - x, bp->height % tile_h, bp->stride, v);
911

912 913
        break;
    case IMODE_ROWSKIP:
A
Fixes:  
anonymous 已提交
914
        decode_rowskip(bp->data, bp->width, bp->height, bp->stride, v);
915 916
        break;
    case IMODE_COLSKIP: //Teh ugly
A
Fixes:  
anonymous 已提交
917
        decode_colskip(bp->data, bp->width, bp->height, bp->stride, v);
918 919 920 921 922
        break;
    default: break;
    }

    /* Applying diff operator */
923
    if (imode == IMODE_DIFF2 || imode == IMODE_DIFF6)
924
    {
A
Fixes:  
anonymous 已提交
925
        planep = bp->data;
926
        planep[0] ^= invert;
A
Fixes:  
anonymous 已提交
927
        for (x=1; x<bp->width; x++)
928
            planep[x] ^= planep[x-1];
A
Fixes:  
anonymous 已提交
929
        for (y=1; y<bp->height; y++)
930
        {
A
Fixes:  
anonymous 已提交
931 932 933
            planep += bp->stride;
            planep[0] ^= planep[-bp->stride];
            for (x=1; x<bp->width; x++)
934
            {
A
Fixes:  
anonymous 已提交
935 936
                if (planep[x-1] != planep[x-bp->stride]) planep[x] ^= invert;
                else                                     planep[x] ^= planep[x-1];
937 938 939 940 941
            }
        }
    }
    else if (invert)
    {
A
Fixes:  
anonymous 已提交
942 943
        planep = bp->data;
        for (x=0; x<bp->width*bp->height; x++) planep[x] = !planep[x]; //FIXME stride
944
    }
A
Fixes:  
anonymous 已提交
945
    return (imode<<1) + invert;
946 947 948 949 950 951 952
}

/*****************************************************************************/
/* VOP Dquant decoding                                                       */
/*****************************************************************************/
static int vop_dquant_decoding(VC9Context *v)
{
A
anonymous 已提交
953
    GetBitContext *gb = &v->s.gb;
954 955 956 957 958
    int pqdiff;

    //variable size
    if (v->dquant == 2)
    {
A
anonymous 已提交
959 960
        pqdiff = get_bits(gb, 3);
        if (pqdiff == 7) v->altpq = get_bits(gb, 5);
961 962 963 964
        else v->altpq = v->pq + pqdiff + 1;
    }
    else
    {
A
anonymous 已提交
965
        v->dquantfrm = get_bits(gb, 1);
966 967
        if ( v->dquantfrm )
        {
A
anonymous 已提交
968
            v->dqprofile = get_bits(gb, 2);
969 970 971 972
            switch (v->dqprofile)
            {
            case DQPROFILE_SINGLE_EDGE:
            case DQPROFILE_DOUBLE_EDGES:
A
anonymous 已提交
973
                v->dqsbedge = get_bits(gb, 2);
974 975
                break;
            case DQPROFILE_ALL_MBS:
A
anonymous 已提交
976
                v->dqbilevel = get_bits(gb, 1);
977 978 979 980
            default: break; //Forbidden ?
            }
            if (!v->dqbilevel || v->dqprofile != DQPROFILE_ALL_MBS)
            {
A
anonymous 已提交
981 982
                pqdiff = get_bits(gb, 3);
                if (pqdiff == 7) v->altpq = get_bits(gb, 5);
983 984 985 986 987 988 989 990 991 992 993 994
                else v->altpq = v->pq + pqdiff + 1;
            }
        }
    }
    return 0;
}

/*****************************************************************************/
/* All Profiles picture header decoding specific functions                   */
/* Only pro/epilog differs between Simple/Main and Advanced => check caller  */
/*****************************************************************************/

A
Fixes:  
anonymous 已提交
995
/* Tables 11+12, p62-65 */
A
anonymous 已提交
996
static int decode_b_picture_primary_header(VC9Context *v)
997
{
A
anonymous 已提交
998 999
    GetBitContext *gb = &v->s.gb;
    int pqindex, status;
1000 1001 1002 1003

    /* Prolog common to all frametypes should be done in caller */
    if (v->profile == PROFILE_SIMPLE)
    {
1004
        av_log(v->s.avctx, AV_LOG_ERROR, "Found a B frame while in Simple Profile!\n");
1005 1006 1007
        return FRAME_SKIPED;
    }

A
anonymous 已提交
1008
    v->bfraction = vc9_bfraction_lut[get_vlc2(gb, vc9_bfraction_vlc.table,
1009 1010 1011
                                              VC9_BFRACTION_VLC_BITS, 2)];
    if (v->bfraction < -1)
    {
1012
        av_log(v->s.avctx, AV_LOG_ERROR, "Invalid BFRaction\n");
1013 1014 1015 1016 1017
        return FRAME_SKIPED;
    }
    else if (!v->bfraction)
    {
        /* We actually have a BI frame */
1018 1019
        v->s.pict_type = BI_TYPE;
        v->buffer_fullness = get_bits(gb, 7);
1020 1021 1022
    }

    /* Read the quantization stuff */
A
anonymous 已提交
1023
    pqindex = get_bits(gb, 5);
1024 1025 1026 1027 1028 1029
    if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
        v->pq = pquant_table[0][pqindex];
    else
    {
        v->pq = pquant_table[v->quantizer_mode-1][pqindex];
    }
A
anonymous 已提交
1030
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
1031
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
A
anonymous 已提交
1032
        v->pquantizer = get_bits(gb, 1);
1033 1034 1035

    /* Read the MV type/mode */
    if (v->extended_mv == 1)
A
anonymous 已提交
1036
        v->mvrange = get_prefix(gb, 0, 3);
1037
    if (v->s.pict_type != BI_TYPE)
1038
    {
1039 1040
        v->mv_mode = get_bits(gb, 1);
        if (v->pq < 13)
1041
        {
1042 1043 1044 1045 1046
            if (!v->mv_mode)
            {
                v->mv_mode = get_bits(gb, 2);
                if (v->mv_mode)
                av_log(v->s.avctx, AV_LOG_ERROR,
1047
                       "mv_mode for lowquant B frame was %i\n", v->mv_mode);
1048
            }
1049
        }
1050
        else
1051
        {
1052 1053 1054 1055 1056 1057 1058
            if (!v->mv_mode)
            {
                if (get_bits(gb, 1))
                     av_log(v->s.avctx, AV_LOG_ERROR,
                            "mv_mode for highquant B frame was %i\n", v->mv_mode);
            }
            v->mv_mode = 1-v->mv_mode; //To match (pq < 13) mapping
1059 1060 1061
        }
    }

A
anonymous 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
    return 0;
}

static int decode_b_picture_secondary_header(VC9Context *v)
{
    GetBitContext *gb = &v->s.gb;
    int status;

    bitplane_decoding(&v->skip_mb_plane, v);
    if (status < 0) return -1;
#if TRACE
1073 1074
    if (v->mv_mode == MV_PMODE_MIXED_MV)
    {
A
Fixes:  
anonymous 已提交
1075 1076
        status = bitplane_decoding(&v->mv_type_mb_plane, v);
        if (status < 0)
1077
            return -1;
A
Fixes:  
anonymous 已提交
1078
#if TRACE
A
anonymous 已提交
1079
        av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
A
Fixes:  
anonymous 已提交
1080 1081
               "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1082 1083 1084
    }

    //bitplane
A
Fixes:  
anonymous 已提交
1085 1086 1087
    status = bitplane_decoding(&v->direct_mb_plane, v);
    if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1088
    av_log(v->s.avctx, AV_LOG_DEBUG, "MB Direct plane encoding: "
A
Fixes:  
anonymous 已提交
1089 1090 1091
           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif

A
anonymous 已提交
1092
    av_log(v->s.avctx, AV_LOG_DEBUG, "Skip MB plane encoding: "
A
Fixes:  
anonymous 已提交
1093 1094
           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1095 1096

    /* FIXME: what is actually chosen for B frames ? */
1097
    v->s.mv_table_index = get_bits(gb, 2); //but using vc9_ tables
A
anonymous 已提交
1098
    v->cbpcy_vlc = &vc9_cbpcy_p_vlc[get_bits(gb, 2)];
1099

1100 1101 1102 1103 1104 1105 1106
    if (v->dquant)
    {
        vop_dquant_decoding(v);
    }

    if (v->vstransform)
    {
A
anonymous 已提交
1107
        v->ttmbf = get_bits(gb, 1);
1108 1109
        if (v->ttmbf)
        {
A
anonymous 已提交
1110
            v->ttfrm = get_bits(gb, 2);
1111
            av_log(v->s.avctx, AV_LOG_INFO, "Transform used: %ix%i\n",
1112 1113 1114
                   (v->ttfrm & 2) ? 4 : 8, (v->ttfrm & 1) ? 4 : 8);
        }
    }
1115
    /* Epilog (AC/DC syntax) should be done in caller */
1116 1117 1118
    return 0;
}

A
Fixes:  
anonymous 已提交
1119
/* Tables 5+7, p53-54 and 55-57 */
1120 1121
static int decode_i_picture_header(VC9Context *v)
{
A
anonymous 已提交
1122 1123
    GetBitContext *gb = &v->s.gb;
    int pqindex, status = 0;
1124 1125 1126

    /* Prolog common to all frametypes should be done in caller */
    //BF = Buffer Fullness
A
anonymous 已提交
1127
    if (v->profile <= PROFILE_MAIN && get_bits(gb, 7))
1128
    {
1129
        av_log(v->s.avctx, AV_LOG_DEBUG, "I BufferFullness not 0\n");
1130 1131 1132
    }

    /* Quantizer stuff */
A
anonymous 已提交
1133
    pqindex = get_bits(gb, 5);
1134 1135 1136 1137 1138 1139
    if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
        v->pq = pquant_table[0][pqindex];
    else
    {
        v->pq = pquant_table[v->quantizer_mode-1][pqindex];
    }
A
anonymous 已提交
1140
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
1141
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
A
anonymous 已提交
1142 1143
        v->pquantizer = get_bits(gb, 1);
    av_log(v->s.avctx, AV_LOG_DEBUG, "I frame: QP=%i (+%i/2)\n",
1144 1145 1146 1147 1148
           v->pq, v->halfpq);
#if HAS_ADVANCED_PROFILE
    if (v->profile <= PROFILE_MAIN)
#endif
    {
A
anonymous 已提交
1149 1150
        if (v->extended_mv) v->mvrange = get_prefix(gb, 0, 3);
        if (v->multires) v->respic = get_bits(gb, 2);
1151 1152 1153 1154
    }
#if HAS_ADVANCED_PROFILE
    else
    {
A
anonymous 已提交
1155 1156
        v->s.ac_pred = get_bits(gb, 1);
        if (v->postprocflag) v->postproc = get_bits(gb, 1);
1157 1158 1159
        /* 7.1.1.34 + 8.5.2 */
        if (v->overlap && v->pq<9)
        {
A
anonymous 已提交
1160
            v->condover = get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
1161
            if (v->condover)
1162
            {
A
anonymous 已提交
1163
                v->condover = 2+get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
1164 1165 1166 1167 1168
                if (v->condover == 3)
                {
                    status = bitplane_decoding(&v->over_flags_plane, v);
                    if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1169
                    av_log(v->s.avctx, AV_LOG_DEBUG, "Overflags plane encoding: "
A
Fixes:  
anonymous 已提交
1170 1171 1172
                           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
                }
1173 1174 1175 1176 1177
            }
        }
    }
#endif

1178
    /* Epilog (AC/DC syntax) should be done in caller */
1179 1180 1181
    return status;
}

A
Fixes:  
anonymous 已提交
1182
/* Table 9, p58-60 */
A
anonymous 已提交
1183
static int decode_p_picture_primary_header(VC9Context *v)
1184 1185
{
    /* INTERFRM, FRMCNT, RANGEREDFRM read in caller */
A
anonymous 已提交
1186
    GetBitContext *gb = &v->s.gb;
A
Fixes:  
anonymous 已提交
1187
    int lowquant, pqindex, status = 0;
1188

A
anonymous 已提交
1189
    pqindex = get_bits(gb, 5);
1190 1191 1192 1193 1194 1195
    if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
        v->pq = pquant_table[0][pqindex];
    else
    {
        v->pq = pquant_table[v->quantizer_mode-1][pqindex];
    }
A
anonymous 已提交
1196
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
1197
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
A
anonymous 已提交
1198 1199
        v->pquantizer = get_bits(gb, 1);
    av_log(v->s.avctx, AV_LOG_DEBUG, "P Frame: QP=%i (+%i/2)\n",
1200
           v->pq, v->halfpq);
A
anonymous 已提交
1201
    if (v->extended_mv == 1) v->mvrange = get_prefix(gb, 0, 3);
1202 1203 1204
#if HAS_ADVANCED_PROFILE
    if (v->profile > PROFILE_MAIN)
    {
A
anonymous 已提交
1205
        if (v->postprocflag) v->postproc = get_bits(gb, 1);
1206 1207 1208
    }
    else
#endif
A
anonymous 已提交
1209
        if (v->multires) v->respic = get_bits(gb, 2);
1210
    lowquant = (v->pquantizer>12) ? 0 : 1;
A
anonymous 已提交
1211
    v->mv_mode = mv_pmode_table[lowquant][get_prefix(gb, 1, 4)];
1212 1213
    if (v->mv_mode == MV_PMODE_INTENSITY_COMP)
    {
A
anonymous 已提交
1214 1215 1216
        v->mv_mode2 = mv_pmode_table[lowquant][get_prefix(gb, 1, 3)];
        v->lumscale = get_bits(gb, 6);
        v->lumshift = get_bits(gb, 6);
1217
    }
A
anonymous 已提交
1218 1219
    return 0;
}
1220

A
anonymous 已提交
1221 1222 1223 1224
static int decode_p_picture_secondary_header(VC9Context *v)
{
    GetBitContext *gb = &v->s.gb;
    int status = 0;
1225 1226 1227 1228
    if ((v->mv_mode == MV_PMODE_INTENSITY_COMP &&
         v->mv_mode2 == MV_PMODE_MIXED_MV)
        || v->mv_mode == MV_PMODE_MIXED_MV)
    {
A
Fixes:  
anonymous 已提交
1229 1230 1231
        status = bitplane_decoding(&v->mv_type_mb_plane, v);
        if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1232
        av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
A
Fixes:  
anonymous 已提交
1233 1234
               "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1235 1236
    }

A
Fixes:  
anonymous 已提交
1237 1238 1239
    status = bitplane_decoding(&v->skip_mb_plane, v);
    if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1240
    av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
A
Fixes:  
anonymous 已提交
1241 1242
           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1243 1244

    /* Hopefully this is correct for P frames */
1245
    v->s.mv_table_index =get_bits(gb, 2); //but using vc9_ tables
A
anonymous 已提交
1246
    v->cbpcy_vlc = &vc9_cbpcy_p_vlc[get_bits(gb, 2)];
1247 1248 1249

    if (v->dquant)
    {
A
anonymous 已提交
1250
        av_log(v->s.avctx, AV_LOG_INFO, "VOP DQuant info\n");
1251 1252 1253
        vop_dquant_decoding(v);
    }

1254
    v->ttfrm = 0; //FIXME Is that so ?
1255 1256
    if (v->vstransform)
    {
A
anonymous 已提交
1257
        v->ttmbf = get_bits(gb, 1);
1258 1259
        if (v->ttmbf)
        {
A
anonymous 已提交
1260 1261
            v->ttfrm = get_bits(gb, 2);
            av_log(v->s.avctx, AV_LOG_INFO, "Transform used: %ix%i\n",
1262 1263 1264
                   (v->ttfrm & 2) ? 4 : 8, (v->ttfrm & 1) ? 4 : 8);
        }
    }
1265
    /* Epilog (AC/DC syntax) should be done in caller */
1266 1267 1268 1269
    return 0;
}


A
anonymous 已提交
1270
static int standard_decode_picture_primary_header(VC9Context *v)
1271
{
A
anonymous 已提交
1272 1273
    GetBitContext *gb = &v->s.gb;
    int status = 0;
1274

A
anonymous 已提交
1275 1276 1277 1278
    if (v->finterpflag) v->interpfrm = get_bits(gb, 1);
    skip_bits(gb, 2); //framecnt unused
    if (v->rangered) v->rangeredfrm = get_bits(gb, 1);
    v->s.pict_type = get_bits(gb, 1);
1279
    if (v->s.avctx->max_b_frames)
1280
    {
1281 1282 1283 1284 1285
        if (!v->s.pict_type)
        {
            if (get_bits(gb, 1)) v->s.pict_type = I_TYPE;
            else v->s.pict_type = B_TYPE;
        }
A
anonymous 已提交
1286
        else v->s.pict_type = P_TYPE;
1287
    }
1288
    else v->s.pict_type++;
1289

A
anonymous 已提交
1290
    switch (v->s.pict_type)
1291 1292
    {
    case I_TYPE: status = decode_i_picture_header(v); break;
A
anonymous 已提交
1293
    case P_TYPE: status = decode_p_picture_primary_header(v); break;
1294
    case BI_TYPE:
A
anonymous 已提交
1295
    case B_TYPE: status = decode_b_picture_primary_header(v); break;
1296 1297 1298 1299
    }

    if (status == FRAME_SKIPED)
    {
1300
      av_log(v->s.avctx, AV_LOG_INFO, "Skipping frame...\n");
1301 1302
      return status;
    }
A
anonymous 已提交
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
    return 0;
}

static int standard_decode_picture_secondary_header(VC9Context *v)
{
    GetBitContext *gb = &v->s.gb;
    int status = 0, index;

    switch (v->s.pict_type)
    {
    case P_TYPE: status = decode_p_picture_secondary_header(v); break;
    case B_TYPE: status = decode_b_picture_secondary_header(v); break;
    }
1316

A
Fixes:  
anonymous 已提交
1317
    /* AC Syntax */
1318
    v->ac_table_level = decode012(gb);
A
anonymous 已提交
1319
    if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1320
    {
A
anonymous 已提交
1321
        index = decode012(gb);
A
Fixes:  
anonymous 已提交
1322 1323
        v->luma_ac2_vlc = NULL + index; //FIXME Add AC2 table
        v->chroma_ac2_vlc = NULL + index;
1324
    }
A
Fixes:  
anonymous 已提交
1325
    /* DC Syntax */
A
anonymous 已提交
1326 1327 1328
    index = decode012(gb);
    v->luma_dc_vlc = &ff_msmp4_dc_luma_vlc[index];
    v->chroma_dc_vlc = &ff_msmp4_dc_chroma_vlc[index];
1329 1330 1331 1332 1333 1334 1335 1336 1337
   
    return 0;
}


#if HAS_ADVANCED_PROFILE
/******************************************************************************/
/* Advanced Profile picture header decoding specific functions                */
/******************************************************************************/
A
anonymous 已提交
1338
static int advanced_decode_picture_primary_header(VC9Context *v)
1339
{
A
anonymous 已提交
1340
    GetBitContext *gb = &v->s.gb;
1341
    static const int type_table[4] = { P_TYPE, B_TYPE, I_TYPE, BI_TYPE };
A
anonymous 已提交
1342
    int type, i;
1343 1344 1345

    if (v->interlace)
    {
A
anonymous 已提交
1346 1347
        v->fcm = get_bits(gb, 1);
        if (v->fcm) v->fcm = 2+get_bits(gb, 1);
1348 1349
    }

A
anonymous 已提交
1350
    type = get_prefix(gb, 0, 4);
1351
    if (type > 4 || type < 0) return FRAME_SKIPED;
A
anonymous 已提交
1352 1353
    v->s.pict_type = type_table[type];
    av_log(v->s.avctx, AV_LOG_INFO, "AP Frame Type: %i\n", v->s.pict_type);
1354

A
anonymous 已提交
1355
    if (v->tfcntrflag) v->tfcntr = get_bits(gb, 8);
1356 1357
    if (v->broadcast)
    {
A
anonymous 已提交
1358
        if (!v->interlace) v->rptfrm = get_bits(gb, 2);
1359 1360
        else
        {
A
anonymous 已提交
1361 1362
            v->tff = get_bits(gb, 1);
            v->rff = get_bits(gb, 1);
1363 1364 1365 1366 1367 1368 1369 1370
        }
    }

    if (v->panscanflag)
    {
#if 0
        for (i=0; i<v->numpanscanwin; i++)
        {
A
anonymous 已提交
1371 1372 1373 1374
            v->topleftx[i] = get_bits(gb, 16);
            v->toplefty[i] = get_bits(gb, 16);
            v->bottomrightx[i] = get_bits(gb, 16);
            v->bottomrighty[i] = get_bits(gb, 16);
1375 1376
        }
#else
A
anonymous 已提交
1377
        skip_bits(gb, 16*4*v->numpanscanwin);
1378 1379
#endif
    }
A
anonymous 已提交
1380 1381 1382
    v->s.no_rounding = !get_bits(gb, 1);
    v->uvsamp = get_bits(gb, 1);
    if (v->finterpflag == 1) v->interpfrm = get_bits(gb, 1);
1383

A
anonymous 已提交
1384
    switch(v->s.pict_type)
1385 1386
    {
    case I_TYPE: if (decode_i_picture_header(v) < 0) return -1;
A
anonymous 已提交
1387
    case P_TYPE: if (decode_p_picture_primary_header(v) < 0) return -1;
1388
    case BI_TYPE:
A
anonymous 已提交
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403
    case B_TYPE: if (decode_b_picture_primary_header(v) < 0) return FRAME_SKIPED;
    default: break;
    }
    return 0;
}

static int advanced_decode_picture_secondary_header(VC9Context *v)
{
    GetBitContext *gb = &v->s.gb;
    int index;

    switch(v->s.pict_type)
    {
    case P_TYPE: if (decode_p_picture_secondary_header(v) < 0) return -1;
    case B_TYPE: if (decode_b_picture_secondary_header(v) < 0) return FRAME_SKIPED;
1404 1405 1406
    default: break;
    }

A
Fixes:  
anonymous 已提交
1407
    /* AC Syntax */
1408
    v->ac_table_level = decode012(gb);
A
anonymous 已提交
1409
    if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1410
    {
A
anonymous 已提交
1411
        index = decode012(gb); //FIXME
A
Fixes:  
anonymous 已提交
1412 1413
        v->luma_ac2_vlc = NULL + index;
        v->chroma_ac2_vlc = NULL + index;
1414
    }
A
Fixes:  
anonymous 已提交
1415
    /* DC Syntax */
A
anonymous 已提交
1416 1417 1418
    index = decode012(gb);
    v->luma_dc_vlc = &ff_msmp4_dc_luma_vlc[index];
    v->chroma_dc_vlc = &ff_msmp4_dc_chroma_vlc[index];
1419 1420 1421 1422 1423

    return 0;
}
#endif

A
Fixes:  
anonymous 已提交
1424 1425 1426 1427 1428 1429 1430
/******************************************************************************/
/* Block decoding functions                                                   */
/******************************************************************************/
/* 7.1.4, p91 and 8.1.1.7, p(1)04 */
/* FIXME proper integration (unusable and lots of parameters to send */
int decode_luma_intra_block(VC9Context *v, int mquant)
{
A
anonymous 已提交
1431
    GetBitContext *gb = &v->s.gb;
A
Fixes:  
anonymous 已提交
1432 1433
    int dcdiff;

A
anonymous 已提交
1434 1435
    dcdiff = get_vlc2(gb, v->luma_dc_vlc->table,
                      DC_VLC_BITS, 2);
A
Fixes:  
anonymous 已提交
1436 1437 1438 1439 1440
    if (dcdiff)
    {
        if (dcdiff == 119 /* ESC index value */)
        {
            /* TODO: Optimize */
A
anonymous 已提交
1441 1442 1443
            if (mquant == 1) dcdiff = get_bits(gb, 10);
            else if (mquant == 2) dcdiff = get_bits(gb, 9);
            else dcdiff = get_bits(gb, 8);
A
Fixes:  
anonymous 已提交
1444 1445 1446 1447
        }
        else
        {
            if (mquant == 1)
A
anonymous 已提交
1448
                dcdiff = (dcdiff<<2) + get_bits(gb, 2) - 3;
A
Fixes:  
anonymous 已提交
1449
            else if (mquant == 2)
A
anonymous 已提交
1450
                dcdiff = (dcdiff<<1) + get_bits(gb, 1) - 1;
A
Fixes:  
anonymous 已提交
1451
        }
A
anonymous 已提交
1452
        if (get_bits(gb, 1))
A
Fixes:  
anonymous 已提交
1453 1454 1455 1456 1457 1458 1459
            dcdiff = -dcdiff;
    }
    /* FIXME: 8.1.1.15, p(1)13, coeff scaling for Adv Profile */

    return 0;
}

1460 1461 1462
/******************************************************************************/
/* MacroBlock decoding functions                                              */
/******************************************************************************/
A
Fixes:  
anonymous 已提交
1463 1464 1465
/* 8.1.1.5, p(1)02-(1)03 */
/* We only need to store 3 flags, but math with 4 is easier */
#define GET_CBPCY(table, bits)                                      \
A
anonymous 已提交
1466
    predicted_cbpcy = get_vlc2(gb, table, bits, 2);             \
A
Fixes:  
anonymous 已提交
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478
    cbpcy[0] = (p_cbpcy[-1] == p_cbpcy[2])                          \
         ? previous_cbpcy[1] : p_cbpcy[+2];                         \
    cbpcy[0] ^= ((predicted_cbpcy>>5)&0x01);                        \
    cbpcy[1] = (p_cbpcy[2] == p_cbpcy[3]) ? cbpcy[0] : p_cbpcy[3];  \
    cbpcy[1] ^= ((predicted_cbpcy>>4)&0x01);                        \
    cbpcy[2] = (previous_cbpcy[1] == cbpcy[0])                      \
         ? previous_cbpcy[3] : cbpcy[0];                            \
    cbpcy[2] ^= ((predicted_cbpcy>>3)&0x01);                        \
    cbpcy[3] = (cbpcy[1] == cbpcy[0]) ? cbpcy[2] : cbpcy[1];        \
    cbpcy[3] ^= ((predicted_cbpcy>>2)&0x01);
     
/* 8.1, p100 */
1479 1480
static int standard_decode_i_mbs(VC9Context *v)
{
A
anonymous 已提交
1481 1482 1483
    GetBitContext *gb = &v->s.gb;
    MpegEncContext *s = &v->s;
    int current_mb = 0; /* MB/Block Position info */
A
Fixes:  
anonymous 已提交
1484 1485 1486 1487 1488
    /* FIXME: better to use a pointer than using (x<<4) */
    uint8_t cbpcy[4], previous_cbpcy[4], predicted_cbpcy,
        *p_cbpcy /* Pointer to skip some math */;

    /* Reset CBPCY predictors */
A
anonymous 已提交
1489
    memset(v->previous_line_cbpcy, 0, s->mb_stride<<2);
1490 1491 1492 1493 1494 1495

    /* Select ttmb table depending on pq */
    if (v->pq < 5) v->ttmb_vlc = &vc9_ttmb_vlc[0];
    else if (v->pq < 13) v->ttmb_vlc = &vc9_ttmb_vlc[1];
    else v->ttmb_vlc = &vc9_ttmb_vlc[2];

A
anonymous 已提交
1496
    for (s->mb_y=0; s->mb_y<s->mb_height; s->mb_y++)
1497
    {
A
Fixes:  
anonymous 已提交
1498 1499 1500 1501
        /* Init CBPCY for line */
        *((uint32_t*)previous_cbpcy) = 0x00000000;
        p_cbpcy = v->previous_line_cbpcy+4;

A
anonymous 已提交
1502
        for (s->mb_x=0; s->mb_x<s->mb_width; s->mb_x++, p_cbpcy += 4)
1503
        {
A
Fixes:  
anonymous 已提交
1504
            /* Get CBPCY */
A
anonymous 已提交
1505
            GET_CBPCY(ff_msmp4_mb_i_vlc.table, MB_INTRA_VLC_BITS);
A
Fixes:  
anonymous 已提交
1506

A
anonymous 已提交
1507
            s->ac_pred = get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
1508 1509 1510 1511

            /* TODO: Decode blocks from that mb wrt cbpcy */

            /* Update for next block */
1512 1513 1514 1515 1516 1517 1518
#if TRACE > 2
            av_log(s->avctx, AV_LOG_DEBUG, "Block %4i: p_cbpcy=%i%i%i%i, previous_cbpcy=%i%i%i%i,"
                   " cbpcy=%i%i%i%i\n", current_mb,
                   p_cbpcy[0], p_cbpcy[1], p_cbpcy[2], p_cbpcy[3],
                   previous_cbpcy[0], previous_cbpcy[1], previous_cbpcy[2], previous_cbpcy[3],
                   cbpcy[0], cbpcy[1], cbpcy[2], cbpcy[3]);
#endif
A
Fixes:  
anonymous 已提交
1519 1520 1521
            *((uint32_t*)p_cbpcy) = *((uint32_t*)previous_cbpcy);
            *((uint32_t*)previous_cbpcy) = *((uint32_t*)cbpcy);
            current_mb++;
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
        }
    }
    return 0;
}

#define GET_MQUANT()                                           \
  if (v->dquantfrm)                                            \
  {                                                            \
    if (v->dqprofile == DQPROFILE_ALL_MBS)                     \
    {                                                          \
      if (v->dqbilevel)                                        \
      {                                                        \
A
anonymous 已提交
1534
        mquant = (get_bits(gb, 1)) ? v->pq : v->altpq;         \
1535 1536 1537
      }                                                        \
      else                                                     \
      {                                                        \
A
anonymous 已提交
1538
        mqdiff = get_bits(gb, 3);                              \
1539
        if (mqdiff != 7) mquant = v->pq + mqdiff;              \
A
anonymous 已提交
1540
        else mquant = get_bits(gb, 5);                         \
1541 1542 1543 1544
      }                                                        \
    }                                                          \
  }

A
Fixes:  
anonymous 已提交
1545 1546
/* MVDATA decoding from 8.3.5.2, p(1)20 */
#define GET_MVDATA(_dmv_x, _dmv_y)                                  \
1547
  index = 1 + get_vlc2(gb, vc9_mv_diff_vlc[s->mv_table_index].table,\
A
Fixes:  
anonymous 已提交
1548 1549 1550 1551 1552 1553 1554
                       VC9_MV_DIFF_VLC_BITS, 2);                    \
  if (index > 36)                                                   \
  {                                                                 \
    mb_has_coeffs = 1;                                              \
    index -= 37;                                                    \
  }                                                                 \
  else mb_has_coeffs = 0;                                           \
1555
  s->mb_intra = 0;                                                  \
A
Fixes:  
anonymous 已提交
1556 1557 1558
  if (!index) { _dmv_x = _dmv_y = 0; }                              \
  else if (index == 35)                                             \
  {                                                                 \
A
anonymous 已提交
1559 1560
    _dmv_x = get_bits(gb, k_x);                                 \
    _dmv_y = get_bits(gb, k_y);                                 \
1561
    s->mb_intra = 1;                                                \
A
Fixes:  
anonymous 已提交
1562 1563 1564 1565 1566 1567
  }                                                                 \
  else                                                              \
  {                                                                 \
    index1 = index%6;                                               \
    if (hpel_flag && index1 == 5) val = 1;                          \
    else                          val = 0;                          \
A
anonymous 已提交
1568
    val = get_bits(gb, size_table[index1] - val);               \
A
Fixes:  
anonymous 已提交
1569 1570 1571 1572 1573 1574
    sign = 0 - (val&1);                                             \
    _dmv_x = (sign ^ ((val>>1) + offset_table[index1])) - sign;     \
                                                                    \
    index1 = index/6;                                               \
    if (hpel_flag && index1 == 5) val = 1;                          \
    else                          val = 0;                          \
A
anonymous 已提交
1575
    val = get_bits(gb, size_table[index1] - val);               \
A
Fixes:  
anonymous 已提交
1576 1577
    sign = 0 - (val&1);                                             \
    _dmv_y = (sign ^ ((val>>1) + offset_table[index1])) - sign;     \
1578 1579
  }

A
Fixes:  
anonymous 已提交
1580
/* 8.1, p(1)15 */
1581 1582
static int decode_p_mbs(VC9Context *v)
{
A
anonymous 已提交
1583 1584 1585
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &v->s.gb;
    int current_mb = 0, i; /* MB/Block Position info */
A
Fixes:  
anonymous 已提交
1586 1587
    uint8_t cbpcy[4], previous_cbpcy[4], predicted_cbpcy,
        *p_cbpcy /* Pointer to skip some math */;
A
anonymous 已提交
1588
    int hybrid_pred; /* Prediction types */
A
Fixes:  
anonymous 已提交
1589
    int mv_mode_bit = 0; 
1590
    int mqdiff, mquant; /* MB quantization */
A
Fixes:  
anonymous 已提交
1591 1592
    int ttmb; /* MB Transform type */

1593 1594
    static const int size_table[6] = { 0, 2, 3, 4, 5, 8 },
        offset_table[6] = { 0, 1, 3, 7, 15, 31 };
1595
        int mb_has_coeffs = 1; /* last_flag */
A
Fixes:  
anonymous 已提交
1596
    int dmv_x, dmv_y; /* Differential MV components */
1597
    int k_x, k_y; /* Long MV fixed bitlength */
A
Fixes:  
anonymous 已提交
1598
    int hpel_flag; /* Some MB properties */
1599
    int index, index1; /* LUT indices */
A
Fixes:  
anonymous 已提交
1600
    int val, sign; /* MVDATA temp values */
1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619

    /* Select ttmb table depending on pq */
    if (v->pq < 5) v->ttmb_vlc = &vc9_ttmb_vlc[0];
    else if (v->pq < 13) v->ttmb_vlc = &vc9_ttmb_vlc[1];
    else v->ttmb_vlc = &vc9_ttmb_vlc[2];

    /* Select proper long MV range */
    switch (v->mvrange)
    {
    case 1: k_x = 10; k_y = 9; break;
    case 2: k_x = 12; k_y = 10; break;
    case 3: k_x = 13; k_y = 11; break;
    default: /*case 0 too */ k_x = 9; k_y = 8; break;
    }

    hpel_flag = v->mv_mode & 1; //MV_PMODE is HPEL
    k_x -= hpel_flag;
    k_y -= hpel_flag;

A
Fixes:  
anonymous 已提交
1620
    /* Reset CBPCY predictors */
A
anonymous 已提交
1621
    memset(v->previous_line_cbpcy, 0, s->mb_stride<<2);
A
Fixes:  
anonymous 已提交
1622

A
anonymous 已提交
1623
    for (s->mb_y=0; s->mb_y<s->mb_height; s->mb_y++)
1624
    {
A
Fixes:  
anonymous 已提交
1625 1626 1627 1628
        /* Init CBPCY for line */
        *((uint32_t*)previous_cbpcy) = 0x00000000;
        p_cbpcy = v->previous_line_cbpcy+4;

1629
        for (s->mb_x=0; s->mb_x<s->mb_width; s->mb_x++, p_cbpcy += 4)
1630
        {
A
Fixes:  
anonymous 已提交
1631
            if (v->mv_type_mb_plane.is_raw)
A
anonymous 已提交
1632
                v->mv_type_mb_plane.data[current_mb] = get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
1633
            if (v->skip_mb_plane.is_raw)
A
anonymous 已提交
1634
                v->skip_mb_plane.data[current_mb] = get_bits(gb, 1);
1635 1636
            if (!mv_mode_bit) /* 1MV mode */
            {
A
Fixes:  
anonymous 已提交
1637
                if (!v->skip_mb_plane.data[current_mb])
1638
                {
A
Fixes:  
anonymous 已提交
1639
                    GET_MVDATA(dmv_x, dmv_y);
1640 1641 1642 1643

                    /* hybrid mv pred, 8.3.5.3.4 */
                    if (v->mv_mode == MV_PMODE_1MV ||
                        v->mv_mode == MV_PMODE_MIXED_MV)
A
anonymous 已提交
1644
                        hybrid_pred = get_bits(gb, 1);
1645
                    if (s->mb_intra && !mb_has_coeffs)
1646 1647
                    {
                        GET_MQUANT();
A
anonymous 已提交
1648
                        s->ac_pred = get_bits(gb, 1);
1649 1650 1651
                    }
                    else if (mb_has_coeffs)
                    {
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
                        if (s->mb_intra) s->ac_pred = get_bits(gb, 1);
                        predicted_cbpcy = get_vlc2(gb, v->cbpcy_vlc->table, VC9_CBPCY_P_VLC_BITS, 2);
                        cbpcy[0] = (p_cbpcy[-1] == p_cbpcy[2]) ? previous_cbpcy[1] : p_cbpcy[2];
                        cbpcy[0] ^= ((predicted_cbpcy>>5)&0x01);
                        cbpcy[1] = (p_cbpcy[2] == p_cbpcy[3]) ? cbpcy[0] : p_cbpcy[3];
                        cbpcy[1] ^= ((predicted_cbpcy>>4)&0x01);
                        cbpcy[2] = (previous_cbpcy[1] == cbpcy[0]) ? previous_cbpcy[3] : cbpcy[0];
                        cbpcy[2] ^= ((predicted_cbpcy>>3)&0x01);
                        cbpcy[3] = (cbpcy[1] == cbpcy[0]) ? cbpcy[2] : cbpcy[1];
                        cbpcy[3] ^= ((predicted_cbpcy>>2)&0x01);
                        //GET_CBPCY(v->cbpcy_vlc->table, VC9_CBPCY_P_VLC_BITS);

1664 1665 1666
                        GET_MQUANT();
                    }
                    if (!v->ttmbf)
A
anonymous 已提交
1667
                        ttmb = get_vlc2(gb, v->ttmb_vlc->table,
A
Fixes:  
anonymous 已提交
1668 1669
                                            VC9_TTMB_VLC_BITS, 12);
                    /* TODO: decode blocks from that mb wrt cbpcy */
1670 1671 1672 1673 1674 1675
                }
                else //Skipped
                {
                    /* hybrid mv pred, 8.3.5.3.4 */
                    if (v->mv_mode == MV_PMODE_1MV ||
                        v->mv_mode == MV_PMODE_MIXED_MV)
A
anonymous 已提交
1676
                        hybrid_pred = get_bits(gb, 1);
1677 1678 1679 1680
                }
            } //1MV mode
            else //4MV mode
            {
A
Fixes:  
anonymous 已提交
1681
              if (!v->skip_mb_plane.data[current_mb] /* unskipped MB */)
1682
                {
A
Fixes:  
anonymous 已提交
1683 1684
                    /* Get CBPCY */
                    GET_CBPCY(v->cbpcy_vlc->table, VC9_CBPCY_P_VLC_BITS);
1685 1686
                    for (i=0; i<4; i++) //For all 4 Y blocks
                    {
A
Fixes:  
anonymous 已提交
1687
                        if (cbpcy[i] /* cbpcy set for this block */)
1688
                        {
A
Fixes:  
anonymous 已提交
1689
                            GET_MVDATA(dmv_x, dmv_y);
1690 1691
                        }
                        if (v->mv_mode == MV_PMODE_MIXED_MV /* Hybrid pred */)
A
anonymous 已提交
1692
                            hybrid_pred = get_bits(gb, 1);
1693
                        GET_MQUANT();
1694
                        if (s->mb_intra /* One of the 4 blocks is intra */ &&
1695
                            index /* non-zero pred for that block */)
A
anonymous 已提交
1696
                            s->ac_pred = get_bits(gb, 1);
1697
                        if (!v->ttmbf)
A
anonymous 已提交
1698
                            ttmb = get_vlc2(gb, v->ttmb_vlc->table,
A
Fixes:  
anonymous 已提交
1699
                                            VC9_TTMB_VLC_BITS, 12);
1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
            
                        /* TODO: Process blocks wrt cbpcy */
            
                    }
                }
                else //Skipped MB
                {
                    for (i=0; i<4; i++) //All 4 Y blocks
                    {
                        if (v->mv_mode == MV_PMODE_MIXED_MV /* Hybrid pred */)
A
anonymous 已提交
1710
                            hybrid_pred = get_bits(gb, 1);
1711
                        
A
Fixes:  
anonymous 已提交
1712
                        /* TODO: do something */
1713 1714 1715
                    }
                }
            }
A
Fixes:  
anonymous 已提交
1716 1717 1718

            /* Update for next block */
#if TRACE > 2
A
anonymous 已提交
1719
            av_log(s->avctx, AV_LOG_DEBUG, "Block %4i: p_cbpcy=%i%i%i%i, previous_cbpcy=%i%i%i%i,"
A
Fixes:  
anonymous 已提交
1720 1721 1722 1723 1724 1725 1726 1727
                   " cbpcy=%i%i%i%i\n", current_mb,
                   p_cbpcy[0], p_cbpcy[1], p_cbpcy[2], p_cbpcy[3],
                   previous_cbpcy[0], previous_cbpcy[1], previous_cbpcy[2], previous_cbpcy[3],
                   cbpcy[0], cbpcy[1], cbpcy[2], cbpcy[3]);
#endif
            *((uint32_t*)p_cbpcy) = *((uint32_t*)previous_cbpcy);
            *((uint32_t*)previous_cbpcy) = *((uint32_t*)cbpcy);
            current_mb++;
1728 1729 1730 1731 1732 1733 1734
        }
    }
    return 0;
}

static int decode_b_mbs(VC9Context *v)
{
A
anonymous 已提交
1735 1736 1737
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &v->s.gb;
    int current_mb = 0, i /* MB / B postion information */;
A
Fixes:  
anonymous 已提交
1738
    int b_mv_type = BMV_TYPE_BACKWARD;
1739
    int mquant, mqdiff; /* MB quant stuff */
A
Fixes:  
anonymous 已提交
1740 1741 1742 1743
    int ttmb; /* MacroBlock transform type */
    
    static const int size_table[6] = { 0, 2, 3, 4, 5, 8 },
        offset_table[6] = { 0, 1, 3, 7, 15, 31 };
1744
    int mb_has_coeffs = 1; /* last_flag */
A
Fixes:  
anonymous 已提交
1745 1746 1747 1748 1749
    int dmv1_x, dmv1_y, dmv2_x, dmv2_y; /* Differential MV components */
    int k_x, k_y; /* Long MV fixed bitlength */
    int hpel_flag; /* Some MB properties */
    int index, index1; /* LUT indices */
    int val, sign; /* MVDATA temp values */
1750
    
A
Fixes:  
anonymous 已提交
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
    /* Select proper long MV range */
    switch (v->mvrange)
    {
    case 1: k_x = 10; k_y = 9; break;
    case 2: k_x = 12; k_y = 10; break;
    case 3: k_x = 13; k_y = 11; break;
    default: /*case 0 too */ k_x = 9; k_y = 8; break;
    }
    hpel_flag = v->mv_mode & 1; //MV_PMODE is HPEL
    k_x -= hpel_flag;
    k_y -= hpel_flag;

    /* Select ttmb table depending on pq */
    if (v->pq < 5) v->ttmb_vlc = &vc9_ttmb_vlc[0];
    else if (v->pq < 13) v->ttmb_vlc = &vc9_ttmb_vlc[1];
    else v->ttmb_vlc = &vc9_ttmb_vlc[2];

A
anonymous 已提交
1768
    for (s->mb_y=0; s->mb_y<s->mb_height; s->mb_y++)
1769
    {
A
anonymous 已提交
1770
        for (s->mb_x=0; s->mb_x<s->mb_width; s->mb_x++)
1771
        {
A
Fixes:  
anonymous 已提交
1772
            if (v->direct_mb_plane.is_raw)
A
anonymous 已提交
1773
                v->direct_mb_plane.data[current_mb] = get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
1774
            if (v->skip_mb_plane.is_raw)
A
anonymous 已提交
1775
                v->skip_mb_plane.data[current_mb] = get_bits(gb, 1);
A
Fixes:  
anonymous 已提交
1776 1777
            
            if (!v->direct_mb_plane.data[current_mb])
1778
            {
A
Fixes:  
anonymous 已提交
1779
                if (v->skip_mb_plane.data[current_mb])
1780
                {
A
anonymous 已提交
1781
                    b_mv_type = decode012(gb);
A
Fixes:  
anonymous 已提交
1782 1783
                    if (v->bfraction > 420 /*1/2*/ &&
                        b_mv_type < 3) b_mv_type = 1-b_mv_type;
1784 1785 1786 1787
                }
                else
                { 
                    /* FIXME getting tired commenting */
A
Fixes:  
anonymous 已提交
1788
                    GET_MVDATA(dmv1_x, dmv1_y);
1789
                    if (!s->mb_intra /* b_mv1 tells not intra */)
1790 1791
                    {
                        /* FIXME: actually read it */
A
anonymous 已提交
1792
                        b_mv_type = decode012(gb);
A
Fixes:  
anonymous 已提交
1793 1794
                        if (v->bfraction > 420 /*1/2*/ &&
                            b_mv_type < 3) b_mv_type = 1-b_mv_type;
1795 1796 1797
                    }
                }
            }
A
Fixes:  
anonymous 已提交
1798
            if (!v->skip_mb_plane.data[current_mb])
1799
            {
A
Fixes:  
anonymous 已提交
1800
                if (mb_has_coeffs /* BMV1 == "last" */)
1801 1802
                {
                    GET_MQUANT();
1803
                    if (s->mb_intra /* intra mb */)
A
anonymous 已提交
1804
                        s->ac_pred = get_bits(gb, 1);
1805 1806 1807
                }
                else
                {
A
Fixes:  
anonymous 已提交
1808 1809
                    /* if bmv1 tells MVs are interpolated */
                    if (b_mv_type == BMV_TYPE_INTERPOLATED)
1810
                    {
A
Fixes:  
anonymous 已提交
1811
                        GET_MVDATA(dmv2_x, dmv2_y);
1812
                    }
A
Fixes:  
anonymous 已提交
1813 1814
                    /* GET_MVDATA has reset some stuff */
                    if (mb_has_coeffs /* b_mv2 == "last" */)
1815
                    {
1816
                        if (s->mb_intra /* intra_mb */)
A
anonymous 已提交
1817
                            s->ac_pred = get_bits(gb, 1);
1818 1819 1820 1821 1822 1823
                        GET_MQUANT();
                    }
                }
            }
            //End1
            if (v->ttmbf)
A
anonymous 已提交
1824
                ttmb = get_vlc2(gb, v->ttmb_vlc->table,
A
Fixes:  
anonymous 已提交
1825
                                   VC9_TTMB_VLC_BITS, 12);
1826

A
Fixes:  
anonymous 已提交
1827 1828 1829 1830 1831 1832 1833 1834
            //End2
            for (i=0; i<6; i++)
            {
                /* FIXME: process the block */
            }

            current_mb++;
        }
1835 1836 1837 1838 1839 1840 1841
    }
    return 0;
}

#if HAS_ADVANCED_PROFILE
static int advanced_decode_i_mbs(VC9Context *v)
{
A
anonymous 已提交
1842 1843 1844
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &v->s.gb;
    int mqdiff, mquant, current_mb = 0, over_flags_mb = 0;
1845

A
anonymous 已提交
1846
    for (s->mb_y=0; s->mb_y<s->mb_height; s->mb_y++)
1847
    {
A
anonymous 已提交
1848
        for (s->mb_x=0; s->mb_x<s->mb_width; s->mb_x++)
1849
        {
A
anonymous 已提交
1850 1851 1852 1853
            if (v->ac_pred_plane.is_raw)
                s->ac_pred = get_bits(gb, 1);
            else
                s->ac_pred = v->ac_pred_plane.data[current_mb];
A
Fixes:  
anonymous 已提交
1854
            if (v->condover == 3 && v->over_flags_plane.is_raw)
A
anonymous 已提交
1855
                over_flags_mb = get_bits(gb, 1);
1856
            GET_MQUANT();
A
Fixes:  
anonymous 已提交
1857 1858

            /* TODO: lots */
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
        }
        current_mb++;
    }
    return 0;
}
#endif

static int vc9_decode_init(AVCodecContext *avctx)
{
    VC9Context *v = avctx->priv_data;
A
anonymous 已提交
1869
    MpegEncContext *s = &v->s;
1870 1871 1872 1873
    GetBitContext gb;

    if (!avctx->extradata_size || !avctx->extradata) return -1;
    avctx->pix_fmt = PIX_FMT_YUV420P;
A
anonymous 已提交
1874
    v->s.avctx = avctx;
1875

A
anonymous 已提交
1876 1877 1878
    if(ff_h263_decode_init(avctx) < 0)
        return -1;
    if (vc9_init_common(v) < 0) return -1;
1879

A
Fixes:  
anonymous 已提交
1880 1881
    avctx->coded_width = avctx->width;
    avctx->coded_height = avctx->height;
1882 1883 1884 1885
    if (avctx->codec_id == CODEC_ID_WMV3)
    {
        int count = 0;

A
anonymous 已提交
1886 1887 1888 1889
        // looks like WMV3 has a sequence header stored in the extradata
        // advanced sequence header may be before the first frame
        // the last byte of the extradata is a version number, 1 for the
        // samples we can decode
1890

A
anonymous 已提交
1891 1892 1893
        init_get_bits(&gb, avctx->extradata, avctx->extradata_size);
        
        decode_sequence_header(avctx, &gb);
1894

A
anonymous 已提交
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
        count = avctx->extradata_size*8 - get_bits_count(&gb);
        if (count>0)
        {
            av_log(avctx, AV_LOG_INFO, "Extra data: %i bits left, value: %X\n",
                   count, get_bits(&gb, count));
        }
        else
        {
            av_log(avctx, AV_LOG_INFO, "Read %i bits in overflow\n", -count);
        }
1905
    }
A
anonymous 已提交
1906
    avctx->has_b_frames= !!(avctx->max_b_frames);
1907

A
anonymous 已提交
1908 1909
    s->mb_width = (avctx->coded_width+15)>>4;
    s->mb_height = (avctx->coded_height+15)>>4;
1910 1911

    /* Allocate mb bitplanes */
A
anonymous 已提交
1912
    if (alloc_bitplane(&v->mv_type_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
1913
        return -1;
A
anonymous 已提交
1914
    if (alloc_bitplane(&v->mv_type_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
1915
        return -1;
A
anonymous 已提交
1916
    if (alloc_bitplane(&v->skip_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
1917
        return -1;
A
anonymous 已提交
1918
    if (alloc_bitplane(&v->direct_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
1919 1920 1921
        return -1;

    /* For predictors */
A
anonymous 已提交
1922
    v->previous_line_cbpcy = (uint8_t *)av_malloc(s->mb_stride*4);
A
Fixes:  
anonymous 已提交
1923
    if (!v->previous_line_cbpcy) return -1;
1924 1925 1926 1927

#if HAS_ADVANCED_PROFILE
    if (v->profile > PROFILE_MAIN)
    {
A
anonymous 已提交
1928
        if (alloc_bitplane(&v->over_flags_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
1929
            return -1;
A
anonymous 已提交
1930
        if (alloc_bitplane(&v->ac_pred_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
1931
            return -1;
1932 1933 1934 1935
    }
#endif

    return 0;
A
anonymous 已提交
1936
    }
1937 1938 1939 1940 1941 1942

static int vc9_decode_frame(AVCodecContext *avctx,
                            void *data, int *data_size,
                            uint8_t *buf, int buf_size)
{
    VC9Context *v = avctx->priv_data;
A
anonymous 已提交
1943
    MpegEncContext *s = &v->s;
1944 1945 1946
    int ret = FRAME_SKIPED, len, start_code;
    AVFrame *pict = data;
    uint8_t *tmp_buf;
A
anonymous 已提交
1947
    v->s.avctx = avctx;
1948 1949 1950 1951 1952 1953 1954 1955 1956 1957

    //buf_size = 0 -> last frame
    if (!buf_size) return 0;

    len = avpicture_get_size(avctx->pix_fmt, avctx->width,
                             avctx->height);
    tmp_buf = (uint8_t *)av_mallocz(len);
    avpicture_fill((AVPicture *)pict, tmp_buf, avctx->pix_fmt,
                   avctx->width, avctx->height);

A
anonymous 已提交
1958
    if (avctx->codec_id == CODEC_ID_VC9)
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975
    {
#if 0
	// search for IDU's
	// FIXME
	uint32_t scp = 0;
	int scs = 0, i = 0;

	while (i < buf_size)
	{
	    for (; i < buf_size && scp != 0x000001; i++)
		scp = ((scp<<8)|buf[i])&0xffffff;

	    if (scp != 0x000001)
		break; // eof ?
	
	    scs = buf[i++];	

A
anonymous 已提交
1976
	    init_get_bits(gb, buf+i, (buf_size-i)*8);
1977 1978 1979
	
	    switch(scs)
	    {
A
Fixes:  
anonymous 已提交
1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
            case 0x0A: //Sequence End Code
                return 0;
            case 0x0B: //Slice Start Code
                av_log(avctx, AV_LOG_ERROR, "Slice coding not supported\n");
                return -1;
            case 0x0C: //Field start code
                av_log(avctx, AV_LOG_ERROR, "Interlaced coding not supported\n");
                return -1;
            case 0x0D: //Frame start code
                break;
            case 0x0E: //Entry point Start Code
                if (v->profile <= MAIN_PROFILE)
                    av_log(avctx, AV_LOG_ERROR,
                           "Found an entry point in profile %i\n", v->profile);
A
anonymous 已提交
1994
                advanced_entry_point_process(avctx, gb);
A
Fixes:  
anonymous 已提交
1995 1996
                break;
            case 0x0F: //Sequence header Start Code
A
anonymous 已提交
1997
                decode_sequence_header(avctx, gb);
A
Fixes:  
anonymous 已提交
1998 1999 2000 2001 2002
                break;
            default:
                av_log(avctx, AV_LOG_ERROR,
                       "Unsupported IDU suffix %lX\n", scs);
            }
2003
	    
A
anonymous 已提交
2004
	    i += get_bits_count(gb)*8;
2005 2006 2007 2008 2009
	}
#else
	av_abort();
#endif
    }
A
anonymous 已提交
2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147
    else
        init_get_bits(&v->s.gb, buf, buf_size*8);

    s->flags= avctx->flags;
    s->flags2= avctx->flags2;

    /* no supplementary picture */
    if (buf_size == 0) {
        /* special case for last picture */
        if (s->low_delay==0 && s->next_picture_ptr) {
            *pict= *(AVFrame*)s->next_picture_ptr;
            s->next_picture_ptr= NULL;

            *data_size = sizeof(AVFrame);
        }

        return 0;
    }

    //No IDU - we mimic ff_h263_decode_frame
    s->bitstream_buffer_size=0;
        
    if (!s->context_initialized) {
        if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
            return -1;
    }
    
    //we need to set current_picture_ptr before reading the header, otherwise we cant store anyting im there
    if(s->current_picture_ptr==NULL || s->current_picture_ptr->data[0]){
        s->current_picture_ptr= &s->picture[ff_find_unused_picture(s, 0)];
    }
#if HAS_ADVANCED_PROFILE
    if (v->profile > PROFILE_MAIN)
        ret= advanced_decode_picture_primary_header(v);
    else
#endif
        ret= standard_decode_picture_primary_header(v);
    if (ret == FRAME_SKIPED) return buf_size;
    /* skip if the header was thrashed */
    if (ret < 0){
        av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
        return -1;
    }

    //No bug workaround yet, no DCT conformance

    //WMV9 does have resized images
    if (v->profile <= PROFILE_MAIN && v->multires){
        //Parse context stuff in here, don't know how appliable it is
    }
    //Not sure about context initialization

    // for hurry_up==5
    s->current_picture.pict_type= s->pict_type;
    s->current_picture.key_frame= s->pict_type == I_TYPE;

    /* skip b frames if we dont have reference frames */
    if(s->last_picture_ptr==NULL && (s->pict_type==B_TYPE || s->dropable))
        return buf_size; //FIXME simulating all buffer consumed
    /* skip b frames if we are in a hurry */
    if(avctx->hurry_up && s->pict_type==B_TYPE)
        return buf_size; //FIXME simulating all buffer consumed
    /* skip everything if we are in a hurry>=5 */
    if(avctx->hurry_up>=5)
        return buf_size; //FIXME simulating all buffer consumed
    
    if(s->next_p_frame_damaged){
        if(s->pict_type==B_TYPE)
            return buf_size; //FIXME simulating all buffer consumed
        else
            s->next_p_frame_damaged=0;
    }

    if(MPV_frame_start(s, avctx) < 0)
        return -1;

    ff_er_frame_start(s);

    //wmv9 may or may not have skip bits
#if HAS_ADVANCED_PROFILE
    if (v->profile > PROFILE_MAIN)
        ret= advanced_decode_picture_secondary_header(v);
    else
#endif
        ret = standard_decode_picture_secondary_header(v);
    if (ret<0) return FRAME_SKIPED; //FIXME Non fatal for now

    //We consider the image coded in only one slice
#if HAS_ADVANCED_PROFILE
    if (v->profile > PROFILE_MAIN)
    {
        switch(s->pict_type)
        {
            case I_TYPE: ret = advanced_decode_i_mbs(v); break;
            case P_TYPE: ret = decode_p_mbs(v); break;
            case B_TYPE:
            case BI_TYPE: ret = decode_b_mbs(v); break;
            default: ret = FRAME_SKIPED;
        }
        if (ret == FRAME_SKIPED) return buf_size; //We ignore for now failures
    }
    else
#endif
    {
        switch(s->pict_type)
        {
            case I_TYPE: ret = standard_decode_i_mbs(v); break;
            case P_TYPE: ret = decode_p_mbs(v); break;
            case B_TYPE:
            case BI_TYPE: ret = decode_b_mbs(v); break;
            default: ret = FRAME_SKIPED;
        }
        if (ret == FRAME_SKIPED) return buf_size;
    }

    ff_er_frame_end(s);

    MPV_frame_end(s);

    assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);
    assert(s->current_picture.pict_type == s->pict_type);
    if(s->pict_type==B_TYPE || s->low_delay){
        *pict= *(AVFrame*)&s->current_picture;
        ff_print_debug_info(s, pict);
    } else {
        *pict= *(AVFrame*)&s->last_picture;
        if(pict)
            ff_print_debug_info(s, pict);
    }

    /* Return the Picture timestamp as the frame number */
    /* we substract 1 because it is added on utils.c    */
    avctx->frame_number = s->picture_number - 1;

    /* dont output the last pic after seeking */
    if(s->last_picture_ptr || s->low_delay)
        *data_size = sizeof(AVFrame);

A
Fixes:  
anonymous 已提交
2148
    av_log(avctx, AV_LOG_DEBUG, "Consumed %i/%i bits\n",
A
anonymous 已提交
2149
           get_bits_count(&s->gb), buf_size*8);
2150 2151

    /* Fake consumption of all data */
A
Fixes:  
anonymous 已提交
2152
    *data_size = len;
2153 2154 2155 2156 2157 2158 2159 2160
    return buf_size; //Number of bytes consumed
}

static int vc9_decode_end(AVCodecContext *avctx)
{
    VC9Context *v = avctx->priv_data;

#if HAS_ADVANCED_PROFILE
2161 2162
    av_freep(&v->hrd_rate);
    av_freep(&v->hrd_buffer);
2163
#endif
A
anonymous 已提交
2164 2165 2166 2167
    MPV_common_end(&v->s);
    free_bitplane(&v->mv_type_mb_plane);
    free_bitplane(&v->skip_mb_plane);
    free_bitplane(&v->direct_mb_plane);
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179
    return 0;
}

AVCodec vc9_decoder = {
    "vc9",
    CODEC_TYPE_VIDEO,
    CODEC_ID_VC9,
    sizeof(VC9Context),
    vc9_decode_init,
    NULL,
    vc9_decode_end,
    vc9_decode_frame,
2180
    CODEC_CAP_DELAY,
2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192
    NULL
};

AVCodec wmv3_decoder = {
    "wmv3",
    CODEC_TYPE_VIDEO,
    CODEC_ID_WMV3,
    sizeof(VC9Context),
    vc9_decode_init,
    NULL,
    vc9_decode_end,
    vc9_decode_frame,
2193
    CODEC_CAP_DELAY,
2194 2195
    NULL
};