vc1.c 82.1 KB
Newer Older
1
/*
2
 * VC-1 and WMV3 decoder
3 4
 * 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
 *
 * 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
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 21 22 23
 *
 */

/**
24 25
 * @file vc1.c
 * VC-1 and WMV3 decoder
26
 *
27
 * TODO: most AP stuff, optimize, most of MB layer, transform, filtering and motion compensation, etc
28 29 30 31 32 33
 * TODO: use MPV_ !!
 */
#include "common.h"
#include "dsputil.h"
#include "avcodec.h"
#include "mpegvideo.h"
34
#include "vc1data.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

/* Some inhibiting stuff */
48
#define HAS_ADVANCED_PROFILE   0
49 50 51 52 53 54 55 56
#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
    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

A
anonymous 已提交
67 68
/** Available Profiles */
//@{
69 70
#define PROFILE_SIMPLE   0
#define PROFILE_MAIN     1
71
#define PROFILE_COMPLEX  2 ///< TODO: WMV9 specific
72
#define PROFILE_ADVANCED 3
A
anonymous 已提交
73
//@}
74

A
anonymous 已提交
75 76
/** Sequence quantizer mode */
//@{
77 78 79 80
#define QUANT_FRAME_IMPLICIT   0 ///< Implicitly specified at frame level
#define QUANT_FRAME_EXPLICIT   1 ///< Explicitly specified at frame level
#define QUANT_NON_UNIFORM      2 ///< Non-uniform quant used for all frames
#define QUANT_UNIFORM          3 ///< Uniform quant used for all frames
A
anonymous 已提交
81
//@}
82

A
anonymous 已提交
83 84
/** Where quant can be changed */
//@{
85 86 87 88
#define DQPROFILE_FOUR_EDGES   0
#define DQPROFILE_DOUBLE_EDGES 1
#define DQPROFILE_SINGLE_EDGE  2
#define DQPROFILE_ALL_MBS      3
A
anonymous 已提交
89
//@}
90

A
anonymous 已提交
91 92 93 94
/** @name Where quant can be changed
 */
//@{
#define DQPROFILE_FOUR_EDGES   0
95 96 97 98
#define DQSINGLE_BEDGE_LEFT   0
#define DQSINGLE_BEDGE_TOP    1
#define DQSINGLE_BEDGE_RIGHT  2
#define DQSINGLE_BEDGE_BOTTOM 3
A
anonymous 已提交
99
//@}
100

A
anonymous 已提交
101 102
/** Which pair of edges is quantized with ALTPQUANT */
//@{
103 104 105 106
#define DQDOUBLE_BEDGE_TOPLEFT     0
#define DQDOUBLE_BEDGE_TOPRIGHT    1
#define DQDOUBLE_BEDGE_BOTTOMRIGHT 2
#define DQDOUBLE_BEDGE_BOTTOMLEFT  3
A
anonymous 已提交
107
//@}
108

A
anonymous 已提交
109 110
/** MV modes for P frames */
//@{
111 112 113 114 115
#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
anonymous 已提交
116
//@}
117

A
anonymous 已提交
118 119 120
/** @name MV types for B frames */
//@{
#define BMV_TYPE_BACKWARD          0
A
Fixes:  
anonymous 已提交
121 122 123
#define BMV_TYPE_BACKWARD          0
#define BMV_TYPE_FORWARD           1
#define BMV_TYPE_INTERPOLATED      3
A
anonymous 已提交
124
//@}
A
Fixes:  
anonymous 已提交
125

A
anonymous 已提交
126
/** MV P mode - the 5th element is only used for mode 1 */
127 128 129 130 131
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 }
};

A
anonymous 已提交
132
/** One more frame type */
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
#define BI_TYPE 7

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
  }
};

152
/** @name VC-1 VLC tables and defines
A
anonymous 已提交
153 154 155
 *  @todo TODO move this into the context
 */
//@{
156 157 158 159 160 161 162 163
#define VC1_BFRACTION_VLC_BITS 7
static VLC vc1_bfraction_vlc;
#define VC1_IMODE_VLC_BITS 4
static VLC vc1_imode_vlc;
#define VC1_NORM2_VLC_BITS 3
static VLC vc1_norm2_vlc;
#define VC1_NORM6_VLC_BITS 9
static VLC vc1_norm6_vlc;
164
/* Could be optimized, one table only needs 8 bits */
165 166 167 168 169 170 171 172 173 174 175 176
#define VC1_TTMB_VLC_BITS 9 //12
static VLC vc1_ttmb_vlc[3];
#define VC1_MV_DIFF_VLC_BITS 9 //15
static VLC vc1_mv_diff_vlc[4];
#define VC1_CBPCY_P_VLC_BITS 9 //14
static VLC vc1_cbpcy_p_vlc[4];
#define VC1_4MV_BLOCK_PATTERN_VLC_BITS 6
static VLC vc1_4mv_block_pattern_vlc[4];
#define VC1_TTBLK_VLC_BITS 5
static VLC vc1_ttblk_vlc[3];
#define VC1_SUBBLKPAT_VLC_BITS 6
static VLC vc1_subblkpat_vlc[3];
A
anonymous 已提交
177
//@}
A
Fixes:  
anonymous 已提交
178

A
anonymous 已提交
179 180 181 182 183 184
/** Bitplane struct
 * We mainly need data and is_raw, so this struct could be avoided
 * to save a level of indirection; feel free to modify
 * @fixme For now, stride=width
 * @warning Data are bits, either 1 or 0
 */
A
Fixes:  
anonymous 已提交
185
typedef struct BitPlane {
A
anonymous 已提交
186 187 188 189 190
    uint8_t *data;      ///< Data buffer
    int width;          ///< Width of the buffer
    int stride;         ///< Stride of the buffer
    int height;         ///< Plane height
    uint8_t is_raw;     ///< Bit values must be read at MB level
A
Fixes:  
anonymous 已提交
191
} BitPlane;
192

193
/** The VC1 Context
194 195 196
 * @fixme Change size wherever another size is more efficient
 * Many members are only used for Advanced Profile
 */
197
typedef struct VC1Context{
A
anonymous 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211
    MpegEncContext s;

    /** Simple/Main Profile sequence header */
    //@{
    int res_sm;           ///< reserved, 2b
    int res_x8;           ///< reserved
    int multires;         ///< frame-level RESPIC syntax element present
    int res_fasttx;       ///< reserved, always 1
    int res_transtab;     ///< reserved, always 0
    int rangered;         ///< RANGEREDFRM (range reduction) syntax element present
                          ///< at frame level
    int res_rtm_flag;     ///< reserved, set to 1
    int reserved;         ///< reserved
    //@}
212 213

#if HAS_ADVANCED_PROFILE
A
anonymous 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
    /** Advanced Profile */
    //@{
    int level;            ///< 3bits, for Advanced/Simple Profile, provided by TS layer
    int chromaformat;     ///< 2bits, 2=4:2:0, only defined
    int postprocflag;     ///< Per-frame processing suggestion flag present
    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} present
    int extended_dmv;     ///< Additional extended dmv range at P/B frame-level
    int color_prim;       ///< 8bits, chroma coordinates of the color primaries
    int transfer_char;    ///< 8bits, Opto-electronic transfer characteristics
    int matrix_coef;      ///< 8bits, Color primaries->YCbCr transform matrix
    int hrd_param_flag;   ///< Presence of Hypothetical Reference
                          ///< Decoder parameters
    //@}
230 231 232
#endif


A
anonymous 已提交
233 234 235 236 237
    /** Sequence header data for all Profiles
     * TODO: choose between ints, uint8_ts and monobit flags
     */
    //@{
    int profile;          ///< 2bits, Profile
238
    int frmrtq_postproc;  ///< 3bits,
A
anonymous 已提交
239 240 241 242 243 244 245 246 247 248 249 250 251 252
    int bitrtq_postproc;  ///< 5bits, quantized framerate-based postprocessing strength
    int fastuvmc;         ///< Rounding of qpel vector to hpel ? (not in Simple)
    int extended_mv;      ///< Ext MV in P/B (not in Simple)
    int dquant;           ///< How qscale varies with MBs, 2bits (not in Simple)
    int vstransform;      ///< variable-size [48]x[48] transform type + info
    int overlap;          ///< overlapped transforms in use
    int quantizer_mode;   ///< 2bits, quantizer mode used for sequence, see QUANT_*
    int finterpflag;      ///< INTERPFRM present
    //@}

    /** Frame decoding info for all profiles */
    //@{
    uint8_t mv_mode;      ///< MV coding monde
    uint8_t mv_mode2;     ///< Secondary MV coding mode (B frames)
253 254
    int k_x;              ///< Number of bits for MVs (depends on MV range)
    int k_y;              ///< Number of bits for MVs (depends on MV range)
A
anonymous 已提交
255 256 257 258 259 260 261 262
    uint8_t pq, altpq;    ///< Current/alternate frame quantizer scale
    /** pquant parameters */
    //@{
    uint8_t dquantfrm;
    uint8_t dqprofile;
    uint8_t dqsbedge;
    uint8_t dqbilevel;
    //@}
263 264 265 266 267 268 269
    /** AC coding set indexes
     * @see 8.1.1.10, p(1)10
     */
    //@{
    int c_ac_table_index; ///< Chroma index from ACFRM element
    int y_ac_table_index; ///< Luma index from AC2FRM element
    //@}
A
anonymous 已提交
270
    int ttfrm;            ///< Transform type info present at frame level
271 272 273
    uint8_t ttmbf;        ///< Transform type flag
    int ttmb;             ///< Transform type
    uint8_t ttblk4x4;     ///< Value of ttblk which indicates a 4x4 transform
A
anonymous 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
    /** Luma compensation parameters */
    //@{
    uint8_t lumscale;
    uint8_t lumshift;
    //@}
    int16_t bfraction;    ///< Relative position % anchors=> how to scale MVs
    uint8_t halfpq;       ///< Uniform quant over image and qp+.5
    uint8_t respic;       ///< Frame-level flag for resized images
    int buffer_fullness;  ///< HRD info
    /** 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;
290
    uint8_t pquantizer;           ///< Uniform (over sequence) quantizer in use
A
anonymous 已提交
291
    uint8_t *previous_line_cbpcy; ///< To use for predicted CBPCY
292 293
    VLC *cbpcy_vlc;               ///< CBPCY VLC table
    int tt_index;                 ///< Index for Transform Type tables
A
anonymous 已提交
294 295 296 297 298 299 300 301 302
    BitPlane mv_type_mb_plane;    ///< bitplane for mv_type == (4MV)
    BitPlane skip_mb_plane;       ///< bitplane for skipped MBs
    BitPlane direct_mb_plane;     ///< bitplane for "direct" MBs

    /** Frame decoding info for S/M profiles only */
    //@{
    uint8_t rangeredfrm; ///< out_sample = CLIP((in_sample-128)*2+128)
    uint8_t interpfrm;
    //@}
303 304

#if HAS_ADVANCED_PROFILE
A
anonymous 已提交
305 306 307 308 309 310
    /** Frame decoding info for Advanced profile */
    //@{
    uint8_t fcm; ///< 0->Progressive, 2->Frame-Interlace, 3->Field-Interlace
    uint8_t numpanscanwin;
    uint8_t tfcntr;
    uint8_t rptfrm, tff, rff;
311 312 313 314
    uint16_t topleftx;
    uint16_t toplefty;
    uint16_t bottomrightx;
    uint16_t bottomrighty;
A
anonymous 已提交
315 316 317 318 319 320 321 322 323
    uint8_t uvsamp;
    uint8_t postproc;
    int hrd_num_leaky_buckets;
    uint8_t bit_rate_exponent;
    uint8_t buffer_size_exponent;
    BitPlane ac_pred_plane;       ///< AC prediction flags bitplane
    BitPlane over_flags_plane;    ///< Overflags bitplane
    uint8_t condover;
    uint16_t *hrd_rate, *hrd_buffer;
324 325 326 327 328
    uint8_t *hrd_fullness;
    uint8_t range_mapy_flag;
    uint8_t range_mapuv_flag;
    uint8_t range_mapy;
    uint8_t range_mapuv;
A
anonymous 已提交
329
    //@}
330
#endif
331
} VC1Context;
332

A
anonymous 已提交
333 334 335 336 337 338 339 340
/**
 * Get unary code of limited length
 * @fixme FIXME Slow and ugly
 * @param gb GetBitContext
 * @param[in] stop The bitstop value (unary code of 1's or 0's)
 * @param[in] len Maximum length
 * @return Unary length/index
 */
341 342
static int get_prefix(GetBitContext *gb, int stop, int len)
{
A
Fixes:  
anonymous 已提交
343
#if 1
344 345 346 347 348 349 350
  int i = 0, tmp = !stop;

  while (i != len && tmp != stop)
  {
    tmp = get_bits(gb, 1);
    i++;
  }
351
  if (i == len && tmp != stop) return len+1;
352
  return i;
A
Fixes:  
anonymous 已提交
353 354 355 356 357 358 359 360
#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;
I
Ivan Kalvachev 已提交
361

A
Fixes:  
anonymous 已提交
362 363 364 365 366 367
  log= av_log2(-buf); //FIXME: -?
  if (log < limit){
    LAST_SKIP_BITS(re, gb, log+1);
    CLOSE_READER(re, gb);
    return log;
  }
I
Ivan Kalvachev 已提交
368

A
Fixes:  
anonymous 已提交
369 370 371 372 373 374
  LAST_SKIP_BITS(re, gb, limit);
  CLOSE_READER(re, gb);
  return limit;
#endif
}

A
anonymous 已提交
375
/**
376 377
 * Init VC-1 specific tables and VC1Context members
 * @param v The VC1Context to initialize
A
anonymous 已提交
378 379
 * @return Status
 */
380
static int vc1_init_common(VC1Context *v)
381 382
{
    static int done = 0;
383
    int i = 0;
384

A
Fixes:  
anonymous 已提交
385 386 387 388
    /* Set the bit planes */
    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 };
389
#if HAS_ADVANCED_PROFILE
A
Fixes:  
anonymous 已提交
390
    v->ac_pred_plane = v->over_flags_plane = (struct BitPlane) { NULL, 0, 0, 0 };
391
    v->hrd_rate = v->hrd_buffer = NULL;
392
#endif
A
Fixes:  
anonymous 已提交
393 394

    /* VLC tables */
395
#if 0 // spec -> actual tables converter
396
    for(i=0; i<64; i++){
397
        int code= (vc1_norm6_spec[i][1] << vc1_norm6_spec[i][4]) + vc1_norm6_spec[i][3];
398 399 400 401
        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++){
402
        int code= vc1_norm6_spec[i][2] + vc1_norm6_spec[i][4];
403 404 405
        av_log(NULL, AV_LOG_DEBUG, "%2d, ", code);
        if(i%16==15) av_log(NULL, AV_LOG_DEBUG, "\n");
    }
406 407 408 409
#endif
    if(!done)
    {
        done = 1;
410 411 412 413 414 415 416 417 418 419 420 421
        INIT_VLC(&vc1_bfraction_vlc, VC1_BFRACTION_VLC_BITS, 23,
                 vc1_bfraction_bits, 1, 1,
                 vc1_bfraction_codes, 1, 1, 1);
        INIT_VLC(&vc1_norm2_vlc, VC1_NORM2_VLC_BITS, 4,
                 vc1_norm2_bits, 1, 1,
                 vc1_norm2_codes, 1, 1, 1);
        INIT_VLC(&vc1_norm6_vlc, VC1_NORM6_VLC_BITS, 64,
                 vc1_norm6_bits, 1, 1,
                 vc1_norm6_codes, 2, 2, 1);
        INIT_VLC(&vc1_imode_vlc, VC1_IMODE_VLC_BITS, 7,
                 vc1_imode_bits, 1, 1,
                 vc1_imode_codes, 1, 1, 1);
A
Fixes:  
anonymous 已提交
422 423
        for (i=0; i<3; i++)
        {
424 425 426 427 428 429 430 431 432
            INIT_VLC(&vc1_ttmb_vlc[i], VC1_TTMB_VLC_BITS, 16,
                     vc1_ttmb_bits[i], 1, 1,
                     vc1_ttmb_codes[i], 2, 2, 1);
            INIT_VLC(&vc1_ttblk_vlc[i], VC1_TTBLK_VLC_BITS, 8,
                     vc1_ttblk_bits[i], 1, 1,
                     vc1_ttblk_codes[i], 1, 1, 1);
            INIT_VLC(&vc1_subblkpat_vlc[i], VC1_SUBBLKPAT_VLC_BITS, 15,
                     vc1_subblkpat_bits[i], 1, 1,
                     vc1_subblkpat_codes[i], 1, 1, 1);
A
Fixes:  
anonymous 已提交
433 434
        }
        for(i=0; i<4; i++)
435
        {
436 437 438 439 440 441 442 443 444
            INIT_VLC(&vc1_4mv_block_pattern_vlc[i], VC1_4MV_BLOCK_PATTERN_VLC_BITS, 16,
                     vc1_4mv_block_pattern_bits[i], 1, 1,
                     vc1_4mv_block_pattern_codes[i], 1, 1, 1);
            INIT_VLC(&vc1_cbpcy_p_vlc[i], VC1_CBPCY_P_VLC_BITS, 64,
                     vc1_cbpcy_p_bits[i], 1, 1,
                     vc1_cbpcy_p_codes[i], 2, 2, 1);
            INIT_VLC(&vc1_mv_diff_vlc[i], VC1_MV_DIFF_VLC_BITS, 73,
                     vc1_mv_diff_bits[i], 1, 1,
                     vc1_mv_diff_codes[i], 2, 2, 1);
445 446 447
        }
    }

A
Fixes:  
anonymous 已提交
448 449 450 451
    /* Other defaults */
    v->pq = -1;
    v->mvrange = 0; /* 7.1.1.18, p80 */

452 453 454 455
    return 0;
}

#if HAS_ADVANCED_PROFILE
A
anonymous 已提交
456 457 458
/**
 * Decode sequence header's Hypothetic Reference Decoder data
 * @see 6.2.1, p32
459
 * @param v The VC1Context to initialize
A
anonymous 已提交
460 461 462
 * @param gb A GetBitContext initialized from AVCodecContext extra_data
 * @return Status
 */
463
static int decode_hrd(VC1Context *v, GetBitContext *gb)
464 465 466
{
    int i, num;

467
    num = 1 + get_bits(gb, 5);
468

469
    /*hrd rate*/
470 471
    if (v->hrd_rate || num != v->hrd_num_leaky_buckets)
    {
472
        av_freep(&v->hrd_rate);
473
    }
A
Fixes:  
anonymous 已提交
474
    if (!v->hrd_rate) v->hrd_rate = av_malloc(num*sizeof(uint16_t));
475 476
    if (!v->hrd_rate) return -1;

477
    /*hrd buffer*/
478 479
    if (v->hrd_buffer || num != v->hrd_num_leaky_buckets)
    {
480
        av_freep(&v->hrd_buffer);
481
    }
A
Fixes:  
anonymous 已提交
482
    if (!v->hrd_buffer) v->hrd_buffer = av_malloc(num*sizeof(uint16_t));
483 484 485 486 487
    if (!v->hrd_buffer)
    {
        av_freep(&v->hrd_rate);
        return -1;
    }
488

489 490 491 492 493 494 495 496 497 498 499 500
    /*hrd fullness*/
    if (v->hrd_fullness || num != v->hrd_num_leaky_buckets)
    {
        av_freep(&v->hrd_buffer);
    }
    if (!v->hrd_fullness) v->hrd_fullness = av_malloc(num*sizeof(uint8_t));
    if (!v->hrd_fullness)
    {
        av_freep(&v->hrd_rate);
        av_freep(&v->hrd_buffer);
        return -1;
    }
501 502 503
    v->hrd_num_leaky_buckets = num;

    //exponent in base-2 for rate
504
    v->bit_rate_exponent = 6 + get_bits(gb, 4);
505
    //exponent in base-2 for buffer_size
506
    v->buffer_size_exponent = 4 + get_bits(gb, 4);
507 508 509 510

    for (i=0; i<num; i++)
    {
        //mantissae, ordered (if not, use a function ?
511
        v->hrd_rate[i] = 1 + get_bits(gb, 16);
512 513
        if (i && v->hrd_rate[i-1]>=v->hrd_rate[i])
        {
514
            av_log(v->s.avctx, AV_LOG_ERROR, "HDR Rates aren't strictly increasing:"
515 516 517
                   "%i vs %i\n", v->hrd_rate[i-1], v->hrd_rate[i]);
            return -1;
        }
518
        v->hrd_buffer[i] = 1 + get_bits(gb, 16);
519 520
        if (i && v->hrd_buffer[i-1]<v->hrd_buffer[i])
        {
521
            av_log(v->s.avctx, AV_LOG_ERROR, "HDR Buffers aren't decreasing:"
522 523 524 525 526 527 528
                   "%i vs %i\n", v->hrd_buffer[i-1], v->hrd_buffer[i]);
            return -1;
        }
    }
    return 0;
}

A
anonymous 已提交
529 530 531 532
/**
 * Decode sequence header for Advanced Profile
 * @see Table 2, p18
 * @see 6.1.7, pp21-27
533
 * @param v The VC1Context to initialize
A
anonymous 已提交
534 535 536
 * @param gb A GetBitContext initialized from AVCodecContext extra_data
 * @return Status
 */
537 538
static int decode_advanced_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
{
539
    VC1Context *v = avctx->priv_data;
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
    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 已提交
559
    /* 6.1.7, p21 */
560 561
    if (get_bits(gb, 1) /* pic_size_flag */)
    {
562 563
        avctx->coded_width = get_bits(gb, 12) << 1;
        avctx->coded_height = get_bits(gb, 12) << 1;
564 565 566 567 568 569
        if ( get_bits(gb, 1) /* disp_size_flag */)
        {
            avctx->width = get_bits(gb, 14);
            avctx->height = get_bits(gb, 14);
        }

570
        /* 6.1.7.4, p23 */
571 572 573 574 575
        if ( get_bits(gb, 1) /* aspect_ratio_flag */)
        {
            aspect_ratio = get_bits(gb, 4); //SAR
            if (aspect_ratio == 0x0F) //FF_ASPECT_EXTENDED
            {
576 577
                avctx->sample_aspect_ratio.num = 1 + get_bits(gb, 8);
                avctx->sample_aspect_ratio.den = 1 + get_bits(gb, 8);
578 579 580 581 582 583 584
            }
            else if (aspect_ratio == 0x0E)
            {
                av_log(avctx, AV_LOG_DEBUG, "Reserved AR found\n");
            }
            else
            {
585
              avctx->sample_aspect_ratio = vc1_pixel_aspect[aspect_ratio];
586 587 588 589 590 591 592 593 594
            }
        }
    }
    else
    {
        avctx->coded_width = avctx->width;
        avctx->coded_height = avctx->height;
    }

A
Fixes:  
anonymous 已提交
595
    /* 6.1.8, p23 */
596
    if ( get_bits(gb, 1) /* framerateflag */)
597
    {
598
        if ( !get_bits(gb, 1) /* framerateind */)
599 600 601 602 603 604 605 606 607 608 609 610
        {
            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);
611
                nr = 5; /* overflow protection */
I
Ivan Kalvachev 已提交
612
            }
613 614 615
            if (dr<1)
            {
                av_log(avctx, AV_LOG_ERROR, "0 is forbidden for FRAMERATEDR\n");
616
                return -1;
I
Ivan Kalvachev 已提交
617
            }
618 619 620 621
            if (dr>2)
            {
                av_log(avctx, AV_LOG_ERROR,
                       "Reserved FRAMERATEDR %i not handled\n", dr);
622
                dr = 2; /* overflow protection */
623
            }
624 625
            avctx->time_base.num = fps_nr[dr - 1];
            avctx->time_base.den = fps_nr[nr - 1];
626 627 628 629 630
        }
        else
        {
            nr = get_bits(gb, 16);
            // 0.03125->2048Hz / 0.03125Hz
631 632
            avctx->time_base.den = 1000000;
            avctx->time_base.num = 31250*(1+nr);
633 634 635
        }
    }

A
Fixes:  
anonymous 已提交
636
    /* 6.1.9, p25 */
637 638 639 640 641 642 643
    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)
        {
644
            av_log(avctx, AV_LOG_ERROR, "0 for COLOR_PRIM is forbidden\n");
645 646 647 648 649 650 651 652 653 654 655
            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);
656 657 658 659 660
        if (v->transfer_char < 1)
        {
            av_log(avctx, AV_LOG_ERROR, "0 for TRAMSFER_CHAR is forbidden\n");
            return -1;
        }
661 662 663 664 665 666 667 668 669
        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);
670 671 672 673 674 675
        if (v->matrix_coef < 1)
        {
            av_log(avctx, AV_LOG_ERROR, "0 for MATRIX_COEF is forbidden\n");
            return -1;
        }
        if ((v->matrix_coef > 2 && v->matrix_coef < 6) || v->matrix_coef > 7)
676 677 678 679 680 681 682 683 684 685 686 687 688 689
        {
            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;
    }

690 691 692 693
    /*reset scaling ranges, 6.2.2 & 6.2.3, p33*/
    v->range_mapy_flag = 0;
    v->range_mapuv_flag = 0;

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

699
/**
A
anonymous 已提交
700 701 702 703 704 705
 * Decode Simple/Main Profiles sequence header
 * @see Figure 7-8, p16-17
 * @param avctx Codec context
 * @param gb GetBit context initialized from Codec context extra_data
 * @return Status
 */
706 707
static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
{
708
    VC1Context *v = avctx->priv_data;
709

710
    av_log(avctx, AV_LOG_DEBUG, "Header: %0X\n", show_bits(gb, 32));
711
    v->profile = get_bits(gb, 2);
712
    if (v->profile == 2)
713 714 715 716
    {
        av_log(avctx, AV_LOG_ERROR, "Profile value 2 is forbidden\n");
        return -1;
    }
717 718

#if HAS_ADVANCED_PROFILE
719
    if (v->profile == PROFILE_ADVANCED)
720 721
    {
        v->level = get_bits(gb, 3);
722 723 724 725
        if(v->level >= 5)
        {
            av_log(avctx, AV_LOG_ERROR, "Reserved LEVEL %i\n",v->level);
        }
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
        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);
742
            return -1;
743 744 745 746 747 748 749
        }
    }

    // (fps-2)/4 (->30)
    v->frmrtq_postproc = get_bits(gb, 3); //common
    // (bitrate-32kbps)/64kbps
    v->bitrtq_postproc = get_bits(gb, 5); //common
750
    v->s.loop_filter = get_bits(gb, 1); //common
751 752 753 754 755
    if(v->s.loop_filter == 1 && v->profile == PROFILE_SIMPLE)
    {
        av_log(avctx, AV_LOG_ERROR,
               "LOOPFILTER shell not be enabled in simple profile\n");
    }
756 757

#if HAS_ADVANCED_PROFILE
758
    if (v->profile < PROFILE_ADVANCED)
759 760 761 762 763 764 765
#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");
766
            //return -1;
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
        }
        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
I
Ivan Kalvachev 已提交
794

795
#if HAS_ADVANCED_PROFILE
796
    if (v->profile < PROFILE_ADVANCED)
797 798 799 800 801 802 803 804 805 806 807 808 809 810
#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
811
    if (v->profile < PROFILE_ADVANCED)
812 813
#endif
    {
A
anonymous 已提交
814
        v->s.resync_marker = get_bits(gb, 1);
815
        v->rangered = get_bits(gb, 1);
816 817 818
        if (v->rangered && v->profile == PROFILE_SIMPLE)
        {
            av_log(avctx, AV_LOG_DEBUG,
I
Ivan Kalvachev 已提交
819
                   "RANGERED should be set to 0 in simple profile\n");
820
        }
821 822
    }

A
anonymous 已提交
823
    v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common
824 825 826
    v->quantizer_mode = get_bits(gb, 2); //common

#if HAS_ADVANCED_PROFILE
827
    if (v->profile < PROFILE_ADVANCED)
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
#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,
A
anonymous 已提交
845
               v->s.loop_filter, v->multires, v->fastuvmc, v->extended_mv,
A
anonymous 已提交
846
               v->rangered, v->vstransform, v->overlap, v->s.resync_marker,
847 848
               v->dquant, v->quantizer_mode, avctx->max_b_frames
               );
A
Fixes:  
anonymous 已提交
849
        return 0;
850 851 852
#endif
    }
#if HAS_ADVANCED_PROFILE
A
Fixes:  
anonymous 已提交
853
    else return decode_advanced_sequence_header(avctx, gb);
854 855 856 857 858
#endif
}


#if HAS_ADVANCED_PROFILE
A
anonymous 已提交
859 860 861 862 863
/** Entry point decoding (Advanced Profile)
 * @param avctx Codec context
 * @param gb GetBit context initialized from avctx->extra_data
 * @return Status
 */
864 865
static int advanced_entry_point_process(AVCodecContext *avctx, GetBitContext *gb)
{
866
    VC1Context *v = avctx->priv_data;
867
    int i;
868 869 870 871 872 873 874 875 876 877
    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");
878
        assert(v->hrd_num_leaky_buckets > 0);
879
        for (i=0; i<v->hrd_num_leaky_buckets; i++)
880
            v->hrd_fullness[i] = get_bits(gb, 8);
881
    }
882
    if ((v->range_mapy_flag = get_bits(gb, 1)))
883 884 885
    {
        //RANGE_MAPY
        av_log(avctx, AV_LOG_DEBUG, "RANGE_MAPY\n");
886
        v->range_mapy = get_bits(gb, 3);
887
    }
888
    if ((v->range_mapuv_flag = get_bits(gb, 1)))
889 890 891
    {
        //RANGE_MAPUV
        av_log(avctx, AV_LOG_DEBUG, "RANGE_MAPUV\n");
892
        v->range_mapuv = get_bits(gb, 3);
893 894 895 896 897 898 899 900 901 902 903
    }
    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
anonymous 已提交
904 905
/***********************************************************************/
/**
906
 * @defgroup bitplane VC1 Bitplane decoding
A
anonymous 已提交
907 908 909 910 911 912 913 914
 * @see 8.7, p56
 * @{
 */

/** @addtogroup bitplane
 * Imode types
 * @{
 */
915 916 917 918 919 920 921
#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
anonymous 已提交
922 923 924 925 926 927 928 929 930 931
/** @} */ //imode defines

/** Allocate the buffer from a bitplane, given its dimensions
 * @param bp Bitplane which buffer is to allocate
 * @param[in] width Width of the buffer
 * @param[in] height Height of the buffer
 * @return Status
 * @todo TODO: Take into account stride
 * @todo TODO: Allow use of external buffers ?
 */
D
Dieter 已提交
932
static int alloc_bitplane(BitPlane *bp, int width, int height)
A
Fixes:  
anonymous 已提交
933 934 935 936
{
    if (!bp || bp->width<0 || bp->height<0) return -1;
    bp->data = (uint8_t*)av_malloc(width*height);
    if (!bp->data) return -1;
937
    bp->width = bp->stride = width;
A
Fixes:  
anonymous 已提交
938 939 940
    bp->height = height;
    return 0;
}
941

A
anonymous 已提交
942 943 944
/** Free the bitplane's buffer
 * @param bp Bitplane which buffer is to free
 */
D
Dieter 已提交
945
static void free_bitplane(BitPlane *bp)
A
anonymous 已提交
946 947 948 949 950
{
    bp->width = bp->stride = bp->height = 0;
    if (bp->data) av_freep(&bp->data);
}

951
/** Decode rows by checking if they are skipped
A
anonymous 已提交
952 953 954 955 956
 * @param plane Buffer to store decoded bits
 * @param[in] width Width of this buffer
 * @param[in] height Height of this buffer
 * @param[in] stride of this buffer
 */
957
static void decode_rowskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
958 959 960
    int x, y;

    for (y=0; y<height; y++){
A
anonymous 已提交
961
        if (!get_bits(gb, 1)) //rowskip
962 963
            memset(plane, 0, width);
        else
964
            for (x=0; x<width; x++)
A
anonymous 已提交
965
                plane[x] = get_bits(gb, 1);
966 967 968 969
        plane += stride;
    }
}

970
/** Decode columns by checking if they are skipped
A
anonymous 已提交
971 972 973 974 975 976
 * @param plane Buffer to store decoded bits
 * @param[in] width Width of this buffer
 * @param[in] height Height of this buffer
 * @param[in] stride of this buffer
 * @fixme FIXME: Optimize
 */
977
static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
978 979 980
    int x, y;

    for (x=0; x<width; x++){
A
anonymous 已提交
981
        if (!get_bits(gb, 1)) //colskip
982 983 984 985
            for (y=0; y<height; y++)
                plane[y*stride] = 0;
        else
            for (y=0; y<height; y++)
A
anonymous 已提交
986
                plane[y*stride] = get_bits(gb, 1);
987 988 989 990
        plane ++;
    }
}

A
anonymous 已提交
991 992
/** Decode a bitplane's bits
 * @param bp Bitplane where to store the decode bits
993
 * @param v VC1 context for bit reading and logging
A
anonymous 已提交
994 995 996 997
 * @return Status
 * @fixme FIXME: Optimize
 * @todo TODO: Decide if a struct is needed
 */
998
static int bitplane_decoding(BitPlane *bp, VC1Context *v)
999
{
A
anonymous 已提交
1000 1001
    GetBitContext *gb = &v->s.gb;

1002
    int imode, x, y, code, use_vertical_tile, tile_w, tile_h, offset;
A
Fixes:  
anonymous 已提交
1003
    uint8_t invert, *planep = bp->data;
1004

A
anonymous 已提交
1005
    invert = get_bits(gb, 1);
1006
    imode = get_vlc2(gb, vc1_imode_vlc.table, VC1_IMODE_VLC_BITS, 2);
1007

A
Fixes:  
anonymous 已提交
1008
    bp->is_raw = 0;
1009 1010 1011
    switch (imode)
    {
    case IMODE_RAW:
A
Fixes:  
anonymous 已提交
1012 1013 1014
        //Data is actually read in the MB layer (same for all tests == "raw")
        bp->is_raw = 1; //invert ignored
        return invert;
1015 1016
    case IMODE_DIFF2:
    case IMODE_NORM2:
1017 1018 1019 1020 1021 1022
        if ((bp->height*bp->width) & 1)
        {
            *(++planep) = get_bits(gb, 1);
            offset = x = 1;
        }
        else offset = x = 0;
I
Ivan Kalvachev 已提交
1023

1024 1025 1026 1027
        for (y=0; y<bp->height; y++)
        {
            for(; x<bp->width; x+=2)
            {
1028
                code = get_vlc2(gb, vc1_norm2_vlc.table, VC1_NORM2_VLC_BITS, 2);
1029 1030 1031 1032 1033 1034
                *(++planep) = code&1; //lsb => left
                *(++planep) = (code>>1)&1; //msb => right
            }
            planep += bp->stride-bp->width;
            if ((bp->width-offset)&1) //Odd number previously processed
            {
1035
                code = get_vlc2(gb, vc1_norm2_vlc.table, VC1_NORM2_VLC_BITS, 2);
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
                *planep = code&1;
                planep += bp->stride-bp->width;
                *planep = (code>>1)&1; //msb => right
                offset = x = 1;
            }
            else
            {
                offset = x = 0;
                planep += bp->stride-bp->width;
            }
1046
        }
1047 1048 1049
        break;
    case IMODE_DIFF6:
    case IMODE_NORM6:
A
Fixes:  
anonymous 已提交
1050
        use_vertical_tile=  bp->height%3==0 &&  bp->width%3!=0;
1051 1052 1053
        tile_w= use_vertical_tile ? 2 : 3;
        tile_h= use_vertical_tile ? 3 : 2;

A
Fixes:  
anonymous 已提交
1054 1055
        for(y=  bp->height%tile_h; y< bp->height; y+=tile_h){
            for(x=  bp->width%tile_w; x< bp->width; x+=tile_w){
1056
                code = get_vlc2(gb, vc1_norm6_vlc.table, VC1_NORM6_VLC_BITS, 2);
1057
                if(code<0){
A
anonymous 已提交
1058
                    av_log(v->s.avctx, AV_LOG_DEBUG, "invalid NORM-6 VLC\n");
1059 1060
                    return -1;
                }
1061
                //FIXME following is a pure guess and probably wrong
A
Fixes:  
anonymous 已提交
1062 1063 1064
                //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;
1065
                //FIXME Does branch prediction help here?
1066
                if(use_vertical_tile){
A
Fixes:  
anonymous 已提交
1067 1068 1069 1070
                    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;
1071
                }else{
A
Fixes:  
anonymous 已提交
1072 1073 1074 1075
                    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;
1076 1077
                }
            }
1078
        }
1079

A
Fixes:  
anonymous 已提交
1080
        x=  bp->width % tile_w;
1081 1082
        decode_colskip(bp->data  ,             x, bp->height         , bp->stride, &v->s.gb);
        decode_rowskip(bp->data+x, bp->width - x, bp->height % tile_h, bp->stride, &v->s.gb);
1083

1084 1085
        break;
    case IMODE_ROWSKIP:
1086
        decode_rowskip(bp->data, bp->width, bp->height, bp->stride, &v->s.gb);
1087
        break;
1088 1089
    case IMODE_COLSKIP:
        decode_colskip(bp->data, bp->width, bp->height, bp->stride, &v->s.gb);
1090 1091 1092 1093 1094
        break;
    default: break;
    }

    /* Applying diff operator */
1095
    if (imode == IMODE_DIFF2 || imode == IMODE_DIFF6)
1096
    {
A
Fixes:  
anonymous 已提交
1097
        planep = bp->data;
1098
        planep[0] ^= invert;
A
Fixes:  
anonymous 已提交
1099
        for (x=1; x<bp->width; x++)
1100
            planep[x] ^= planep[x-1];
A
Fixes:  
anonymous 已提交
1101
        for (y=1; y<bp->height; y++)
1102
        {
A
Fixes:  
anonymous 已提交
1103 1104 1105
            planep += bp->stride;
            planep[0] ^= planep[-bp->stride];
            for (x=1; x<bp->width; x++)
1106
            {
A
Fixes:  
anonymous 已提交
1107 1108
                if (planep[x-1] != planep[x-bp->stride]) planep[x] ^= invert;
                else                                     planep[x] ^= planep[x-1];
1109 1110 1111 1112 1113
            }
        }
    }
    else if (invert)
    {
A
Fixes:  
anonymous 已提交
1114 1115
        planep = bp->data;
        for (x=0; x<bp->width*bp->height; x++) planep[x] = !planep[x]; //FIXME stride
1116
    }
A
Fixes:  
anonymous 已提交
1117
    return (imode<<1) + invert;
1118
}
A
anonymous 已提交
1119
/** @} */ //Bitplane group
1120

A
anonymous 已提交
1121 1122
/***********************************************************************/
/** VOP Dquant decoding
1123
 * @param v VC1 Context
A
anonymous 已提交
1124
 */
1125
static int vop_dquant_decoding(VC1Context *v)
1126
{
A
anonymous 已提交
1127
    GetBitContext *gb = &v->s.gb;
1128 1129 1130 1131 1132
    int pqdiff;

    //variable size
    if (v->dquant == 2)
    {
A
anonymous 已提交
1133 1134
        pqdiff = get_bits(gb, 3);
        if (pqdiff == 7) v->altpq = get_bits(gb, 5);
1135 1136 1137 1138
        else v->altpq = v->pq + pqdiff + 1;
    }
    else
    {
A
anonymous 已提交
1139
        v->dquantfrm = get_bits(gb, 1);
1140 1141
        if ( v->dquantfrm )
        {
A
anonymous 已提交
1142
            v->dqprofile = get_bits(gb, 2);
1143 1144 1145 1146
            switch (v->dqprofile)
            {
            case DQPROFILE_SINGLE_EDGE:
            case DQPROFILE_DOUBLE_EDGES:
A
anonymous 已提交
1147
                v->dqsbedge = get_bits(gb, 2);
1148 1149
                break;
            case DQPROFILE_ALL_MBS:
A
anonymous 已提交
1150
                v->dqbilevel = get_bits(gb, 1);
1151 1152 1153 1154
            default: break; //Forbidden ?
            }
            if (!v->dqbilevel || v->dqprofile != DQPROFILE_ALL_MBS)
            {
A
anonymous 已提交
1155 1156
                pqdiff = get_bits(gb, 3);
                if (pqdiff == 7) v->altpq = get_bits(gb, 5);
1157 1158 1159 1160 1161 1162 1163
                else v->altpq = v->pq + pqdiff + 1;
            }
        }
    }
    return 0;
}

A
anonymous 已提交
1164
/***********************************************************************/
1165
/**
1166
 * @defgroup all_frame_hdr All VC1 profiles frame header
A
anonymous 已提交
1167 1168 1169 1170 1171 1172
 * @brief Part of the frame header decoding from all profiles
 * @warning Only pro/epilog differs between Simple/Main and Advanced => check caller
 * @{
 */
/** B and BI frame header decoding, primary part
 * @see Tables 11+12, p62-65
1173
 * @param v VC1 context
A
anonymous 已提交
1174 1175 1176
 * @return Status
 * @warning Also handles BI frames
 */
1177
static int decode_b_picture_primary_header(VC1Context *v)
1178
{
A
anonymous 已提交
1179
    GetBitContext *gb = &v->s.gb;
1180
    int pqindex;
1181 1182 1183 1184

    /* Prolog common to all frametypes should be done in caller */
    if (v->profile == PROFILE_SIMPLE)
    {
1185
        av_log(v->s.avctx, AV_LOG_ERROR, "Found a B frame while in Simple Profile!\n");
1186
        return FRAME_SKIPPED;
1187
    }
1188 1189
    v->bfraction = vc1_bfraction_lut[get_vlc2(gb, vc1_bfraction_vlc.table,
                                              VC1_BFRACTION_VLC_BITS, 2)];
1190 1191
    if (v->bfraction < -1)
    {
1192
        av_log(v->s.avctx, AV_LOG_ERROR, "Invalid BFRaction\n");
1193
        return FRAME_SKIPPED;
1194 1195 1196 1197
    }
    else if (!v->bfraction)
    {
        /* We actually have a BI frame */
1198 1199
        v->s.pict_type = BI_TYPE;
        v->buffer_fullness = get_bits(gb, 7);
1200 1201 1202
    }

    /* Read the quantization stuff */
A
anonymous 已提交
1203
    pqindex = get_bits(gb, 5);
1204 1205 1206 1207 1208 1209
    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 已提交
1210
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
1211
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
A
anonymous 已提交
1212
        v->pquantizer = get_bits(gb, 1);
1213
#if HAS_ADVANCED_PROFILE
1214
    if (v->profile == PROFILE_ADVANCED)
1215 1216 1217 1218 1219
    {
        if (v->postprocflag) v->postproc = get_bits(gb, 2);
        if (v->extended_mv == 1 && v->s.pict_type != BI_TYPE)
            v->mvrange = get_prefix(gb, 0, 3);
    }
1220
#endif
1221 1222 1223 1224 1225 1226
    else
    {
        if (v->extended_mv == 1)
            v->mvrange = get_prefix(gb, 0, 3);
    }
    /* Read the MV mode */
1227
    if (v->s.pict_type != BI_TYPE)
1228
    {
1229 1230
        v->mv_mode = get_bits(gb, 1);
        if (v->pq < 13)
1231
        {
1232 1233 1234 1235 1236
            if (!v->mv_mode)
            {
                v->mv_mode = get_bits(gb, 2);
                if (v->mv_mode)
                av_log(v->s.avctx, AV_LOG_ERROR,
1237
                       "mv_mode for lowquant B frame was %i\n", v->mv_mode);
1238
            }
1239
        }
1240
        else
1241
        {
1242 1243 1244 1245 1246 1247 1248
            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
1249 1250 1251
        }
    }

A
anonymous 已提交
1252 1253 1254
    return 0;
}

A
anonymous 已提交
1255 1256
/** B and BI frame header decoding, secondary part
 * @see Tables 11+12, p62-65
1257
 * @param v VC1 context
A
anonymous 已提交
1258 1259 1260
 * @return Status
 * @warning Also handles BI frames
 * @warning To call once all MB arrays are allocated
1261
 * @todo Support Advanced Profile headers
A
anonymous 已提交
1262
 */
1263
static int decode_b_picture_secondary_header(VC1Context *v)
A
anonymous 已提交
1264 1265 1266 1267
{
    GetBitContext *gb = &v->s.gb;
    int status;

1268
    status = bitplane_decoding(&v->skip_mb_plane, v);
A
anonymous 已提交
1269 1270
    if (status < 0) return -1;
#if TRACE
1271 1272
    if (v->mv_mode == MV_PMODE_MIXED_MV)
    {
A
Fixes:  
anonymous 已提交
1273 1274
        status = bitplane_decoding(&v->mv_type_mb_plane, v);
        if (status < 0)
1275
            return -1;
A
Fixes:  
anonymous 已提交
1276
#if TRACE
A
anonymous 已提交
1277
        av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
A
Fixes:  
anonymous 已提交
1278 1279
               "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1280 1281 1282
    }

    //bitplane
A
Fixes:  
anonymous 已提交
1283 1284 1285
    status = bitplane_decoding(&v->direct_mb_plane, v);
    if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1286
    av_log(v->s.avctx, AV_LOG_DEBUG, "MB Direct plane encoding: "
A
Fixes:  
anonymous 已提交
1287 1288 1289
           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif

A
anonymous 已提交
1290
    av_log(v->s.avctx, AV_LOG_DEBUG, "Skip MB plane encoding: "
A
Fixes:  
anonymous 已提交
1291 1292
           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1293 1294

    /* FIXME: what is actually chosen for B frames ? */
1295 1296
    v->s.mv_table_index = get_bits(gb, 2); //but using vc1_ tables
    v->cbpcy_vlc = &vc1_cbpcy_p_vlc[get_bits(gb, 2)];
1297

1298 1299 1300 1301 1302 1303 1304
    if (v->dquant)
    {
        vop_dquant_decoding(v);
    }

    if (v->vstransform)
    {
A
anonymous 已提交
1305
        v->ttmbf = get_bits(gb, 1);
1306 1307
        if (v->ttmbf)
        {
A
anonymous 已提交
1308
            v->ttfrm = get_bits(gb, 2);
1309
            av_log(v->s.avctx, AV_LOG_INFO, "Transform used: %ix%i\n",
1310 1311 1312
                   (v->ttfrm & 2) ? 4 : 8, (v->ttfrm & 1) ? 4 : 8);
        }
    }
1313
    /* Epilog (AC/DC syntax) should be done in caller */
1314 1315 1316
    return 0;
}

A
anonymous 已提交
1317 1318
/** I frame header decoding, primary part
 * @see Tables 5+7, p53-54 and 55-57
1319
 * @param v VC1 context
A
anonymous 已提交
1320
 * @return Status
1321
 * @todo Support Advanced Profile headers
A
anonymous 已提交
1322
 */
1323
static int decode_i_picture_primary_header(VC1Context *v)
1324
{
A
anonymous 已提交
1325
    GetBitContext *gb = &v->s.gb;
1326
    int pqindex;
1327 1328 1329

    /* Prolog common to all frametypes should be done in caller */
    //BF = Buffer Fullness
1330
    if (v->profile < PROFILE_ADVANCED && get_bits(gb, 7))
1331
    {
1332
        av_log(v->s.avctx, AV_LOG_DEBUG, "I BufferFullness not 0\n");
1333 1334 1335
    }

    /* Quantizer stuff */
A
anonymous 已提交
1336
    pqindex = get_bits(gb, 5);
1337 1338 1339 1340 1341 1342
    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 已提交
1343
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
1344
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
A
anonymous 已提交
1345 1346
        v->pquantizer = get_bits(gb, 1);
    av_log(v->s.avctx, AV_LOG_DEBUG, "I frame: QP=%i (+%i/2)\n",
1347
           v->pq, v->halfpq);
1348 1349 1350 1351
    return 0;
}

/** I frame header decoding, secondary part
1352
 * @param v VC1 context
1353
 * @return Status
1354
 * @warning Not called in A/S/C profiles, it seems
1355 1356
 * @todo Support Advanced Profile headers
 */
1357
static int decode_i_picture_secondary_header(VC1Context *v)
1358
{
1359
#if HAS_ADVANCED_PROFILE
1360
    int status;
1361
    if (v->profile == PROFILE_ADVANCED)
1362
    {
1363 1364
        v->s.ac_pred = get_bits(&v->s.gb, 1);
        if (v->postprocflag) v->postproc = get_bits(&v->s.gb, 1);
1365 1366 1367
        /* 7.1.1.34 + 8.5.2 */
        if (v->overlap && v->pq<9)
        {
1368
            v->condover = get_bits(&v->s.gb, 1);
A
Fixes:  
anonymous 已提交
1369
            if (v->condover)
1370
            {
1371
                v->condover = 2+get_bits(&v->s.gb, 1);
A
Fixes:  
anonymous 已提交
1372 1373 1374 1375
                if (v->condover == 3)
                {
                    status = bitplane_decoding(&v->over_flags_plane, v);
                    if (status < 0) return -1;
1376
#  if TRACE
A
anonymous 已提交
1377
                    av_log(v->s.avctx, AV_LOG_DEBUG, "Overflags plane encoding: "
A
Fixes:  
anonymous 已提交
1378
                           "Imode: %i, Invert: %i\n", status>>1, status&1);
1379
#  endif
A
Fixes:  
anonymous 已提交
1380
                }
1381 1382 1383 1384 1385
            }
        }
    }
#endif

1386
    /* Epilog (AC/DC syntax) should be done in caller */
1387
    return 0;
1388 1389
}

A
anonymous 已提交
1390 1391
/** P frame header decoding, primary part
 * @see Tables 5+7, p53-54 and 55-57
1392
 * @param v VC1 context
1393
 * @todo Support Advanced Profile headers
A
anonymous 已提交
1394 1395
 * @return Status
 */
1396
static int decode_p_picture_primary_header(VC1Context *v)
1397 1398
{
    /* INTERFRM, FRMCNT, RANGEREDFRM read in caller */
A
anonymous 已提交
1399
    GetBitContext *gb = &v->s.gb;
1400
    int lowquant, pqindex;
1401

A
anonymous 已提交
1402
    pqindex = get_bits(gb, 5);
1403 1404 1405 1406 1407 1408
    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 已提交
1409
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
1410
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
A
anonymous 已提交
1411 1412
        v->pquantizer = get_bits(gb, 1);
    av_log(v->s.avctx, AV_LOG_DEBUG, "P Frame: QP=%i (+%i/2)\n",
1413
           v->pq, v->halfpq);
A
anonymous 已提交
1414
    if (v->extended_mv == 1) v->mvrange = get_prefix(gb, 0, 3);
1415
#if HAS_ADVANCED_PROFILE
1416
    if (v->profile == PROFILE_ADVANCED)
1417
    {
A
anonymous 已提交
1418
        if (v->postprocflag) v->postproc = get_bits(gb, 1);
1419 1420 1421
    }
    else
#endif
A
anonymous 已提交
1422
        if (v->multires) v->respic = get_bits(gb, 2);
1423
    lowquant = (v->pquantizer>12) ? 0 : 1;
A
anonymous 已提交
1424
    v->mv_mode = mv_pmode_table[lowquant][get_prefix(gb, 1, 4)];
1425 1426
    if (v->mv_mode == MV_PMODE_INTENSITY_COMP)
    {
A
anonymous 已提交
1427 1428 1429
        v->mv_mode2 = mv_pmode_table[lowquant][get_prefix(gb, 1, 3)];
        v->lumscale = get_bits(gb, 6);
        v->lumshift = get_bits(gb, 6);
1430
    }
A
anonymous 已提交
1431 1432
    return 0;
}
1433

A
anonymous 已提交
1434 1435
/** P frame header decoding, secondary part
 * @see Tables 5+7, p53-54 and 55-57
1436
 * @param v VC1 context
A
anonymous 已提交
1437 1438 1439
 * @warning To call once all MB arrays are allocated
 * @return Status
 */
1440
static int decode_p_picture_secondary_header(VC1Context *v)
A
anonymous 已提交
1441 1442 1443
{
    GetBitContext *gb = &v->s.gb;
    int status = 0;
1444 1445 1446 1447
    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 已提交
1448 1449 1450
        status = bitplane_decoding(&v->mv_type_mb_plane, v);
        if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1451
        av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
A
Fixes:  
anonymous 已提交
1452 1453
               "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1454 1455
    }

A
Fixes:  
anonymous 已提交
1456 1457 1458
    status = bitplane_decoding(&v->skip_mb_plane, v);
    if (status < 0) return -1;
#if TRACE
A
anonymous 已提交
1459
    av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
A
Fixes:  
anonymous 已提交
1460 1461
           "Imode: %i, Invert: %i\n", status>>1, status&1);
#endif
1462 1463

    /* Hopefully this is correct for P frames */
1464 1465
    v->s.mv_table_index =get_bits(gb, 2); //but using vc1_ tables
    v->cbpcy_vlc = &vc1_cbpcy_p_vlc[get_bits(gb, 2)];
1466 1467 1468

    if (v->dquant)
    {
A
anonymous 已提交
1469
        av_log(v->s.avctx, AV_LOG_INFO, "VOP DQuant info\n");
1470 1471 1472
        vop_dquant_decoding(v);
    }

1473
    v->ttfrm = 0; //FIXME Is that so ?
1474 1475
    if (v->vstransform)
    {
A
anonymous 已提交
1476
        v->ttmbf = get_bits(gb, 1);
1477 1478
        if (v->ttmbf)
        {
A
anonymous 已提交
1479 1480
            v->ttfrm = get_bits(gb, 2);
            av_log(v->s.avctx, AV_LOG_INFO, "Transform used: %ix%i\n",
1481 1482 1483
                   (v->ttfrm & 2) ? 4 : 8, (v->ttfrm & 1) ? 4 : 8);
        }
    }
1484
    /* Epilog (AC/DC syntax) should be done in caller */
1485 1486
    return 0;
}
A
anonymous 已提交
1487 1488
/** @} */ //End of group all_frm_hdr

1489

A
anonymous 已提交
1490
/***********************************************************************/
1491
/**
1492
 * @defgroup std_frame_hdr VC1 Simple/Main Profiles header decoding
A
anonymous 已提交
1493 1494 1495 1496 1497
 * @brief Part of the frame header decoding belonging to Simple/Main Profiles
 * @warning Only pro/epilog differs between Simple/Main and Advanced =>
 *          check caller
 * @{
 */
1498

A
anonymous 已提交
1499 1500
/** Frame header decoding, first part, in Simple and Main profiles
 * @see Tables 5+7, p53-54 and 55-57
1501
 * @param v VC1 context
1502 1503
 * @todo FIXME: RANGEREDFRM element not read if BI frame from Table6, P54
 *              However, 7.1.1.8 says "all frame types, for main profiles"
A
anonymous 已提交
1504 1505
 * @return Status
 */
1506
static int standard_decode_picture_primary_header(VC1Context *v)
1507
{
A
anonymous 已提交
1508 1509
    GetBitContext *gb = &v->s.gb;
    int status = 0;
1510

A
anonymous 已提交
1511 1512 1513 1514
    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);
1515
    if (v->s.avctx->max_b_frames)
1516
    {
1517 1518 1519 1520 1521
        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 已提交
1522
        else v->s.pict_type = P_TYPE;
1523
    }
1524
    else v->s.pict_type++;
1525

A
anonymous 已提交
1526
    switch (v->s.pict_type)
1527
    {
1528
    case I_TYPE: status = decode_i_picture_primary_header(v); break;
A
anonymous 已提交
1529
    case P_TYPE: status = decode_p_picture_primary_header(v); break;
1530
    case BI_TYPE: //Same as B
A
anonymous 已提交
1531
    case B_TYPE: status = decode_b_picture_primary_header(v); break;
1532 1533
    }

1534
    if (status == FRAME_SKIPPED)
1535
    {
1536
      av_log(v->s.avctx, AV_LOG_INFO, "Skipping frame...\n");
1537 1538
      return status;
    }
A
anonymous 已提交
1539 1540 1541
    return 0;
}

A
anonymous 已提交
1542
/** Frame header decoding, secondary part
1543
 * @param v VC1 context
A
anonymous 已提交
1544 1545 1546
 * @warning To call once all MB arrays are allocated
 * @return Status
 */
1547
static int standard_decode_picture_secondary_header(VC1Context *v)
A
anonymous 已提交
1548 1549
{
    GetBitContext *gb = &v->s.gb;
1550
    int status = 0;
A
anonymous 已提交
1551 1552 1553 1554 1555

    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;
1556 1557
    case BI_TYPE:
    case I_TYPE: break; //Nothing needed as it's done in the epilog
A
anonymous 已提交
1558
    }
1559
    if (status < 0) return FRAME_SKIPPED;
1560

A
Fixes:  
anonymous 已提交
1561
    /* AC Syntax */
1562
    v->c_ac_table_index = decode012(gb);
A
anonymous 已提交
1563
    if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1564
    {
1565
        v->y_ac_table_index = decode012(gb);
1566
    }
A
Fixes:  
anonymous 已提交
1567
    /* DC Syntax */
1568 1569
    v->s.dc_table_index = decode012(gb);

1570 1571
    return 0;
}
A
anonymous 已提交
1572
/** @} */ //End for group std_frame_hdr
1573 1574

#if HAS_ADVANCED_PROFILE
A
anonymous 已提交
1575
/***********************************************************************/
1576
/**
1577
 * @defgroup adv_frame_hdr VC1 Advanced Profile header decoding
A
anonymous 已提交
1578 1579 1580 1581 1582
 * @brief Part of the frame header decoding belonging to Advanced Profiles
 * @warning Only pro/epilog differs between Simple/Main and Advanced =>
 *          check caller
 * @{
 */
1583
/** Frame header decoding, primary part
1584
 * @param v VC1 context
A
anonymous 已提交
1585 1586
 * @return Status
 */
1587
static int advanced_decode_picture_primary_header(VC1Context *v)
1588
{
A
anonymous 已提交
1589
    GetBitContext *gb = &v->s.gb;
1590
    static const int type_table[4] = { P_TYPE, B_TYPE, I_TYPE, BI_TYPE };
1591
    int type;
1592 1593 1594

    if (v->interlace)
    {
A
anonymous 已提交
1595 1596
        v->fcm = get_bits(gb, 1);
        if (v->fcm) v->fcm = 2+get_bits(gb, 1);
1597 1598
    }

A
anonymous 已提交
1599
    type = get_prefix(gb, 0, 4);
1600
    if (type > 4 || type < 0) return FRAME_SKIPPED;
A
anonymous 已提交
1601 1602
    v->s.pict_type = type_table[type];
    av_log(v->s.avctx, AV_LOG_INFO, "AP Frame Type: %i\n", v->s.pict_type);
1603

A
anonymous 已提交
1604
    if (v->tfcntrflag) v->tfcntr = get_bits(gb, 8);
1605 1606
    if (v->broadcast)
    {
A
anonymous 已提交
1607
        if (!v->interlace) v->rptfrm = get_bits(gb, 2);
1608 1609
        else
        {
A
anonymous 已提交
1610 1611
            v->tff = get_bits(gb, 1);
            v->rff = get_bits(gb, 1);
1612 1613 1614 1615 1616 1617 1618 1619
        }
    }

    if (v->panscanflag)
    {
#if 0
        for (i=0; i<v->numpanscanwin; i++)
        {
A
anonymous 已提交
1620 1621 1622 1623
            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);
1624 1625
        }
#else
A
anonymous 已提交
1626
        skip_bits(gb, 16*4*v->numpanscanwin);
1627 1628
#endif
    }
A
anonymous 已提交
1629 1630 1631
    v->s.no_rounding = !get_bits(gb, 1);
    v->uvsamp = get_bits(gb, 1);
    if (v->finterpflag == 1) v->interpfrm = get_bits(gb, 1);
1632

A
anonymous 已提交
1633
    switch(v->s.pict_type)
1634
    {
1635
    case I_TYPE: if (decode_i_picture_primary_header(v) < 0) return -1;
A
anonymous 已提交
1636
    case P_TYPE: if (decode_p_picture_primary_header(v) < 0) return -1;
1637
    case BI_TYPE:
1638
    case B_TYPE: if (decode_b_picture_primary_header(v) < 0) return FRAME_SKIPPED;
1639
    default: return -1;
A
anonymous 已提交
1640 1641 1642
    }
}

A
anonymous 已提交
1643
/** Frame header decoding, secondary part
1644
 * @param v VC1 context
A
anonymous 已提交
1645 1646
 * @return Status
 */
1647
static int advanced_decode_picture_secondary_header(VC1Context *v)
A
anonymous 已提交
1648 1649
{
    GetBitContext *gb = &v->s.gb;
1650
    int status = 0;
A
anonymous 已提交
1651 1652 1653

    switch(v->s.pict_type)
    {
1654 1655 1656
    case P_TYPE: status = decode_p_picture_secondary_header(v); break;
    case B_TYPE: status = decode_b_picture_secondary_header(v); break;
    case BI_TYPE:
1657
    case I_TYPE: status = decode_i_picture_secondary_header(v); break;
1658
    }
1659
    if (status<0) return FRAME_SKIPPED;
1660

A
Fixes:  
anonymous 已提交
1661
    /* AC Syntax */
1662
    v->c_ac_table_index = decode012(gb);
A
anonymous 已提交
1663
    if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1664
    {
1665
        v->y_ac_table_index = decode012(gb);
1666
    }
A
Fixes:  
anonymous 已提交
1667
    /* DC Syntax */
1668
    v->s.dc_table_index = decode012(gb);
1669 1670 1671 1672

    return 0;
}
#endif
A
anonymous 已提交
1673 1674 1675
/** @} */ //End for adv_frame_hdr

/***********************************************************************/
1676
/**
1677
 * @defgroup block VC1 Block-level functions
A
anonymous 已提交
1678 1679 1680 1681
 * @see 7.1.4, p91 and 8.1.1.7, p(1)04
 * @todo TODO: Integrate to MpegEncContext facilities
 * @{
 */
1682 1683 1684 1685

/**
 * @def GET_MQUANT
 * @brief Get macroblock-level quantizer scale
1686 1687
 * @warning XXX: qdiff to the frame quant, not previous quant ?
 * @fixme XXX: Don't know how to initialize mquant otherwise in last case
A
anonymous 已提交
1688
 */
1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
#define GET_MQUANT()                                           \
  if (v->dquantfrm)                                            \
  {                                                            \
    if (v->dqprofile == DQPROFILE_ALL_MBS)                     \
    {                                                          \
      if (v->dqbilevel)                                        \
      {                                                        \
        mquant = (get_bits(gb, 1)) ? v->pq : v->altpq;         \
      }                                                        \
      else                                                     \
      {                                                        \
        mqdiff = get_bits(gb, 3);                              \
        if (mqdiff != 7) mquant = v->pq + mqdiff;              \
        else mquant = get_bits(gb, 5);                         \
      }                                                        \
    }                                                          \
1705
    else mquant = v->pq;                                       \
1706 1707 1708 1709 1710 1711
  }

/**
 * @def GET_MVDATA(_dmv_x, _dmv_y)
 * @brief Get MV differentials
 * @see MVDATA decoding from 8.3.5.2, p(1)20
1712 1713 1714
 * @param _dmv_x Horizontal differential for decoded MV
 * @param _dmv_y Vertical differential for decoded MV
 * @todo TODO: Use MpegEncContext arrays to store them
1715 1716
 */
#define GET_MVDATA(_dmv_x, _dmv_y)                                  \
1717 1718
  index = 1 + get_vlc2(gb, vc1_mv_diff_vlc[s->mv_table_index].table,\
                       VC1_MV_DIFF_VLC_BITS, 2);                    \
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
  if (index > 36)                                                   \
  {                                                                 \
    mb_has_coeffs = 1;                                              \
    index -= 37;                                                    \
  }                                                                 \
  else mb_has_coeffs = 0;                                           \
  s->mb_intra = 0;                                                  \
  if (!index) { _dmv_x = _dmv_y = 0; }                              \
  else if (index == 35)                                             \
  {                                                                 \
    _dmv_x = get_bits(gb, v->k_x);                                  \
    _dmv_y = get_bits(gb, v->k_y);                                  \
    s->mb_intra = 1;                                                \
  }                                                                 \
  else                                                              \
  {                                                                 \
    index1 = index%6;                                               \
    if (s->mspel && index1 == 5) val = 1;                           \
    else                         val = 0;                           \
    val = get_bits(gb, size_table[index1] - val);                   \
    sign = 0 - (val&1);                                             \
    _dmv_x = (sign ^ ((val>>1) + offset_table[index1])) - sign;     \
                                                                    \
    index1 = index/6;                                               \
    if (s->mspel && index1 == 5) val = 1;                           \
    else                          val = 0;                          \
    val = get_bits(gb, size_table[index1] - val);                   \
    sign = 0 - (val&1);                                             \
    _dmv_y = (sign ^ ((val>>1) + offset_table[index1])) - sign;     \
  }

/** Get predicted DC value
 * prediction dir: left=0, top=1
1752 1753 1754 1755
 * @param s MpegEncContext
 * @param[in] n block index in the current MB
 * @param dc_val_ptr Pointer to DC predictor
 * @param dir_ptr Prediction direction for use in AC prediction
1756
 * @todo TODO: Actually do it the VC1 way
1757
 * @todo TODO: Handle properly edges
1758
 */
1759
static inline int vc1_pred_dc(MpegEncContext *s, int n,
1760 1761 1762 1763
                              uint16_t **dc_val_ptr, int *dir_ptr)
{
    int a, b, c, wrap, pred, scale;
    int16_t *dc_val;
1764
    static const uint16_t dcpred[31] = {
1765 1766 1767
        1024,  512,  341,  256,  205,  171,  146,  128,
         114,  102,   93,   85,   79,   73,   68,   64,
          60,   57,   54,   51,   49,   47,   45,   43,
1768 1769 1770 1771 1772 1773
          41,   39,   38,   37,   35,   34,   33
    };

    /* find prediction - wmv3_dc_scale always used here in fact */
    if (n < 4)     scale = s->y_dc_scale;
    else           scale = s->c_dc_scale;
I
Ivan Kalvachev 已提交
1774

1775 1776 1777 1778
    wrap = s->block_wrap[n];
    dc_val= s->dc_val[0] + s->block_index[n];

    /* B C
1779
     * A X
1780 1781 1782 1783
     */
    a = dc_val[ - 1];
    b = dc_val[ - 1 - wrap];
    c = dc_val[ - wrap];
I
Ivan Kalvachev 已提交
1784

1785
    /* XXX: Rule B is used only for I and BI frames in S/M/C profile
1786
     *      with overlap filtering off
1787
     */
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
    if ((s->pict_type == I_TYPE || s->pict_type == BI_TYPE) &&
        1 /* XXX: overlap filtering off */)
    {
        /* Set outer values */
        if (s->first_slice_line && n!=2) b=c=dcpred[scale];
        if (s->mb_x == 0) b=a=dcpred[scale];
    }
    else
    {
        /* Set outer values */
        if (s->first_slice_line && n!=2) b=c=0;
        if (s->mb_x == 0) b=a=0;

        /* XXX: Rule A needs to know if blocks are inter or intra :/ */
        if (0)
        {
            /* update predictor */
            *dc_val_ptr = &dc_val[0];
            dir_ptr = 0;
            return a;
        }
1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
    }

    if (abs(a - b) <= abs(b - c)) {
        pred = c;
        *dir_ptr = 1;
    } else {
        pred = a;
        *dir_ptr = 0;
    }

    /* update predictor */
    *dc_val_ptr = &dc_val[0];
    return pred;
}

/** Decode one block, inter or intra
1825
 * @param v The VC1 context
1826 1827 1828
 * @param block 8x8 DCT block
 * @param n Block index in the current MB (<4=>luma)
 * @param coded If the block is coded
1829
 * @param mquant Quantizer step for the current block
1830 1831 1832 1833 1834
 * @see Inter TT: Table 21, p73 + p91-85
 * @see Intra TT: Table 20, p72 + p(1)05-(1)07
 * @todo TODO: Process the blocks
 * @todo TODO: Use M$ MPEG-4 cbp prediction
 */
1835
static int vc1_decode_block(VC1Context *v, DCTELEM block[64], int n, int coded, int mquant)
A
Fixes:  
anonymous 已提交
1836
{
A
anonymous 已提交
1837
    GetBitContext *gb = &v->s.gb;
1838 1839 1840 1841 1842
    MpegEncContext *s = &v->s;
    int ttblk; /* Transform Type per Block */
    int subblkpat; /* Sub-block Transform Type Pattern */
    int dc_pred_dir; /* Direction of the DC prediction used */
    int run_diff, i;
A
Fixes:  
anonymous 已提交
1843

1844 1845 1846 1847 1848 1849 1850
    /* XXX: Guard against dumb values of mquant */
    mquant = (mquant < 1) ? 0 : ( (mquant>31) ? 31 : mquant );

    /* Set DC scale - y and c use the same */
    s->y_dc_scale = s->y_dc_scale_table[mquant];
    s->c_dc_scale = s->c_dc_scale_table[mquant];

1851
    if (s->mb_intra)
A
Fixes:  
anonymous 已提交
1852
    {
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
        int dcdiff;
        uint16_t *dc_val;

        /* Get DC differential */
        if (n < 4) {
            dcdiff = get_vlc2(&s->gb, ff_msmp4_dc_luma_vlc[s->dc_table_index].table, DC_VLC_BITS, 3);
        } else {
            dcdiff = get_vlc2(&s->gb, ff_msmp4_dc_chroma_vlc[s->dc_table_index].table, DC_VLC_BITS, 3);
        }
        if (dcdiff < 0){
1863
            av_log(s->avctx, AV_LOG_ERROR, "Illegal DC VLC\n");
1864 1865 1866
            return -1;
        }
        if (dcdiff)
A
Fixes:  
anonymous 已提交
1867
        {
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
            if (dcdiff == 119 /* ESC index value */)
            {
                /* TODO: Optimize */
                if (mquant == 1) dcdiff = get_bits(gb, 10);
                else if (mquant == 2) dcdiff = get_bits(gb, 9);
                else dcdiff = get_bits(gb, 8);
            }
            else
            {
                if (mquant == 1)
                  dcdiff = (dcdiff<<2) + get_bits(gb, 2) - 3;
                else if (mquant == 2)
                  dcdiff = (dcdiff<<1) + get_bits(gb, 1) - 1;
            }
            if (get_bits(gb, 1))
              dcdiff = -dcdiff;
A
Fixes:  
anonymous 已提交
1884
        }
1885 1886

        /* Prediction */
1887
        dcdiff += vc1_pred_dc(s, n, &dc_val, &dc_pred_dir);
1888 1889
        *dc_val = dcdiff;
        /* Store the quantized DC coeff, used for prediction */
I
Ivan Kalvachev 已提交
1890

1891
        if (n < 4) {
1892
            block[0] = dcdiff * s->y_dc_scale;
1893
        } else {
1894
            block[0] = dcdiff * s->c_dc_scale;
1895
        }
1896 1897 1898 1899 1900
        if (block[0] < 0) {
#if TRACE
            //av_log(s->avctx, AV_LOG_ERROR, "DC=%i<0\n", dcdiff);
#endif
            //return -1;
1901 1902 1903 1904 1905 1906
        }
        /* Skip ? */
        run_diff = 0;
        i = 0;
        if (!coded) {
            goto not_coded;
A
Fixes:  
anonymous 已提交
1907 1908
        }
    }
1909 1910 1911 1912 1913 1914
    else
    {
        mquant = v->pq;

        /* Get TTBLK */
        if (v->ttmb < 8) /* per block */
1915
            ttblk = get_vlc2(gb, vc1_ttblk_vlc[v->tt_index].table, VC1_TTBLK_VLC_BITS, 2);
1916 1917 1918 1919 1920
        else /* Per frame */
          ttblk = 0; //FIXME, depends on ttfrm

        /* Get SUBBLKPAT */
        if (ttblk == v->ttblk4x4) /* 4x4 transform for that qp value */
1921 1922
            subblkpat = 1+get_vlc2(gb, vc1_subblkpat_vlc[v->tt_index].table,
                                   VC1_SUBBLKPAT_VLC_BITS, 2);
1923 1924 1925 1926 1927
        else /* All others: 8x8, 4x8, 8x4 */
            subblkpat = decode012(gb);
    }

    //TODO AC Decoding
1928
    i = 63; //XXX: nothing done yet
A
Fixes:  
anonymous 已提交
1929

1930 1931 1932 1933 1934 1935 1936 1937 1938 1939

 not_coded:
    if (s->mb_intra) {
        mpeg4_pred_ac(s, block, n, dc_pred_dir);
        if (s->ac_pred) {
            i = 63; /* XXX: not optimal */
        }
    }
    if(i>0) i=63; //FIXME/XXX optimize
    s->block_last_index[n] = i;
A
Fixes:  
anonymous 已提交
1940 1941
    return 0;
}
1942

A
anonymous 已提交
1943 1944 1945
/** @} */ //End for group block

/***********************************************************************/
1946
/**
1947
 * @defgroup std_mb VC1 Macroblock-level functions in Simple/Main Profiles
A
anonymous 已提交
1948 1949 1950 1951
 * @see 7.1.4, p91 and 8.1.1.7, p(1)04
 * @todo TODO: Integrate to MpegEncContext facilities
 * @{
 */
1952

1953
static inline int vc1_coded_block_pred(MpegEncContext * s, int n, uint8_t **coded_block_ptr)
1954 1955 1956 1957 1958 1959 1960
{
    int xy, wrap, pred, a, b, c;

    xy = s->block_index[n];
    wrap = s->b8_stride;

    /* B C
1961
     * A X
1962 1963 1964 1965
     */
    a = s->coded_block[xy - 1       ];
    b = s->coded_block[xy - 1 - wrap];
    c = s->coded_block[xy     - wrap];
I
Ivan Kalvachev 已提交
1966

1967 1968 1969 1970 1971
    if (b == c) {
        pred = a;
    } else {
        pred = c;
    }
I
Ivan Kalvachev 已提交
1972

1973 1974 1975 1976 1977 1978
    /* store value */
    *coded_block_ptr = &s->coded_block[xy];

    return pred;
}

1979 1980 1981
/** Decode one I-frame MB (in Simple/Main profile)
 * @todo TODO: Extend to AP
 */
1982
static int vc1_decode_i_mb(VC1Context *v, DCTELEM block[6][64])
1983 1984 1985
{
    int i, cbp, val;
    uint8_t *coded_val;
A
Aurelien Jacobs 已提交
1986
//    uint32_t * const mb_type_ptr= &v->s.current_picture.mb_type[ v->s.mb_x + v->s.mb_y*v->s.mb_stride ];
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996

    v->s.mb_intra = 1;
    cbp = get_vlc2(&v->s.gb, ff_msmp4_mb_i_vlc.table, MB_INTRA_VLC_BITS, 2);
    if (cbp < 0) return -1;
    v->s.ac_pred = get_bits(&v->s.gb, 1);

    for (i=0; i<6; i++)
    {
        val = ((cbp >> (5 - i)) & 1);
        if (i < 4) {
1997
            int pred = vc1_coded_block_pred(&v->s, i, &coded_val);
1998 1999 2000 2001
            val = val ^ pred;
            *coded_val = val;
        }
        cbp |= val << (5 - i);
2002
        if (vc1_decode_block(v, block[i], i, val, v->pq) < 0) //FIXME Should be mquant
2003 2004
        {
            av_log(v->s.avctx, AV_LOG_ERROR,
2005
                   "\nerror while decoding block: %d x %d (%d)\n", v->s.mb_x, v->s.mb_y, i);
2006 2007
            return -1;
        }
2008 2009 2010 2011
    }
    return 0;
}

2012 2013 2014 2015
/** Decode one P-frame MB (in Simple/Main profile)
 * @todo TODO: Extend to AP
 * @fixme FIXME: DC value for inter blocks not set
 */
2016
static int vc1_decode_p_mb(VC1Context *v, DCTELEM block[6][64])
2017 2018 2019 2020 2021 2022
{
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &s->gb;
    int i, mb_offset = s->mb_x + s->mb_y*s->mb_width; /* XXX: mb_stride */
    int cbp; /* cbp decoding stuff */
    int hybrid_pred; /* Prediction types */
2023
    int mv_mode_bit = 0;
2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
    int mqdiff, mquant; /* MB quantization */
    int ttmb; /* MB Transform type */
    int status;
    uint8_t *coded_val;

    static const int size_table[6] = { 0, 2, 3, 4, 5, 8 },
      offset_table[6] = { 0, 1, 3, 7, 15, 31 };
    int mb_has_coeffs = 1; /* last_flag */
    int dmv_x, dmv_y; /* Differential MV components */
    int index, index1; /* LUT indices */
    int val, sign; /* temp values */

2036 2037
    mquant = v->pq; /* Loosy initialization */

2038 2039 2040 2041 2042 2043 2044 2045 2046
    if (v->mv_type_mb_plane.is_raw)
        v->mv_type_mb_plane.data[mb_offset] = get_bits(gb, 1);
    if (v->skip_mb_plane.is_raw)
        v->skip_mb_plane.data[mb_offset] = get_bits(gb, 1);
    if (!mv_mode_bit) /* 1MV mode */
    {
        if (!v->skip_mb_plane.data[mb_offset])
        {
            GET_MVDATA(dmv_x, dmv_y);
I
Ivan Kalvachev 已提交
2047

2048 2049 2050 2051
            /* hybrid mv pred, 8.3.5.3.4 */
            if (v->mv_mode == MV_PMODE_1MV ||
                v->mv_mode == MV_PMODE_MIXED_MV)
                hybrid_pred = get_bits(gb, 1);
2052
            /* FIXME Set DC val for inter block ? */
2053 2054 2055 2056 2057
            if (s->mb_intra && !mb_has_coeffs)
            {
                GET_MQUANT();
                s->ac_pred = get_bits(gb, 1);
                /* XXX: how to handle cbp ? */
2058 2059 2060 2061
                cbp = 0;
                for (i=0; i<6; i++)
                {
                     s->coded_block[s->block_index[i]] = 0;
2062
                     vc1_decode_block(v, block[i], i, 0, mquant);
2063 2064
                }
                return 0;
2065 2066 2067 2068
            }
            else if (mb_has_coeffs)
            {
                if (s->mb_intra) s->ac_pred = get_bits(gb, 1);
2069
                cbp = get_vlc2(&v->s.gb, v->cbpcy_vlc->table, VC1_CBPCY_P_VLC_BITS, 2);
2070 2071 2072 2073 2074
                GET_MQUANT();
            }
            else
            {
                mquant = v->pq;
2075 2076 2077
                /* XXX: how to handle cbp ? */
                /* XXX: how to set values for following predictions ? */
                cbp = 0;
2078 2079 2080
            }

            if (!v->ttmbf)
2081 2082
                ttmb = get_vlc2(gb, vc1_ttmb_vlc[v->tt_index].table,
                                VC1_TTMB_VLC_BITS, 12);
2083

2084 2085 2086 2087
            for (i=0; i<6; i++)
            {
                val = ((cbp >> (5 - i)) & 1);
                if (i < 4) {
2088
                    int pred = vc1_coded_block_pred(&v->s, i, &coded_val);
2089 2090 2091
                    val = val ^ pred;
                    *coded_val = val;
                }
2092
                vc1_decode_block(v, block[i], i, val, mquant); //FIXME
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110
            }
        }
        else //Skipped
        {
            /* hybrid mv pred, 8.3.5.3.4 */
            if (v->mv_mode == MV_PMODE_1MV ||
                v->mv_mode == MV_PMODE_MIXED_MV)
                hybrid_pred = get_bits(gb, 1);

            /* TODO: blah */
            return 0;
        }
    } //1MV mode
    else //4MV mode
    {
        if (!v->skip_mb_plane.data[mb_offset] /* unskipped MB */)
        {
            /* Get CBPCY */
2111
            cbp = get_vlc2(&v->s.gb, v->cbpcy_vlc->table, VC1_CBPCY_P_VLC_BITS, 2);
2112 2113 2114 2115
            for (i=0; i<6; i++)
            {
                val = ((cbp >> (5 - i)) & 1);
                if (i < 4) {
2116
                    int pred = vc1_coded_block_pred(&v->s, i, &coded_val);
2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
                    val = val ^ pred;
                    *coded_val = val;
                }
                if (i<4 && val)
                {
                    GET_MVDATA(dmv_x, dmv_y);
                }
                if (v->mv_mode == MV_PMODE_MIXED_MV /* Hybrid pred */)
                    hybrid_pred = get_bits(gb, 1);
                GET_MQUANT();
2127

2128 2129 2130 2131
                if (s->mb_intra /* One of the 4 blocks is intra */ &&
                    index /* non-zero pred for that block */)
                    s->ac_pred = get_bits(gb, 1);
                if (!v->ttmbf)
2132 2133 2134
                    ttmb = get_vlc2(gb, vc1_ttmb_vlc[v->tt_index].table,
                                    VC1_TTMB_VLC_BITS, 12);
                status = vc1_decode_block(v, block[i], i, val, mquant);
2135 2136 2137 2138 2139
            }
            return status;
        }
        else //Skipped MB
        {
2140
            /* XXX: Skipped => cbp=0 and mquant doesn't matter ? */
2141 2142 2143 2144
            for (i=0; i<4; i++)
            {
                if (v->mv_mode == MV_PMODE_MIXED_MV /* Hybrid pred */)
                    hybrid_pred = get_bits(gb, 1);
2145
                vc1_decode_block(v, block[i], i, 0, v->pq); //FIXME
2146
            }
2147 2148
            vc1_decode_block(v, block[4], 4, 0, v->pq); //FIXME
            vc1_decode_block(v, block[5], 5, 0, v->pq); //FIXME
2149 2150 2151 2152
            /* TODO: blah */
            return 0;
        }
    }
I
Ivan Kalvachev 已提交
2153

2154 2155 2156 2157
    /* Should never happen */
    return -1;
}

2158 2159 2160 2161 2162
/** Decode one B-frame MB (in Simple/Main profile)
 * @todo TODO: Extend to AP
 * @warning XXX: Used for decoding BI MBs
 * @fixme FIXME: DC value for inter blocks not set
 */
2163
static int vc1_decode_b_mb(VC1Context *v, DCTELEM block[6][64])
2164
{
2165 2166 2167 2168 2169 2170
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &v->s.gb;
    int mb_offset, i /* MB / B postion information */;
    int b_mv_type = BMV_TYPE_BACKWARD;
    int mquant, mqdiff; /* MB quant stuff */
    int ttmb; /* MacroBlock transform type */
I
Ivan Kalvachev 已提交
2171

2172 2173 2174 2175 2176 2177
    static const int size_table[6] = { 0, 2, 3, 4, 5, 8 },
        offset_table[6] = { 0, 1, 3, 7, 15, 31 };
    int mb_has_coeffs = 1; /* last_flag */
    int dmv1_x, dmv1_y, dmv2_x, dmv2_y; /* Differential MV components */
    int index, index1; /* LUT indices */
    int val, sign; /* MVDATA temp values */
I
Ivan Kalvachev 已提交
2178

2179 2180 2181 2182 2183 2184
    mb_offset = s->mb_width*s->mb_y + s->mb_x; //FIXME: arrays aren't using stride

    if (v->direct_mb_plane.is_raw)
        v->direct_mb_plane.data[mb_offset] = get_bits(gb, 1);
    if (v->skip_mb_plane.is_raw)
        v->skip_mb_plane.data[mb_offset] = get_bits(gb, 1);
I
Ivan Kalvachev 已提交
2185

2186 2187 2188 2189 2190 2191 2192 2193 2194
    if (!v->direct_mb_plane.data[mb_offset])
    {
        if (v->skip_mb_plane.data[mb_offset])
        {
            b_mv_type = decode012(gb);
            if (v->bfraction > 420 /*1/2*/ &&
                b_mv_type < 3) b_mv_type = 1-b_mv_type;
        }
        else
I
Ivan Kalvachev 已提交
2195
        {
2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
            GET_MVDATA(dmv1_x, dmv1_y);
            if (!s->mb_intra /* b_mv1 tells not intra */)
            {
                b_mv_type = decode012(gb);
                if (v->bfraction > 420 /*1/2*/ &&
                    b_mv_type < 3) b_mv_type = 1-b_mv_type;
            }
        }
    }
    if (!v->skip_mb_plane.data[mb_offset])
    {
        if (mb_has_coeffs /* BMV1 == "last" */)
        {
            GET_MQUANT();
            if (s->mb_intra /* intra mb */)
                s->ac_pred = get_bits(gb, 1);
        }
        else
        {
            /* if bmv1 tells MVs are interpolated */
            if (b_mv_type == BMV_TYPE_INTERPOLATED)
            {
                GET_MVDATA(dmv2_x, dmv2_y);
                mquant = v->pq; //FIXME: initialization not necessary ?
            }
            /* GET_MVDATA has reset some stuff */
            if (mb_has_coeffs /* b_mv2 == "last" */)
            {
                if (s->mb_intra /* intra_mb */)
                    s->ac_pred = get_bits(gb, 1);
                GET_MQUANT();
            }
        }
    }

    //End1
    if (v->ttmbf)
2233 2234
        ttmb = get_vlc2(gb, vc1_ttmb_vlc[v->tt_index].table,
                        VC1_TTMB_VLC_BITS, 12);
2235 2236

    //End2
2237 2238
    for (i=0; i<6; i++)
    {
2239
        vc1_decode_block(v, block[i], i, 0 /*cbp[i]*/, mquant); //FIXME
2240 2241 2242 2243
    }
    return 0;
}

2244 2245 2246 2247
/** Decode all MBs for an I frame in Simple/Main profile
 * @todo TODO: Move out of the loop the picture type case?
               (branch prediction should help there though)
 */
2248
static int standard_decode_mbs(VC1Context *v)
2249 2250
{
    MpegEncContext *s = &v->s;
I
Ivan Kalvachev 已提交
2251

2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267
    /* Set transform type info depending on pq */
    if (v->pq < 5)
    {
        v->tt_index = 0;
        v->ttblk4x4 = 3;
    }
    else if (v->pq < 13)
    {
        v->tt_index = 1;
        v->ttblk4x4 = 3;
    }
    else
    {
        v->tt_index = 2;
        v->ttblk4x4 = 2;
    }
I
Ivan Kalvachev 已提交
2268

2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
    if (s->pict_type != I_TYPE)
    {
        /* Select proper long MV range */
        switch (v->mvrange)
        {
        case 1: v->k_x = 10; v->k_y = 9; break;
        case 2: v->k_x = 12; v->k_y = 10; break;
        case 3: v->k_x = 13; v->k_y = 11; break;
        default: /*case 0 too */ v->k_x = 9; v->k_y = 8; break;
        }

        s->mspel = v->mv_mode & 1; //MV_PMODE is HPEL
        v->k_x -= s->mspel;
        v->k_y -= s->mspel;
    }

    for (s->mb_y=0; s->mb_y<s->mb_height; s->mb_y++)
    {
        for (s->mb_x=0; s->mb_x<s->mb_width; s->mb_x++)
        {
            //FIXME Get proper MB DCTELEM
            //TODO Move out of the loop
            switch (s->pict_type)
            {
2293 2294
            case I_TYPE: vc1_decode_i_mb(v, s->block); break;
            case P_TYPE: vc1_decode_p_mb(v, s->block); break;
2295
            case BI_TYPE:
2296
            case B_TYPE: vc1_decode_b_mb(v, s->block); break;
2297 2298 2299 2300 2301 2302
            }
        }
        //Add a check for overconsumption ?
    }
    return 0;
}
A
anonymous 已提交
2303
/** @} */ //End for group std_mb
2304 2305

#if HAS_ADVANCED_PROFILE
A
anonymous 已提交
2306
/***********************************************************************/
2307
/**
2308
 * @defgroup adv_mb VC1 Macroblock-level functions in Advanced Profile
A
anonymous 已提交
2309 2310 2311 2312
 * @todo TODO: Integrate to MpegEncContext facilities
 * @todo TODO: Code P, B and BI
 * @{
 */
2313
static int advanced_decode_i_mbs(VC1Context *v)
2314
{
A
anonymous 已提交
2315 2316
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &v->s.gb;
2317
    int mqdiff, mquant, mb_offset = 0, over_flags_mb = 0;
2318

A
anonymous 已提交
2319
    for (s->mb_y=0; s->mb_y<s->mb_height; s->mb_y++)
2320
    {
A
anonymous 已提交
2321
        for (s->mb_x=0; s->mb_x<s->mb_width; s->mb_x++)
2322
        {
A
anonymous 已提交
2323 2324 2325
            if (v->ac_pred_plane.is_raw)
                s->ac_pred = get_bits(gb, 1);
            else
2326
                s->ac_pred = v->ac_pred_plane.data[mb_offset];
A
Fixes:  
anonymous 已提交
2327
            if (v->condover == 3 && v->over_flags_plane.is_raw)
A
anonymous 已提交
2328
                over_flags_mb = get_bits(gb, 1);
2329
            GET_MQUANT();
A
Fixes:  
anonymous 已提交
2330 2331

            /* TODO: lots */
2332
        }
2333
        mb_offset++;
2334 2335 2336
    }
    return 0;
}
A
anonymous 已提交
2337
/** @} */ //End for group adv_mb
2338 2339
#endif

2340 2341
/** Initialize a VC1/WMV3 decoder
 * @todo TODO: Handle VC-1 IDUs (Transport level?)
A
anonymous 已提交
2342 2343
 * @todo TODO: Decypher remaining bits in extra_data
 */
2344
static int vc1_decode_init(AVCodecContext *avctx)
2345
{
2346
    VC1Context *v = avctx->priv_data;
A
anonymous 已提交
2347
    MpegEncContext *s = &v->s;
2348 2349 2350 2351
    GetBitContext gb;

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

A
anonymous 已提交
2354 2355
    if(ff_h263_decode_init(avctx) < 0)
        return -1;
2356
    if (vc1_init_common(v) < 0) return -1;
2357

A
Alex Beregszaszi 已提交
2358 2359
    av_log(avctx, AV_LOG_INFO, "This decoder is not supposed to produce picture. Dont report this as a bug!\n");

A
Fixes:  
anonymous 已提交
2360 2361
    avctx->coded_width = avctx->width;
    avctx->coded_height = avctx->height;
2362 2363 2364 2365
    if (avctx->codec_id == CODEC_ID_WMV3)
    {
        int count = 0;

A
anonymous 已提交
2366 2367 2368 2369
        // 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
2370

2371
        init_get_bits(&gb, avctx->extradata, avctx->extradata_size*8);
I
Ivan Kalvachev 已提交
2372

2373 2374
        if (decode_sequence_header(avctx, &gb) < 0)
          return -1;
2375

A
anonymous 已提交
2376 2377 2378 2379 2380 2381
        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));
        }
2382
        else if (count < 0)
A
anonymous 已提交
2383 2384 2385
        {
            av_log(avctx, AV_LOG_INFO, "Read %i bits in overflow\n", -count);
        }
2386
    }
A
anonymous 已提交
2387
    avctx->has_b_frames= !!(avctx->max_b_frames);
2388

A
anonymous 已提交
2389 2390
    s->mb_width = (avctx->coded_width+15)>>4;
    s->mb_height = (avctx->coded_height+15)>>4;
2391 2392

    /* Allocate mb bitplanes */
A
anonymous 已提交
2393
    if (alloc_bitplane(&v->mv_type_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
2394
        return -1;
A
anonymous 已提交
2395
    if (alloc_bitplane(&v->mv_type_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
2396
        return -1;
A
anonymous 已提交
2397
    if (alloc_bitplane(&v->skip_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
2398
        return -1;
A
anonymous 已提交
2399
    if (alloc_bitplane(&v->direct_mb_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
2400 2401 2402
        return -1;

    /* For predictors */
A
anonymous 已提交
2403
    v->previous_line_cbpcy = (uint8_t *)av_malloc(s->mb_stride*4);
A
Fixes:  
anonymous 已提交
2404
    if (!v->previous_line_cbpcy) return -1;
2405 2406

#if HAS_ADVANCED_PROFILE
2407
    if (v->profile == PROFILE_ADVANCED)
2408
    {
A
anonymous 已提交
2409
        if (alloc_bitplane(&v->over_flags_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
2410
            return -1;
A
anonymous 已提交
2411
        if (alloc_bitplane(&v->ac_pred_plane, s->mb_width, s->mb_height) < 0)
A
Fixes:  
anonymous 已提交
2412
            return -1;
2413 2414 2415 2416
    }
#endif

    return 0;
A
anonymous 已提交
2417
    }
2418

2419 2420
/** Decode a VC1/WMV3 frame
 * @todo TODO: Handle VC-1 IDUs (Transport level?)
A
anonymous 已提交
2421 2422
 * @warning Initial try at using MpegEncContext stuff
 */
2423
static int vc1_decode_frame(AVCodecContext *avctx,
2424 2425 2426
                            void *data, int *data_size,
                            uint8_t *buf, int buf_size)
{
2427
    VC1Context *v = avctx->priv_data;
A
anonymous 已提交
2428
    MpegEncContext *s = &v->s;
2429
    int ret = FRAME_SKIPPED, len;
2430 2431
    AVFrame *pict = data;
    uint8_t *tmp_buf;
A
anonymous 已提交
2432
    v->s.avctx = avctx;
2433 2434 2435 2436 2437 2438 2439 2440 2441 2442

    //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);

2443
    if (avctx->codec_id == CODEC_ID_VC1)
2444 2445
    {
#if 0
I
Ivan Kalvachev 已提交
2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458
        // 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 ?

2459
            scs = buf[i++];
I
Ivan Kalvachev 已提交
2460 2461 2462 2463 2464

            init_get_bits(gb, buf+i, (buf_size-i)*8);

            switch(scs)
            {
A
Fixes:  
anonymous 已提交
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
            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
2476
                if (v->profile < PROFILE_ADVANCED)
A
Fixes:  
anonymous 已提交
2477 2478
                    av_log(avctx, AV_LOG_ERROR,
                           "Found an entry point in profile %i\n", v->profile);
A
anonymous 已提交
2479
                advanced_entry_point_process(avctx, gb);
A
Fixes:  
anonymous 已提交
2480 2481
                break;
            case 0x0F: //Sequence header Start Code
A
anonymous 已提交
2482
                decode_sequence_header(avctx, gb);
A
Fixes:  
anonymous 已提交
2483 2484 2485 2486 2487
                break;
            default:
                av_log(avctx, AV_LOG_ERROR,
                       "Unsupported IDU suffix %lX\n", scs);
            }
I
Ivan Kalvachev 已提交
2488 2489 2490

            i += get_bits_count(gb)*8;
        }
2491
#else
I
Ivan Kalvachev 已提交
2492
        av_abort();
2493 2494
#endif
    }
A
anonymous 已提交
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
    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;
I
Ivan Kalvachev 已提交
2516

A
anonymous 已提交
2517 2518 2519 2520
    if (!s->context_initialized) {
        if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
            return -1;
    }
I
Ivan Kalvachev 已提交
2521

A
anonymous 已提交
2522 2523 2524 2525 2526
    //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
2527
    if (v->profile == PROFILE_ADVANCED)
A
anonymous 已提交
2528 2529 2530 2531
        ret= advanced_decode_picture_primary_header(v);
    else
#endif
        ret= standard_decode_picture_primary_header(v);
2532
    if (ret == FRAME_SKIPPED) return buf_size;
A
anonymous 已提交
2533 2534 2535 2536 2537 2538 2539 2540 2541
    /* 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
2542
    if (v->profile < PROFILE_ADVANCED && v->multires){
A
anonymous 已提交
2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559
        //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
I
Ivan Kalvachev 已提交
2560

A
anonymous 已提交
2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574
    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
2575
    if (v->profile == PROFILE_ADVANCED)
A
anonymous 已提交
2576 2577 2578 2579
        ret= advanced_decode_picture_secondary_header(v);
    else
#endif
        ret = standard_decode_picture_secondary_header(v);
2580
    if (ret<0) return FRAME_SKIPPED; //FIXME Non fatal for now
A
anonymous 已提交
2581 2582 2583

    //We consider the image coded in only one slice
#if HAS_ADVANCED_PROFILE
2584
    if (v->profile == PROFILE_ADVANCED)
A
anonymous 已提交
2585 2586 2587 2588 2589 2590 2591
    {
        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;
2592
            default: ret = FRAME_SKIPPED;
A
anonymous 已提交
2593
        }
2594
        if (ret == FRAME_SKIPPED) return buf_size; //We ignore for now failures
A
anonymous 已提交
2595 2596 2597 2598
    }
    else
#endif
    {
2599
        ret = standard_decode_mbs(v);
2600
        if (ret == FRAME_SKIPPED) return buf_size;
A
anonymous 已提交
2601 2602 2603 2604 2605 2606 2607 2608
    }

    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);
2609 2610 2611 2612 2613 2614 2615 2616 2617

    if (s->pict_type == B_TYPE || s->low_delay) {
        *pict= *(AVFrame*)s->current_picture_ptr;
    } else if (s->last_picture_ptr != NULL) {
        *pict= *(AVFrame*)s->last_picture_ptr;
    }

    if(s->last_picture_ptr || s->low_delay){
        *data_size = sizeof(AVFrame);
A
anonymous 已提交
2618 2619 2620 2621 2622 2623 2624
        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;

A
Fixes:  
anonymous 已提交
2625
    av_log(avctx, AV_LOG_DEBUG, "Consumed %i/%i bits\n",
A
anonymous 已提交
2626
           get_bits_count(&s->gb), buf_size*8);
2627 2628

    /* Fake consumption of all data */
A
Fixes:  
anonymous 已提交
2629
    *data_size = len;
2630 2631 2632
    return buf_size; //Number of bytes consumed
}

2633
/** Close a VC1/WMV3 decoder
A
anonymous 已提交
2634 2635
 * @warning Initial try at using MpegEncContext stuff
 */
2636
static int vc1_decode_end(AVCodecContext *avctx)
2637
{
2638
    VC1Context *v = avctx->priv_data;
2639 2640

#if HAS_ADVANCED_PROFILE
2641 2642
    av_freep(&v->hrd_rate);
    av_freep(&v->hrd_buffer);
2643
#endif
A
anonymous 已提交
2644 2645 2646 2647
    MPV_common_end(&v->s);
    free_bitplane(&v->mv_type_mb_plane);
    free_bitplane(&v->skip_mb_plane);
    free_bitplane(&v->direct_mb_plane);
2648 2649 2650
    return 0;
}

2651 2652
AVCodec vc1_decoder = {
    "vc1",
2653
    CODEC_TYPE_VIDEO,
2654 2655 2656
    CODEC_ID_VC1,
    sizeof(VC1Context),
    vc1_decode_init,
2657
    NULL,
2658 2659
    vc1_decode_end,
    vc1_decode_frame,
2660
    CODEC_CAP_DELAY,
2661 2662 2663 2664 2665 2666 2667
    NULL
};

AVCodec wmv3_decoder = {
    "wmv3",
    CODEC_TYPE_VIDEO,
    CODEC_ID_WMV3,
2668 2669
    sizeof(VC1Context),
    vc1_decode_init,
2670
    NULL,
2671 2672
    vc1_decode_end,
    vc1_decode_frame,
2673
    CODEC_CAP_DELAY,
2674 2675
    NULL
};