“b9866ebcc7d9891fb6b07cab70319fe1742a100a”上不存在“libavcodec/vc1.c”
vc1.c 84.9 KB
Newer Older
1
/*
2
 * VC-1 and WMV3 decoder
3 4
 * Copyright (c) 2006 Konstantin Shishkov
 * Partly based on vc9.c (c) 2005 Anonymous, Alex Beregszaszi, Michael Niedermayer
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 20 21 22
 *
 */

/**
23 24
 * @file vc1.c
 * VC-1 and WMV3 decoder
25 26 27 28 29 30
 *
 */
#include "common.h"
#include "dsputil.h"
#include "avcodec.h"
#include "mpegvideo.h"
31
#include "vc1data.h"
32
#include "vc1acdata.h"
A
anonymous 已提交
33

34 35 36
#undef NDEBUG
#include <assert.h>

37 38
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 已提交
39 40 41
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;
42
extern const uint16_t ff_msmp4_mb_i_table[64][2];
A
anonymous 已提交
43
#define DC_VLC_BITS 9
44
#define AC_VLC_BITS 9
A
anonymous 已提交
45
static const uint16_t table_mb_intra[64][2];
46 47


A
anonymous 已提交
48 49
/** Available Profiles */
//@{
50 51 52 53 54 55
enum Profile {
    PROFILE_SIMPLE,
    PROFILE_MAIN,
    PROFILE_COMPLEX, ///< TODO: WMV9 specific
    PROFILE_ADVANCED
};
A
anonymous 已提交
56
//@}
57

A
anonymous 已提交
58 59
/** Sequence quantizer mode */
//@{
60 61 62 63 64 65
enum QuantMode {
    QUANT_FRAME_IMPLICIT,    ///< Implicitly specified at frame level
    QUANT_FRAME_EXPLICIT,    ///< Explicitly specified at frame level
    QUANT_NON_UNIFORM,       ///< Non-uniform quant used for all frames
    QUANT_UNIFORM            ///< Uniform quant used for all frames
};
A
anonymous 已提交
66
//@}
67

A
anonymous 已提交
68 69
/** Where quant can be changed */
//@{
70 71 72 73 74 75
enum DQProfile {
    DQPROFILE_FOUR_EDGES,
    DQPROFILE_DOUBLE_EDGES,
    DQPROFILE_SINGLE_EDGE,
    DQPROFILE_ALL_MBS
};
A
anonymous 已提交
76
//@}
77

A
anonymous 已提交
78 79 80
/** @name Where quant can be changed
 */
//@{
81 82 83 84 85 86
enum DQSingleEdge {
    DQSINGLE_BEDGE_LEFT,
    DQSINGLE_BEDGE_TOP,
    DQSINGLE_BEDGE_RIGHT,
    DQSINGLE_BEDGE_BOTTOM
};
A
anonymous 已提交
87
//@}
88

A
anonymous 已提交
89 90
/** Which pair of edges is quantized with ALTPQUANT */
//@{
91 92 93 94 95 96
enum DQDoubleEdge {
    DQDOUBLE_BEDGE_TOPLEFT,
    DQDOUBLE_BEDGE_TOPRIGHT,
    DQDOUBLE_BEDGE_BOTTOMRIGHT,
    DQDOUBLE_BEDGE_BOTTOMLEFT
};
A
anonymous 已提交
97
//@}
98

A
anonymous 已提交
99 100
/** MV modes for P frames */
//@{
101 102 103 104 105 106 107
enum MVModes {
    MV_PMODE_1MV_HPEL_BILIN,
    MV_PMODE_1MV,
    MV_PMODE_1MV_HPEL,
    MV_PMODE_MIXED_MV,
    MV_PMODE_INTENSITY_COMP
};
A
anonymous 已提交
108
//@}
109

A
anonymous 已提交
110 111
/** @name MV types for B frames */
//@{
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
enum BMVTypes {
    BMV_TYPE_BACKWARD,
    BMV_TYPE_FORWARD,
    BMV_TYPE_INTERPOLATED = 3 //XXX: ??
};
//@}

/** @name Block types for P/B frames */
//@{
enum TransformTypes {
    TT_8X8,
    TT_8X4_BOTTOM,
    TT_8X4_TOP,
    TT_8X4, //Both halves
    TT_4X8_RIGHT,
    TT_4X8_LEFT,
    TT_4X8, //Both halves
    TT_4X4
};
A
anonymous 已提交
131
//@}
A
Fixes:  
anonymous 已提交
132

133 134 135 136 137 138 139
/** Table for conversion between TTBLK and TTMB */
static const int ttblk_to_tt[3][8] = {
  { TT_8X4, TT_4X8, TT_8X8, TT_4X4, TT_8X4_TOP, TT_8X4_BOTTOM, TT_4X8_RIGHT, TT_4X8_LEFT },
  { TT_8X8, TT_4X8_RIGHT, TT_4X8_LEFT, TT_4X4, TT_8X4, TT_4X8, TT_8X4_BOTTOM, TT_8X4_TOP },
  { TT_8X8, TT_4X8, TT_4X4, TT_8X4_BOTTOM, TT_4X8_RIGHT, TT_4X8_LEFT, TT_8X4, TT_8X4_TOP }
};

A
anonymous 已提交
140
/** MV P mode - the 5th element is only used for mode 1 */
141
static const uint8_t mv_pmode_table[2][5] = {
142 143
  { MV_PMODE_1MV_HPEL_BILIN, MV_PMODE_1MV, MV_PMODE_1MV_HPEL, MV_PMODE_INTENSITY_COMP, MV_PMODE_MIXED_MV },
  { MV_PMODE_1MV, MV_PMODE_MIXED_MV, MV_PMODE_1MV_HPEL, MV_PMODE_INTENSITY_COMP, MV_PMODE_1MV_HPEL_BILIN }
144 145
};

A
anonymous 已提交
146
/** One more frame type */
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
#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
  }
};

166
/** @name VC-1 VLC tables and defines
A
anonymous 已提交
167 168 169
 *  @todo TODO move this into the context
 */
//@{
170 171 172 173 174 175 176 177
#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;
178
/* Could be optimized, one table only needs 8 bits */
179 180 181 182 183 184 185 186 187 188 189 190
#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];
191 192

static VLC vc1_ac_coeff_table[8];
A
anonymous 已提交
193
//@}
A
Fixes:  
anonymous 已提交
194

195 196 197 198 199 200 201 202 203 204 205
enum CodingSet {
    CS_HIGH_MOT_INTRA = 0,
    CS_HIGH_MOT_INTER,
    CS_LOW_MOT_INTRA,
    CS_LOW_MOT_INTER,
    CS_MID_RATE_INTRA,
    CS_MID_RATE_INTER,
    CS_HIGH_RATE_INTRA,
    CS_HIGH_RATE_INTER
};

206
/** The VC1 Context
207 208 209
 * @fixme Change size wherever another size is more efficient
 * Many members are only used for Advanced Profile
 */
210
typedef struct VC1Context{
A
anonymous 已提交
211 212
    MpegEncContext s;

213 214
    int bits;

A
anonymous 已提交
215 216 217 218 219 220 221 222 223 224 225 226
    /** 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
    //@}
227

A
anonymous 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
    /** 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
    //@}
244

A
anonymous 已提交
245 246 247 248 249
    /** Sequence header data for all Profiles
     * TODO: choose between ints, uint8_ts and monobit flags
     */
    //@{
    int profile;          ///< 2bits, Profile
250
    int frmrtq_postproc;  ///< 3bits,
A
anonymous 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264
    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)
265 266
    int k_x;              ///< Number of bits for MVs (depends on MV range)
    int k_y;              ///< Number of bits for MVs (depends on MV range)
267
    int range_x, range_y; ///< MV range
A
anonymous 已提交
268 269 270 271 272 273 274 275
    uint8_t pq, altpq;    ///< Current/alternate frame quantizer scale
    /** pquant parameters */
    //@{
    uint8_t dquantfrm;
    uint8_t dqprofile;
    uint8_t dqsbedge;
    uint8_t dqbilevel;
    //@}
276 277 278 279 280 281 282
    /** 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 已提交
283
    int ttfrm;            ///< Transform type info present at frame level
284 285 286
    uint8_t ttmbf;        ///< Transform type flag
    int ttmb;             ///< Transform type
    uint8_t ttblk4x4;     ///< Value of ttblk which indicates a 4x4 transform
287 288 289
    int codingset;        ///< index of current table set from 11.8 to use for luma block decoding
    int codingset2;       ///< index of current table set from 11.8 to use for chroma block decoding
    int pqindex;          ///< raw pqindex used in coding set selection
290
    int a_avail, c_avail;
291 292


A
anonymous 已提交
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
    /** 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;
309
    uint8_t pquantizer;           ///< Uniform (over sequence) quantizer in use
A
anonymous 已提交
310
    uint8_t *previous_line_cbpcy; ///< To use for predicted CBPCY
311 312
    VLC *cbpcy_vlc;               ///< CBPCY VLC table
    int tt_index;                 ///< Index for Transform Type tables
313 314 315 316 317
    uint8_t* mv_type_mb_plane;    ///< bitplane for mv_type == (4MV)
    uint8_t* skip_mb_plane;       ///< bitplane for skipped MBs
//    BitPlane direct_mb_plane;     ///< bitplane for "direct" MBs
    int mv_type_is_raw;           ///< mv type mb plane is not coded
    int skip_is_raw;              ///< skip mb plane is not coded
A
anonymous 已提交
318 319 320 321 322 323

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

A
anonymous 已提交
325 326 327 328 329 330
    /** 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;
331 332 333 334
    uint16_t topleftx;
    uint16_t toplefty;
    uint16_t bottomrightx;
    uint16_t bottomrighty;
A
anonymous 已提交
335 336 337 338 339
    uint8_t uvsamp;
    uint8_t postproc;
    int hrd_num_leaky_buckets;
    uint8_t bit_rate_exponent;
    uint8_t buffer_size_exponent;
340 341
//    BitPlane ac_pred_plane;       ///< AC prediction flags bitplane
//    BitPlane over_flags_plane;    ///< Overflags bitplane
A
anonymous 已提交
342 343
    uint8_t condover;
    uint16_t *hrd_rate, *hrd_buffer;
344 345 346 347 348
    uint8_t *hrd_fullness;
    uint8_t range_mapy_flag;
    uint8_t range_mapuv_flag;
    uint8_t range_mapy;
    uint8_t range_mapuv;
A
anonymous 已提交
349
    //@}
350
} VC1Context;
351

A
anonymous 已提交
352 353 354 355 356 357 358 359
/**
 * 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
 */
360 361
static int get_prefix(GetBitContext *gb, int stop, int len)
{
A
Fixes:  
anonymous 已提交
362
#if 1
363 364 365 366 367
    int i;

    for(i = 0; i < len && get_bits1(gb) != stop; i++);
    return i;
/*  int i = 0, tmp = !stop;
368 369 370 371 372 373

  while (i != len && tmp != stop)
  {
    tmp = get_bits(gb, 1);
    i++;
  }
374
  if (i == len && tmp != stop) return len+1;
375
  return i;*/
A
Fixes:  
anonymous 已提交
376 377 378 379 380 381 382 383
#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 已提交
384

A
Fixes:  
anonymous 已提交
385 386 387 388 389 390
  log= av_log2(-buf); //FIXME: -?
  if (log < limit){
    LAST_SKIP_BITS(re, gb, log+1);
    CLOSE_READER(re, gb);
    return log;
  }
I
Ivan Kalvachev 已提交
391

A
Fixes:  
anonymous 已提交
392 393 394 395 396 397
  LAST_SKIP_BITS(re, gb, limit);
  CLOSE_READER(re, gb);
  return limit;
#endif
}

398 399 400 401 402 403 404 405 406
static inline int decode210(GetBitContext *gb){
    int n;
    n = get_bits1(gb);
    if (n == 1)
        return 0;
    else
        return 2 - get_bits1(gb);
}

A
anonymous 已提交
407
/**
408 409
 * Init VC-1 specific tables and VC1Context members
 * @param v The VC1Context to initialize
A
anonymous 已提交
410 411
 * @return Status
 */
412
static int vc1_init_common(VC1Context *v)
413 414
{
    static int done = 0;
415
    int i = 0;
416 417

    v->hrd_rate = v->hrd_buffer = NULL;
A
Fixes:  
anonymous 已提交
418 419

    /* VLC tables */
420 421 422
    if(!done)
    {
        done = 1;
423
        init_vlc(&vc1_bfraction_vlc, VC1_BFRACTION_VLC_BITS, 23,
424 425
                 vc1_bfraction_bits, 1, 1,
                 vc1_bfraction_codes, 1, 1, 1);
426
        init_vlc(&vc1_norm2_vlc, VC1_NORM2_VLC_BITS, 4,
427 428
                 vc1_norm2_bits, 1, 1,
                 vc1_norm2_codes, 1, 1, 1);
429
        init_vlc(&vc1_norm6_vlc, VC1_NORM6_VLC_BITS, 64,
430 431
                 vc1_norm6_bits, 1, 1,
                 vc1_norm6_codes, 2, 2, 1);
432
        init_vlc(&vc1_imode_vlc, VC1_IMODE_VLC_BITS, 7,
433 434
                 vc1_imode_bits, 1, 1,
                 vc1_imode_codes, 1, 1, 1);
A
Fixes:  
anonymous 已提交
435 436
        for (i=0; i<3; i++)
        {
437
            init_vlc(&vc1_ttmb_vlc[i], VC1_TTMB_VLC_BITS, 16,
438 439
                     vc1_ttmb_bits[i], 1, 1,
                     vc1_ttmb_codes[i], 2, 2, 1);
440
            init_vlc(&vc1_ttblk_vlc[i], VC1_TTBLK_VLC_BITS, 8,
441 442
                     vc1_ttblk_bits[i], 1, 1,
                     vc1_ttblk_codes[i], 1, 1, 1);
443
            init_vlc(&vc1_subblkpat_vlc[i], VC1_SUBBLKPAT_VLC_BITS, 15,
444 445
                     vc1_subblkpat_bits[i], 1, 1,
                     vc1_subblkpat_codes[i], 1, 1, 1);
A
Fixes:  
anonymous 已提交
446 447
        }
        for(i=0; i<4; i++)
448
        {
449
            init_vlc(&vc1_4mv_block_pattern_vlc[i], VC1_4MV_BLOCK_PATTERN_VLC_BITS, 16,
450 451
                     vc1_4mv_block_pattern_bits[i], 1, 1,
                     vc1_4mv_block_pattern_codes[i], 1, 1, 1);
452
            init_vlc(&vc1_cbpcy_p_vlc[i], VC1_CBPCY_P_VLC_BITS, 64,
453 454
                     vc1_cbpcy_p_bits[i], 1, 1,
                     vc1_cbpcy_p_codes[i], 2, 2, 1);
455
            init_vlc(&vc1_mv_diff_vlc[i], VC1_MV_DIFF_VLC_BITS, 73,
456 457
                     vc1_mv_diff_bits[i], 1, 1,
                     vc1_mv_diff_codes[i], 2, 2, 1);
458
        }
459 460 461 462 463 464 465
        for(i=0; i<8; i++)
            init_vlc(&vc1_ac_coeff_table[i], AC_VLC_BITS, vc1_ac_sizes[i],
                     &vc1_ac_tables[i][0][1], 8, 4,
                     &vc1_ac_tables[i][0][0], 8, 4, 1);
        init_vlc(&ff_msmp4_mb_i_vlc, MB_INTRA_VLC_BITS, 64,
                 &ff_msmp4_mb_i_table[0][1], 4, 2,
                 &ff_msmp4_mb_i_table[0][0], 4, 2, 1);
466 467
    }

A
Fixes:  
anonymous 已提交
468 469 470 471
    /* Other defaults */
    v->pq = -1;
    v->mvrange = 0; /* 7.1.1.18, p80 */

472 473 474
    return 0;
}

475
/***********************************************************************/
A
anonymous 已提交
476
/**
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
 * @defgroup bitplane VC9 Bitplane decoding
 * @see 8.7, p56
 * @{
 */

/** @addtogroup bitplane
 * Imode types
 * @{
 */
enum Imode {
    IMODE_RAW,
    IMODE_NORM2,
    IMODE_DIFF2,
    IMODE_NORM6,
    IMODE_DIFF6,
    IMODE_ROWSKIP,
    IMODE_COLSKIP
};
/** @} */ //imode defines

/** Decode rows by checking if they are skipped
 * @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
 */
static void decode_rowskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
    int x, y;
505

506 507 508 509 510 511 512
    for (y=0; y<height; y++){
        if (!get_bits(gb, 1)) //rowskip
            memset(plane, 0, width);
        else
            for (x=0; x<width; x++)
                plane[x] = get_bits(gb, 1);
        plane += stride;
513
    }
514
}
515

516 517 518 519 520 521 522 523 524
/** Decode columns by checking if they are skipped
 * @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
 */
static void decode_colskip(uint8_t* plane, int width, int height, int stride, GetBitContext *gb){
    int x, y;
525

526 527 528 529 530 531 532 533
    for (x=0; x<width; x++){
        if (!get_bits(gb, 1)) //colskip
            for (y=0; y<height; y++)
                plane[y*stride] = 0;
        else
            for (y=0; y<height; y++)
                plane[y*stride] = get_bits(gb, 1);
        plane ++;
534 535 536
    }
}

537 538 539
/** Decode a bitplane's bits
 * @param bp Bitplane where to store the decode bits
 * @param v VC-1 context for bit reading and logging
A
anonymous 已提交
540
 * @return Status
541 542
 * @fixme FIXME: Optimize
 * @todo TODO: Decide if a struct is needed
A
anonymous 已提交
543
 */
544
static int bitplane_decoding(uint8_t* data, int *raw_flag, VC1Context *v)
545
{
546
    GetBitContext *gb = &v->s.gb;
547

548
    int imode, x, y, code, offset;
549 550
    uint8_t invert, *planep = data;
    int width, height, stride;
551

552 553 554
    width = v->s.mb_width;
    height = v->s.mb_height;
    stride = v->s.mb_stride;
555 556
    invert = get_bits(gb, 1);
    imode = get_vlc2(gb, vc1_imode_vlc.table, VC1_IMODE_VLC_BITS, 1);
557

558
    *raw_flag = 0;
559
    switch (imode)
560
    {
561 562
    case IMODE_RAW:
        //Data is actually read in the MB layer (same for all tests == "raw")
563
        *raw_flag = 1; //invert ignored
564 565 566
        return invert;
    case IMODE_DIFF2:
    case IMODE_NORM2:
567
        if ((height * width) & 1)
568
        {
569 570
            *planep++ = get_bits(gb, 1);
            offset = 1;
571
        }
572 573
        else offset = 0;
        // decode bitplane as one long line
574
        for (y = offset; y < height * width; y += 2) {
575 576 577
            code = get_vlc2(gb, vc1_norm2_vlc.table, VC1_NORM2_VLC_BITS, 1);
            *planep++ = code & 1;
            offset++;
578
            if(offset == width) {
579
                offset = 0;
580
                planep += stride - width;
581
            }
582 583
            *planep++ = code >> 1;
            offset++;
584
            if(offset == width) {
585
                offset = 0;
586
                planep += stride - width;
587
            }
588 589 590 591
        }
        break;
    case IMODE_DIFF6:
    case IMODE_NORM6:
592 593 594
        if(!(height % 3) && (width % 3)) { // use 2x3 decoding
            for(y = 0; y < height; y+= 3) {
                for(x = width & 1; x < width; x += 2) {
595 596 597 598 599 600 601
                    code = get_vlc2(gb, vc1_norm6_vlc.table, VC1_NORM6_VLC_BITS, 2);
                    if(code < 0){
                        av_log(v->s.avctx, AV_LOG_DEBUG, "invalid NORM-6 VLC\n");
                        return -1;
                    }
                    planep[x + 0] = (code >> 0) & 1;
                    planep[x + 1] = (code >> 1) & 1;
602 603 604 605
                    planep[x + 0 + stride] = (code >> 2) & 1;
                    planep[x + 1 + stride] = (code >> 3) & 1;
                    planep[x + 0 + stride * 2] = (code >> 4) & 1;
                    planep[x + 1 + stride * 2] = (code >> 5) & 1;
606
                }
607
                planep += stride * 3;
608
            }
609
            if(width & 1) decode_colskip(data, 1, height, stride, &v->s.gb);
610
        } else { // 3x2
611 612
            for(y = height & 1; y < height; y += 2) {
                for(x = width % 3; x < width; x += 3) {
613 614 615 616 617 618 619 620
                    code = get_vlc2(gb, vc1_norm6_vlc.table, VC1_NORM6_VLC_BITS, 2);
                    if(code < 0){
                        av_log(v->s.avctx, AV_LOG_DEBUG, "invalid NORM-6 VLC\n");
                        return -1;
                    }
                    planep[x + 0] = (code >> 0) & 1;
                    planep[x + 1] = (code >> 1) & 1;
                    planep[x + 2] = (code >> 2) & 1;
621 622 623
                    planep[x + 0 + stride] = (code >> 3) & 1;
                    planep[x + 1 + stride] = (code >> 4) & 1;
                    planep[x + 2 + stride] = (code >> 5) & 1;
624
                }
625
                planep += stride * 2;
626
            }
627 628 629
            x = width % 3;
            if(x) decode_colskip(data  ,             x, height    , stride, &v->s.gb);
            if(height & 1) decode_rowskip(data+x, width - x, 1, stride, &v->s.gb);
630 631 632
        }
        break;
    case IMODE_ROWSKIP:
633
        decode_rowskip(data, width, height, stride, &v->s.gb);
634 635
        break;
    case IMODE_COLSKIP:
636
        decode_colskip(data, width, height, stride, &v->s.gb);
637 638 639 640 641 642 643
        break;
    default: break;
    }

    /* Applying diff operator */
    if (imode == IMODE_DIFF2 || imode == IMODE_DIFF6)
    {
644
        planep = data;
645
        planep[0] ^= invert;
646
        for (x=1; x<width; x++)
647
            planep[x] ^= planep[x-1];
648
        for (y=1; y<height; y++)
649
        {
650 651 652
            planep += stride;
            planep[0] ^= planep[-stride];
            for (x=1; x<width; x++)
653
            {
654 655
                if (planep[x-1] != planep[x-stride]) planep[x] ^= invert;
                else                                 planep[x] ^= planep[x-1];
656 657 658
            }
        }
    }
659
    else if (invert)
660
    {
661 662
        planep = data;
        for (x=0; x<stride*height; x++) planep[x] = !planep[x]; //FIXME stride
663
    }
664 665
    return (imode<<1) + invert;
}
666

667
/** @} */ //Bitplane group
668

669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
/***********************************************************************/
/** VOP Dquant decoding
 * @param v VC-1 Context
 */
static int vop_dquant_decoding(VC1Context *v)
{
    GetBitContext *gb = &v->s.gb;
    int pqdiff;

    //variable size
    if (v->dquant == 2)
    {
        pqdiff = get_bits(gb, 3);
        if (pqdiff == 7) v->altpq = get_bits(gb, 5);
        else v->altpq = v->pq + pqdiff + 1;
    }
    else
686
    {
687 688
        v->dquantfrm = get_bits(gb, 1);
        if ( v->dquantfrm )
689
        {
690 691
            v->dqprofile = get_bits(gb, 2);
            switch (v->dqprofile)
692
            {
693 694 695 696 697 698 699
            case DQPROFILE_SINGLE_EDGE:
            case DQPROFILE_DOUBLE_EDGES:
                v->dqsbedge = get_bits(gb, 2);
                break;
            case DQPROFILE_ALL_MBS:
                v->dqbilevel = get_bits(gb, 1);
            default: break; //Forbidden ?
I
Ivan Kalvachev 已提交
700
            }
701
            if (!v->dqbilevel || v->dqprofile != DQPROFILE_ALL_MBS)
702
            {
703 704 705
                pqdiff = get_bits(gb, 3);
                if (pqdiff == 7) v->altpq = get_bits(gb, 5);
                else v->altpq = v->pq + pqdiff + 1;
706 707 708
            }
        }
    }
709 710
    return 0;
}
711 712


713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
/** Do inverse transform
 */
static void vc1_inv_trans(DCTELEM block[64], int M, int N)
{
    int i;
    register int t1,t2,t3,t4,t5,t6,t7,t8;
    DCTELEM *src, *dst;

    src = block;
    dst = block;
    if(M==4){
        for(i = 0; i < N; i++){
            t1 = 17 * (src[0] + src[2]);
            t2 = 17 * (src[0] - src[2]);
            t3 = 22 * src[1];
            t4 = 22 * src[3];
            t5 = 10 * src[1];
            t6 = 10 * src[3];

            dst[0] = (t1 + t3 + t6 + 4) >> 3;
            dst[1] = (t2 - t4 + t5 + 4) >> 3;
            dst[2] = (t2 + t4 - t5 + 4) >> 3;
            dst[3] = (t1 - t3 - t6 + 4) >> 3;

            src += 8;
            dst += 8;
739
        }
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
    }else{
        for(i = 0; i < N; i++){
            t1 = 12 * (src[0] + src[4]);
            t2 = 12 * (src[0] - src[4]);
            t3 = 16 * src[2] +  6 * src[6];
            t4 =  6 * src[2] - 16 * src[6];

            t5 = t1 + t3;
            t6 = t2 + t4;
            t7 = t2 - t4;
            t8 = t1 - t3;

            t1 = 16 * src[1] + 15 * src[3] +  9 * src[5] +  4 * src[7];
            t2 = 15 * src[1] -  4 * src[3] - 16 * src[5] -  9 * src[7];
            t3 =  9 * src[1] - 16 * src[3] +  4 * src[5] + 15 * src[7];
            t4 =  4 * src[1] -  9 * src[3] + 15 * src[5] - 16 * src[7];

            dst[0] = (t5 + t1 + 4) >> 3;
            dst[1] = (t6 + t2 + 4) >> 3;
            dst[2] = (t7 + t3 + 4) >> 3;
            dst[3] = (t8 + t4 + 4) >> 3;
            dst[4] = (t8 - t4 + 4) >> 3;
            dst[5] = (t7 - t3 + 4) >> 3;
            dst[6] = (t6 - t2 + 4) >> 3;
            dst[7] = (t5 - t1 + 4) >> 3;

            src += 8;
            dst += 8;
768
        }
769
    }
770

771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
    src = block;
    dst = block;
    if(N==4){
        for(i = 0; i < M; i++){
            t1 = 17 * (src[ 0] + src[16]);
            t2 = 17 * (src[ 0] - src[16]);
            t3 = 22 * src[ 8];
            t4 = 22 * src[24];
            t5 = 10 * src[ 8];
            t6 = 10 * src[24];

            dst[ 0] = (t1 + t3 + t6 + 64) >> 7;
            dst[ 8] = (t2 - t4 + t5 + 64) >> 7;
            dst[16] = (t2 + t4 - t5 + 64) >> 7;
            dst[24] = (t1 - t3 - t6 + 64) >> 7;

            src ++;
            dst ++;
789
        }
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
    }else{
        for(i = 0; i < M; i++){
            t1 = 12 * (src[ 0] + src[32]);
            t2 = 12 * (src[ 0] - src[32]);
            t3 = 16 * src[16] +  6 * src[48];
            t4 =  6 * src[16] - 16 * src[48];

            t5 = t1 + t3;
            t6 = t2 + t4;
            t7 = t2 - t4;
            t8 = t1 - t3;

            t1 = 16 * src[ 8] + 15 * src[24] +  9 * src[40] +  4 * src[56];
            t2 = 15 * src[ 8] -  4 * src[24] - 16 * src[40] -  9 * src[56];
            t3 =  9 * src[ 8] - 16 * src[24] +  4 * src[40] + 15 * src[56];
            t4 =  4 * src[ 8] -  9 * src[24] + 15 * src[40] - 16 * src[56];

            dst[ 0] = (t5 + t1 + 64) >> 7;
            dst[ 8] = (t6 + t2 + 64) >> 7;
            dst[16] = (t7 + t3 + 64) >> 7;
            dst[24] = (t8 + t4 + 64) >> 7;
            dst[32] = (t8 - t4 + 64 + 1) >> 7;
            dst[40] = (t7 - t3 + 64 + 1) >> 7;
            dst[48] = (t6 - t2 + 64 + 1) >> 7;
            dst[56] = (t5 - t1 + 64 + 1) >> 7;

            src++;
            dst++;
818 819
        }
    }
820
}
821

822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
/** Apply overlap transform
 * @todo optimize
 * @todo move to DSPContext
 */
static void vc1_overlap_block(MpegEncContext *s, DCTELEM block[64], int n, int do_hor, int do_vert)
{
    int i;

    if(do_hor) { //TODO
    }
    if(do_vert) { //TODO
    }

    for(i = 0; i < 64; i++)
        block[i] += 128;
}


840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
static void vc1_v_overlap(uint8_t* src, int stride)
{
    int i;
    int a, b, c, d;
    for(i = 0; i < 8; i++) {
        a = src[-2*stride];
        b = src[-stride];
        c = src[0];
        d = src[stride];

        src[-2*stride] = (7*a + d) >> 3;
        src[-stride] = (-a + 7*b + c + d) >> 3;
        src[0] = (a + b + 7*c - d) >> 3;
        src[stride] = (a + 7*d) >> 3;
        src++;
    }
}

static void vc1_h_overlap(uint8_t* src, int stride)
{
    int i;
    int a, b, c, d;
    for(i = 0; i < 8; i++) {
        a = src[-2];
        b = src[-1];
        c = src[0];
        d = src[1];

        src[-2] = (7*a + d) >> 3;
        src[-1] = (-a + 7*b + c + d) >> 3;
        src[0] = (a + b + 7*c - d) >> 3;
        src[1] = (a + 7*d) >> 3;
        src += stride;
    }
}

876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
/** Put block onto picture
 * @todo move to DSPContext
 */
static void vc1_put_block(VC1Context *v, DCTELEM block[6][64])
{
    uint8_t *Y;
    int ys, us, vs;
    DSPContext *dsp = &v->s.dsp;

    ys = v->s.current_picture.linesize[0];
    us = v->s.current_picture.linesize[1];
    vs = v->s.current_picture.linesize[2];
    Y = v->s.dest[0];

    dsp->put_pixels_clamped(block[0], Y, ys);
    dsp->put_pixels_clamped(block[1], Y + 8, ys);
    Y += ys * 8;
    dsp->put_pixels_clamped(block[2], Y, ys);
    dsp->put_pixels_clamped(block[3], Y + 8, ys);

    dsp->put_pixels_clamped(block[4], v->s.dest[1], us);
    dsp->put_pixels_clamped(block[5], v->s.dest[2], vs);
}

900 901 902 903 904
/* clip motion vector as specified in 8.3.6.5 */
#define CLIP_RANGE(mv, src, lim, bs)      \
    if(mv < -bs) mv = -bs - src * bs; \
    if(mv > lim) mv = lim - src * bs;

905 906 907 908 909 910 911 912
/** Do motion compensation over 1 macroblock
 * Mostly adapted hpel_motion and qpel_motion from mpegvideo.c
 */
static void vc1_mc_1mv(VC1Context *v)
{
    MpegEncContext *s = &v->s;
    DSPContext *dsp = &v->s.dsp;
    uint8_t *srcY, *srcU, *srcV;
913
    int dxy, uvdxy, mx, my, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
914 915 916

    if(!v->s.last_picture.data[0])return;

917 918 919 920
    mx = s->mv[0][0][0];
    my = s->mv[0][0][1];
    uvmx = (mx + ((mx & 3) == 3)) >> 1;
    uvmy = (my + ((my & 3) == 3)) >> 1;
921 922 923 924
    srcY = s->last_picture.data[0];
    srcU = s->last_picture.data[1];
    srcV = s->last_picture.data[2];

925
    if(v->fastuvmc) { // XXX: 8.3.5.4.5 specifies something different
926 927
        uvmx = (uvmx + 1) & ~1;
        uvmy = (uvmy + 1) & ~1;
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
    }

    src_x = s->mb_x * 16 + (mx >> 2);
    src_y = s->mb_y * 16 + (my >> 2);
    uvsrc_x = s->mb_x * 8 + (uvmx >> 2);
    uvsrc_y = s->mb_y * 8 + (uvmy >> 2);

    CLIP_RANGE(  src_x, s->mb_x, s->mb_width  * 16, 16);
    CLIP_RANGE(  src_y, s->mb_y, s->mb_height * 16, 16);
    CLIP_RANGE(uvsrc_x, s->mb_x, s->mb_width  *  8,  8);
    CLIP_RANGE(uvsrc_y, s->mb_y, s->mb_height *  8,  8);

    srcY += src_y * s->linesize + src_x;
    srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
    srcV += uvsrc_y * s->uvlinesize + uvsrc_x;

    if((unsigned)src_x > s->h_edge_pos - (mx&3) - 16
       || (unsigned)src_y > s->v_edge_pos - (my&3) - 16){
        uint8_t *uvbuf= s->edge_emu_buffer + 18 * s->linesize;

        ff_emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, 16+1, 16+1,
                            src_x, src_y, s->h_edge_pos, s->v_edge_pos);
        srcY = s->edge_emu_buffer;
        ff_emulated_edge_mc(uvbuf     , srcU, s->uvlinesize, 8+1, 8+1,
                            uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
        ff_emulated_edge_mc(uvbuf + 16, srcV, s->uvlinesize, 8+1, 8+1,
                            uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
        srcU = uvbuf;
        srcV = uvbuf + 16;
    }

    if(!s->quarter_sample) { // hpel mc
        mx >>= 1;
        my >>= 1;
962
        dxy = ((my & 1) << 1) | (mx & 1);
963 964
        uvdxy = 0;

965 966
        dsp->put_no_rnd_pixels_tab[0][dxy](s->dest[0], srcY, s->linesize, 16);
    } else {
967 968
        dxy = ((my & 3) << 2) | (mx & 3);
        uvdxy = ((uvmy & 1) << 1) | (uvmx & 1);
969 970 971

        dsp->put_no_rnd_qpel_pixels_tab[0][dxy](s->dest[0], srcY, s->linesize);
    }
972 973 974 975
    dsp->put_no_rnd_pixels_tab[1][uvdxy](s->dest[1], srcU, s->uvlinesize, 8);
    dsp->put_no_rnd_pixels_tab[1][uvdxy](s->dest[2], srcV, s->uvlinesize, 8);
//    dsp->put_mspel_pixels_tab[uvdxy](s->dest[1], srcU, s->uvlinesize);
//    dsp->put_mspel_pixels_tab[uvdxy](s->dest[2], srcV, s->uvlinesize);
976 977
}

978
/**
A
anonymous 已提交
979 980 981 982 983 984
 * 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
 */
985 986
static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
{
987
    VC1Context *v = avctx->priv_data;
988

989
    av_log(avctx, AV_LOG_INFO, "Header: %0X\n", show_bits(gb, 32));
990
    v->profile = get_bits(gb, 2);
991
    if (v->profile == 2)
992
    {
993
        av_log(avctx, AV_LOG_ERROR, "Profile value 2 is forbidden (and WMV3 Complex Profile is unsupported)\n");
994 995
        return -1;
    }
996

997
    if (v->profile == PROFILE_ADVANCED)
998 999
    {
        v->level = get_bits(gb, 3);
1000 1001 1002 1003
        if(v->level >= 5)
        {
            av_log(avctx, AV_LOG_ERROR, "Reserved LEVEL %i\n",v->level);
        }
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
        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
    {
        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);
1019
            return -1;
1020 1021 1022 1023 1024 1025 1026
        }
    }

    // (fps-2)/4 (->30)
    v->frmrtq_postproc = get_bits(gb, 3); //common
    // (bitrate-32kbps)/64kbps
    v->bitrtq_postproc = get_bits(gb, 5); //common
1027
    v->s.loop_filter = get_bits(gb, 1); //common
1028 1029 1030 1031 1032
    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");
    }
1033

1034
    if (v->profile < PROFILE_ADVANCED)
1035 1036 1037 1038 1039 1040
    {
        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");
1041
            //return -1;
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
        }
        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 已提交
1069

1070
    if (v->profile < PROFILE_ADVANCED)
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
    {
        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

1083
    if (v->profile < PROFILE_ADVANCED)
1084
    {
A
anonymous 已提交
1085
        v->s.resync_marker = get_bits(gb, 1);
1086
        v->rangered = get_bits(gb, 1);
1087 1088
        if (v->rangered && v->profile == PROFILE_SIMPLE)
        {
1089
            av_log(avctx, AV_LOG_INFO,
I
Ivan Kalvachev 已提交
1090
                   "RANGERED should be set to 0 in simple profile\n");
1091
        }
1092 1093
    }

A
anonymous 已提交
1094
    v->s.max_b_frames = avctx->max_b_frames = get_bits(gb, 3); //common
1095 1096
    v->quantizer_mode = get_bits(gb, 2); //common

1097
    if (v->profile < PROFILE_ADVANCED)
1098 1099 1100 1101 1102 1103 1104 1105 1106
    {
        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;
        }
1107
        av_log(avctx, AV_LOG_DEBUG,
1108 1109 1110 1111 1112
               "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 已提交
1113
               v->s.loop_filter, v->multires, v->fastuvmc, v->extended_mv,
A
anonymous 已提交
1114
               v->rangered, v->vstransform, v->overlap, v->s.resync_marker,
1115 1116
               v->dquant, v->quantizer_mode, avctx->max_b_frames
               );
A
Fixes:  
anonymous 已提交
1117
        return 0;
1118
    }
1119
    return -1;
1120 1121 1122
}


1123
static int vc1_parse_frame_header(VC1Context *v, GetBitContext* gb)
1124
{
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
    int pqindex, lowquant, status;

    if(v->finterpflag) v->interpfrm = get_bits(gb, 1);
    skip_bits(gb, 2); //framecnt unused
    v->rangeredfrm = 0;
    if (v->rangered) v->rangeredfrm = get_bits(gb, 1);
    v->s.pict_type = get_bits(gb, 1);
    if (v->s.avctx->max_b_frames) {
        if (!v->s.pict_type) {
            if (get_bits(gb, 1)) v->s.pict_type = I_TYPE;
            else v->s.pict_type = B_TYPE;
        } else v->s.pict_type = P_TYPE;
    } else v->s.pict_type = v->s.pict_type ? P_TYPE : I_TYPE;

    if(v->s.pict_type == I_TYPE)
        get_bits(gb, 7); // skip buffer fullness

    /* Quantizer stuff */
    pqindex = get_bits(gb, 5);
    if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
        v->pq = pquant_table[0][pqindex];
    else
        v->pq = pquant_table[v->quantizer_mode-1][pqindex];

    if (v->quantizer_mode == QUANT_FRAME_IMPLICIT)
        v->pquantizer = pqindex < 9;
    if (v->quantizer_mode == QUANT_UNIFORM || v->quantizer_mode == QUANT_NON_UNIFORM)
        v->pquantizer = v->quantizer_mode == QUANT_UNIFORM;
    v->pqindex = pqindex;
    if (pqindex < 9) v->halfpq = get_bits(gb, 1);
    else v->halfpq = 0;
    if (v->quantizer_mode == QUANT_FRAME_EXPLICIT)
        v->pquantizer = get_bits(gb, 1);
    v->dquantfrm = 0;

//av_log(v->s.avctx, AV_LOG_INFO, "%c Frame: QP=[%i]%i (+%i/2) %i\n",
//        (v->s.pict_type == P_TYPE) ? 'P' : ((v->s.pict_type == I_TYPE) ? 'I' : 'B'), pqindex, v->pq, v->halfpq, v->rangeredfrm);

    //TODO: complete parsing for P/B/BI frames
    switch(v->s.pict_type) {
    case P_TYPE:
        if (v->pq < 5) v->tt_index = 0;
        else if(v->pq < 13) v->tt_index = 1;
        else v->tt_index = 2;

        if (v->extended_mv == 1) v->mvrange = get_prefix(gb, 0, 3);
        v->k_x = v->mvrange + 9 + (v->mvrange >> 1); //k_x can be 9 10 12 13
        v->k_y = v->mvrange + 8; //k_y can be 8 9 10 11
        v->range_x = 1 << (v->k_x - 1);
        v->range_y = 1 << (v->k_y - 1);
        if (v->profile == PROFILE_ADVANCED)
        {
            if (v->postprocflag) v->postproc = get_bits(gb, 1);
        }
        else
            if (v->multires) v->respic = get_bits(gb, 2);
        lowquant = (v->pq > 12) ? 0 : 1;
        v->mv_mode = mv_pmode_table[lowquant][get_prefix(gb, 1, 4)];
        if (v->mv_mode == MV_PMODE_INTENSITY_COMP)
        {
            v->mv_mode2 = mv_pmode_table[lowquant][get_prefix(gb, 1, 3)];
            v->lumscale = get_bits(gb, 6);
            v->lumshift = get_bits(gb, 6);
        }
        if(v->mv_mode == MV_PMODE_1MV_HPEL || v->mv_mode == MV_PMODE_1MV_HPEL_BILIN)
1190
            v->s.quarter_sample = 0;
1191
        else
1192
            v->s.quarter_sample = 1;
1193 1194 1195 1196 1197 1198 1199 1200 1201

if(v->mv_mode != MV_PMODE_1MV && v->mv_mode != MV_PMODE_1MV_HPEL && v->mv_mode != MV_PMODE_1MV_HPEL_BILIN) {
    av_log(v->s.avctx, AV_LOG_ERROR, "Only 1MV P-frames are supported by now\n");
    return -1;
}
        if ((v->mv_mode == MV_PMODE_INTENSITY_COMP &&
                 v->mv_mode2 == MV_PMODE_MIXED_MV)
                || v->mv_mode == MV_PMODE_MIXED_MV)
        {
1202
            status = bitplane_decoding(v->mv_type_mb_plane, &v->mv_type_is_raw, v);
1203 1204 1205
            if (status < 0) return -1;
            av_log(v->s.avctx, AV_LOG_DEBUG, "MB MV Type plane encoding: "
                   "Imode: %i, Invert: %i\n", status>>1, status&1);
1206 1207 1208
        } else {
            v->mv_type_is_raw = 0;
            memset(v->mv_type_mb_plane, 0, v->s.mb_stride * v->s.mb_height);
1209
        }
1210
        status = bitplane_decoding(v->skip_mb_plane, &v->skip_is_raw, v);
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
        if (status < 0) return -1;
        av_log(v->s.avctx, AV_LOG_DEBUG, "MB Skip plane encoding: "
               "Imode: %i, Invert: %i\n", status>>1, status&1);

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

        if (v->dquant)
        {
            av_log(v->s.avctx, AV_LOG_DEBUG, "VOP DQuant info\n");
            vop_dquant_decoding(v);
        }

        v->ttfrm = 0; //FIXME Is that so ?
        if (v->vstransform)
        {
            v->ttmbf = get_bits(gb, 1);
            if (v->ttmbf)
            {
                v->ttfrm = get_bits(gb, 2);
            }
        }
        break;
    case B_TYPE:
        break;
1237
    }
1238 1239 1240 1241

    /* AC Syntax */
    v->c_ac_table_index = decode012(gb);
    if (v->s.pict_type == I_TYPE || v->s.pict_type == BI_TYPE)
1242
    {
1243
        v->y_ac_table_index = decode012(gb);
1244
    }
1245 1246 1247
    /* DC Syntax */
    v->s.dc_table_index = get_bits(gb, 1);

1248 1249 1250
    return 0;
}

A
anonymous 已提交
1251 1252
/***********************************************************************/
/**
1253 1254 1255
 * @defgroup block VC-1 Block-level functions
 * @see 7.1.4, p91 and 8.1.1.7, p(1)04
 * @todo TODO: Integrate to MpegEncContext facilities
A
anonymous 已提交
1256 1257 1258
 * @{
 */

1259 1260 1261 1262 1263
/**
 * @def GET_MQUANT
 * @brief Get macroblock-level quantizer scale
 * @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 已提交
1264
 */
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
#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);                         \
      }                                                        \
    }                                                          \
    else mquant = v->pq;                                       \
  }
A
anonymous 已提交
1283

1284 1285 1286 1287 1288 1289 1290
/**
 * @def GET_MVDATA(_dmv_x, _dmv_y)
 * @brief Get MV differentials
 * @see MVDATA decoding from 8.3.5.2, p(1)20
 * @param _dmv_x Horizontal differential for decoded MV
 * @param _dmv_y Vertical differential for decoded MV
 * @todo TODO: Use MpegEncContext arrays to store them
A
anonymous 已提交
1291
 */
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
#define GET_MVDATA(_dmv_x, _dmv_y)                                  \
  index = 1 + get_vlc2(gb, vc1_mv_diff_vlc[s->mv_table_index].table,\
                       VC1_MV_DIFF_VLC_BITS, 2);                    \
  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)                                             \
  {                                                                 \
1305 1306
    _dmv_x = get_bits(gb, v->k_x - 1 + s->quarter_sample);          \
    _dmv_y = get_bits(gb, v->k_y - 1 + s->quarter_sample);          \
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
  }                                                                 \
  else if (index == 36)                                             \
  {                                                                 \
    _dmv_x = 0;                                                     \
    _dmv_y = 0;                                                     \
    s->mb_intra = 1;                                                \
  }                                                                 \
  else                                                              \
  {                                                                 \
    index1 = index%6;                                               \
1317 1318
    if (!s->quarter_sample && index1 == 5) val = 1;                 \
    else                                   val = 0;                 \
1319 1320 1321
    if(size_table[index1] - val > 0)                                \
        val = get_bits(gb, size_table[index1] - val);               \
    else                                   val = 0;                 \
1322 1323 1324 1325
    sign = 0 - (val&1);                                             \
    _dmv_x = (sign ^ ((val>>1) + offset_table[index1])) - sign;     \
                                                                    \
    index1 = index/6;                                               \
1326 1327
    if (!s->quarter_sample && index1 == 5) val = 1;                 \
    else                                   val = 0;                 \
1328 1329 1330
    if(size_table[index1] - val > 0)                                \
        val = get_bits(gb, size_table[index1] - val);               \
    else                                   val = 0;                 \
1331 1332 1333
    sign = 0 - (val&1);                                             \
    _dmv_y = (sign ^ ((val>>1) + offset_table[index1])) - sign;     \
  }
1334

1335
/** Predict and set motion vector
A
anonymous 已提交
1336
 */
1337
static inline void vc1_pred_mv(MpegEncContext *s, int dmv_x, int dmv_y, int mv1, int r_x, int r_y)
A
anonymous 已提交
1338
{
1339 1340 1341 1342 1343
    int xy, wrap, off;
    int16_t *A, *B, *C;
    int px, py;
    int sum;
    int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
A
anonymous 已提交
1344

1345
    /* scale MV difference to be quad-pel */
1346 1347
    dmv_x <<= 1 - s->quarter_sample;
    dmv_y <<= 1 - s->quarter_sample;
1348

1349 1350
    wrap = s->b8_stride;
    xy = s->block_index[0];
1351

1352 1353 1354 1355
    C = s->current_picture.motion_val[0][xy - (1 << mv1)];
    A = s->current_picture.motion_val[0][xy - (wrap << mv1)];
    off = (s->mb_x == (s->mb_width - 1)) ? -1 : 1;
    B = s->current_picture.motion_val[0][xy + ((off - wrap) << mv1)];
1356

1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393
    if(!s->first_slice_line) { // predictor A is not out of bounds
        if(s->mb_width == 1) {
            px = A[0];
            py = A[1];
        } else {
            px = mid_pred(A[0], B[0], C[0]);
            py = mid_pred(A[1], B[1], C[1]);
        }
    } else if(s->mb_x) { // predictor C is not out of bounds
        px = C[0];
        py = C[1];
    } else {
        px = py = 0;
    }
    if(s->mb_intra) px = py = 0;

    /* Pullback MV as specified in 8.3.5.3.4 */
    {
        int qx, qy, X, Y;
        qx = s->mb_x << 6; //FIXME: add real block coords for 4MV mode
        qy = s->mb_y << 6;
        X = (s->mb_width << 6) - 4;
        Y = (s->mb_height << 6) - 4;
        if(mv1) {
            if(qx + px < -60) px = -60 - qx;
            if(qy + py < -60) py = -60 - qy;
        } else {
            if(qx + px < -28) px = -28 - qx;
            if(qy + py < -28) py = -28 - qy;
        }
        if(qx + px > X) px = X - qx;
        if(qy + py > Y) py = Y - qy;
    }
    /* Calculate hybrid prediction as specified in 8.3.5.3.5 */
    if(!s->mb_intra && !s->first_slice_line && s->mb_x) {
        if(IS_INTRA(s->current_picture.mb_type[mb_pos - s->mb_stride]))
            sum = ABS(px) + ABS(py);
1394
        else
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
            sum = ABS(px - A[0]) + ABS(py - A[1]);
        if(sum > 32) {
            if(get_bits1(&s->gb)) {
                px = A[0];
                py = A[1];
            } else {
                px = C[0];
                py = C[1];
            }
        } else {
            if(IS_INTRA(s->current_picture.mb_type[mb_pos - 1]))
                sum = ABS(px) + ABS(py);
            else
                sum = ABS(px - C[0]) + ABS(py - C[1]);
            if(sum > 32) {
                if(get_bits1(&s->gb)) {
                    px = A[0];
                    py = A[1];
                } else {
                    px = C[0];
                    py = C[1];
                }
            }
        }
1419
    }
1420 1421 1422
    /* store MV using signed modulus of MV range defined in 4.11 */
    s->mv[0][0][0] = s->current_picture.motion_val[0][xy][0] = ((px + dmv_x + r_x) & ((r_x << 1) - 1)) - r_x;
    s->mv[0][0][1] = s->current_picture.motion_val[0][xy][1] = ((py + dmv_y + r_y) & ((r_y << 1) - 1)) - r_y;
1423 1424
}

1425 1426 1427 1428 1429 1430
/** Get predicted DC value for I-frames only
 * prediction dir: left=0, top=1
 * @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
A
anonymous 已提交
1431
 */
1432 1433
static inline int vc1_i_pred_dc(MpegEncContext *s, int overlap, int pq, int n,
                              int16_t **dc_val_ptr, int *dir_ptr)
1434
{
1435 1436 1437 1438 1439 1440 1441 1442
    int a, b, c, wrap, pred, scale;
    int16_t *dc_val;
    static const uint16_t dcpred[32] = {
    -1, 1024,  512,  341,  256,  205,  171,  146,  128,
         114,  102,   93,   85,   79,   73,   68,   64,
          60,   57,   54,   51,   49,   47,   45,   43,
          41,   39,   38,   37,   35,   34,   33
    };
A
anonymous 已提交
1443

1444 1445 1446
    /* find prediction - wmv3_dc_scale always used here in fact */
    if (n < 4)     scale = s->y_dc_scale;
    else           scale = s->c_dc_scale;
1447

1448 1449
    wrap = s->block_wrap[n];
    dc_val= s->dc_val[0] + s->block_index[n];
1450

1451 1452 1453 1454 1455 1456
    /* B A
     * C X
     */
    c = dc_val[ - 1];
    b = dc_val[ - 1 - wrap];
    a = dc_val[ - wrap];
1457

1458
    if (pq < 9 || !overlap)
1459
    {
1460 1461 1462
        /* Set outer values */
        if (!s->mb_y && (n!=2 && n!=3)) b=a=dcpred[scale];
        if (s->mb_x == 0 && (n!=1 && n!=3)) b=c=dcpred[scale];
1463 1464 1465
    }
    else
    {
1466 1467 1468
        /* Set outer values */
        if (!s->mb_y && (n!=2 && n!=3)) b=a=0;
        if (s->mb_x == 0 && (n!=1 && n!=3)) b=c=0;
1469 1470
    }

1471 1472 1473 1474 1475 1476
    if (abs(a - b) <= abs(b - c)) {
        pred = c;
        *dir_ptr = 1;//left
    } else {
        pred = a;
        *dir_ptr = 0;//top
1477 1478
    }

1479 1480 1481
    /* update predictor */
    *dc_val_ptr = &dc_val[0];
    return pred;
1482 1483
}

1484

1485 1486 1487 1488 1489 1490
/** Get predicted DC value
 * prediction dir: left=0, top=1
 * @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
A
anonymous 已提交
1491
 */
1492 1493 1494
static inline int vc1_pred_dc(MpegEncContext *s, int overlap, int pq, int n,
                              int a_avail, int c_avail,
                              int16_t **dc_val_ptr, int *dir_ptr)
1495
{
1496 1497 1498 1499
    int a, b, c, wrap, pred, scale;
    int16_t *dc_val;
    int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
    int mb_pos2, q1, q2;
1500

1501 1502 1503
    /* find prediction - wmv3_dc_scale always used here in fact */
    if (n < 4)     scale = s->y_dc_scale;
    else           scale = s->c_dc_scale;
1504

1505 1506
    wrap = s->block_wrap[n];
    dc_val= s->dc_val[0] + s->block_index[n];
1507

1508 1509 1510 1511 1512 1513
    /* B A
     * C X
     */
    c = dc_val[ - 1];
    b = dc_val[ - 1 - wrap];
    a = dc_val[ - wrap];
1514

1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
    if(a_avail && c_avail) {
        if(abs(a - b) <= abs(b - c)) {
            pred = c;
            *dir_ptr = 1;//left
        } else {
            pred = a;
            *dir_ptr = 0;//top
        }
    } else if(a_avail) {
        pred = a;
        *dir_ptr = 0;//top
    } else if(c_avail) {
        pred = c;
        *dir_ptr = 1;//left
    } else {
        pred = 0;
        *dir_ptr = 1;//left
1532 1533
    }

1534 1535 1536 1537 1538 1539 1540 1541
    /* scale coeffs if needed */
    mb_pos2 = mb_pos - *dir_ptr - (1 - *dir_ptr) * s->mb_stride;
    q1 = s->current_picture.qscale_table[mb_pos];
    q2 = s->current_picture.qscale_table[mb_pos2];
    if(0 && q1 && q2 && q1 != q2) {
        q1 = s->y_dc_scale_table[q1];
        q2 = s->y_dc_scale_table[q2];
        pred = (pred * q2 * vc1_dqscale[q1 - 1] + 0x20000) >> 18;
1542
    }
1543 1544 1545 1546

    /* update predictor */
    *dc_val_ptr = &dc_val[0];
    return pred;
1547
}
A
anonymous 已提交
1548

1549

1550
/**
1551 1552 1553
 * @defgroup std_mb VC1 Macroblock-level functions in Simple/Main Profiles
 * @see 7.1.4, p91 and 8.1.1.7, p(1)04
 * @todo TODO: Integrate to MpegEncContext facilities
A
anonymous 已提交
1554 1555
 * @{
 */
1556

1557
static inline int vc1_coded_block_pred(MpegEncContext * s, int n, uint8_t **coded_block_ptr)
1558
{
1559
    int xy, wrap, pred, a, b, c;
1560

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

1564 1565 1566 1567 1568 1569
    /* B C
     * A X
     */
    a = s->coded_block[xy - 1       ];
    b = s->coded_block[xy - 1 - wrap];
    c = s->coded_block[xy     - wrap];
1570

1571 1572 1573 1574
    if (b == c) {
        pred = a;
    } else {
        pred = c;
1575
    }
1576 1577 1578 1579 1580

    /* store value */
    *coded_block_ptr = &s->coded_block[xy];

    return pred;
A
anonymous 已提交
1581 1582
}

1583 1584 1585 1586 1587 1588 1589
/**
 * Decode one AC coefficient
 * @param v The VC1 context
 * @param last Last coefficient
 * @param skip How much zero coefficients to skip
 * @param value Decoded AC coefficient value
 * @see 8.1.3.4
A
anonymous 已提交
1590
 */
1591
static void vc1_decode_ac_coeff(VC1Context *v, int *last, int *skip, int *value, int codingset)
A
anonymous 已提交
1592 1593
{
    GetBitContext *gb = &v->s.gb;
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
    int index, escape, run = 0, level = 0, lst = 0;

    index = get_vlc2(gb, vc1_ac_coeff_table[codingset].table, AC_VLC_BITS, 3);
    if (index != vc1_ac_sizes[codingset] - 1) {
        run = vc1_index_decode_table[codingset][index][0];
        level = vc1_index_decode_table[codingset][index][1];
        lst = index >= vc1_last_decode_table[codingset];
        if(get_bits(gb, 1))
            level = -level;
    } else {
        escape = decode210(gb);
1605
        if (escape != 2) {
1606 1607 1608 1609
            index = get_vlc2(gb, vc1_ac_coeff_table[codingset].table, AC_VLC_BITS, 3);
            run = vc1_index_decode_table[codingset][index][0];
            level = vc1_index_decode_table[codingset][index][1];
            lst = index >= vc1_last_decode_table[codingset];
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
            if(escape == 0) {
                if(lst)
                    level += vc1_last_delta_level_table[codingset][run];
                else
                    level += vc1_delta_level_table[codingset][run];
            } else {
                if(lst)
                    run += vc1_last_delta_run_table[codingset][level] + 1;
                else
                    run += vc1_delta_run_table[codingset][level] + 1;
            }
1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
            if(get_bits(gb, 1))
                level = -level;
        } else {
            int sign;
            lst = get_bits(gb, 1);
            if(v->s.esc3_level_length == 0) {
                if(v->pq < 8 || v->dquantfrm) { // table 59
                    v->s.esc3_level_length = get_bits(gb, 3);
                    if(!v->s.esc3_level_length)
                        v->s.esc3_level_length = get_bits(gb, 2) + 8;
                } else { //table 60
                    v->s.esc3_level_length = get_prefix(gb, 1, 6) + 2;
                }
                v->s.esc3_run_length = 3 + get_bits(gb, 2);
            }
            run = get_bits(gb, v->s.esc3_run_length);
            sign = get_bits(gb, 1);
            level = get_bits(gb, v->s.esc3_level_length);
            if(sign)
                level = -level;
        }
1642
    }
1643

1644 1645 1646
    *last = lst;
    *skip = run;
    *value = level;
1647 1648
}

1649 1650 1651 1652 1653
/** Decode intra block in intra frames - should be faster than decode_intra_block
 * @param v VC1Context
 * @param block block to decode
 * @param coded are AC coeffs present or not
 * @param codingset set of VLC to decode data
A
anonymous 已提交
1654
 */
1655
static int vc1_decode_i_block(VC1Context *v, DCTELEM block[64], int n, int coded, int codingset)
1656
{
A
anonymous 已提交
1657
    GetBitContext *gb = &v->s.gb;
1658 1659 1660 1661 1662 1663
    MpegEncContext *s = &v->s;
    int dc_pred_dir = 0; /* Direction of the DC prediction used */
    int run_diff, i;
    int16_t *dc_val;
    int16_t *ac_val, *ac_val2;
    int dcdiff;
1664

1665 1666 1667 1668 1669
    /* 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);
1670
    }
1671 1672 1673 1674 1675
    if (dcdiff < 0){
        av_log(s->avctx, AV_LOG_ERROR, "Illegal DC VLC\n");
        return -1;
    }
    if (dcdiff)
1676
    {
1677
        if (dcdiff == 119 /* ESC index value */)
1678
        {
1679 1680 1681 1682
            /* TODO: Optimize */
            if (v->pq == 1) dcdiff = get_bits(gb, 10);
            else if (v->pq == 2) dcdiff = get_bits(gb, 9);
            else dcdiff = get_bits(gb, 8);
1683
        }
1684
        else
1685
        {
1686 1687 1688 1689
            if (v->pq == 1)
                dcdiff = (dcdiff<<2) + get_bits(gb, 2) - 3;
            else if (v->pq == 2)
                dcdiff = (dcdiff<<1) + get_bits(gb, 1) - 1;
1690
        }
1691 1692
        if (get_bits(gb, 1))
            dcdiff = -dcdiff;
1693 1694
    }

1695 1696 1697
    /* Prediction */
    dcdiff += vc1_i_pred_dc(&v->s, v->overlap, v->pq, n, &dc_val, &dc_pred_dir);
    *dc_val = dcdiff;
A
anonymous 已提交
1698

1699
    /* Store the quantized DC coeff, used for prediction */
A
anonymous 已提交
1700

1701 1702 1703 1704
    if (n < 4) {
        block[0] = dcdiff * s->y_dc_scale;
    } else {
        block[0] = dcdiff * s->c_dc_scale;
1705
    }
1706 1707 1708 1709 1710
    /* Skip ? */
    run_diff = 0;
    i = 0;
    if (!coded) {
        goto not_coded;
1711
    }
1712

1713 1714
    //AC Decoding
    i = 1;
1715

1716 1717 1718 1719 1720
    {
        int last = 0, skip, value;
        const int8_t *zz_table;
        int scale;
        int k;
1721

1722
        scale = v->pq * 2 + v->halfpq;
I
Ivan Kalvachev 已提交
1723

1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745
        if(v->s.ac_pred) {
            if(!dc_pred_dir)
                zz_table = vc1_horizontal_zz;
            else
                zz_table = vc1_vertical_zz;
        } else
            zz_table = vc1_normal_zz;

        ac_val = s->ac_val[0][0] + s->block_index[n] * 16;
        ac_val2 = ac_val;
        if(dc_pred_dir) //left
            ac_val -= 16;
        else //top
            ac_val -= 16 * s->block_wrap[n];

        while (!last) {
            vc1_decode_ac_coeff(v, &last, &skip, &value, codingset);
            i += skip;
            if(i > 63)
                break;
            block[zz_table[i++]] = value;
        }
1746

1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
        /* apply AC prediction if needed */
        if(s->ac_pred) {
            if(dc_pred_dir) { //left
                for(k = 1; k < 8; k++)
                    block[k << 3] += ac_val[k];
            } else { //top
                for(k = 1; k < 8; k++)
                    block[k] += ac_val[k + 8];
            }
        }
        /* save AC coeffs for further prediction */
        for(k = 1; k < 8; k++) {
            ac_val2[k] = block[k << 3];
            ac_val2[k + 8] = block[k];
        }
I
Ivan Kalvachev 已提交
1762

1763 1764 1765 1766 1767 1768 1769
        /* scale AC coeffs */
        for(k = 1; k < 64; k++)
            if(block[k]) {
                block[k] *= scale;
                if(!v->pquantizer)
                    block[k] += (block[k] < 0) ? -v->pq : v->pq;
            }
1770

1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
        if(s->ac_pred) i = 63;
    }

not_coded:
    if(!coded) {
        int k, scale;
        ac_val = s->ac_val[0][0] + s->block_index[n] * 16;
        ac_val2 = ac_val;

        scale = v->pq * 2 + v->halfpq;
        memset(ac_val2, 0, 16 * 2);
        if(dc_pred_dir) {//left
            ac_val -= 16;
            if(s->ac_pred)
                memcpy(ac_val2, ac_val, 8 * 2);
        } else {//top
            ac_val -= 16 * s->block_wrap[n];
            if(s->ac_pred)
                memcpy(ac_val2 + 8, ac_val + 8, 8 * 2);
1790
        }
1791

1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
        /* apply AC prediction if needed */
        if(s->ac_pred) {
            if(dc_pred_dir) { //left
                for(k = 1; k < 8; k++) {
                    block[k << 3] = ac_val[k] * scale;
                    if(!v->pquantizer)
                        block[k << 3] += (block[k << 3] < 0) ? -v->pq : v->pq;
                }
            } else { //top
                for(k = 1; k < 8; k++) {
                    block[k] = ac_val[k + 8] * scale;
                    if(!v->pquantizer)
                        block[k] += (block[k] < 0) ? -v->pq : v->pq;
                }
            }
            i = 63;
        }
1809
    }
1810
    s->block_last_index[n] = i;
1811

1812
    return 0;
1813 1814
}

1815 1816 1817 1818 1819 1820
/** Decode intra block in inter frames - more generic version than vc1_decode_i_block
 * @param v VC1Context
 * @param block block to decode
 * @param coded are AC coeffs present or not
 * @param mquant block quantizer
 * @param codingset set of VLC to decode data
1821
 */
1822
static int vc1_decode_intra_block(VC1Context *v, DCTELEM block[64], int n, int coded, int mquant, int codingset)
A
Fixes:  
anonymous 已提交
1823
{
A
anonymous 已提交
1824
    GetBitContext *gb = &v->s.gb;
1825
    MpegEncContext *s = &v->s;
1826
    int dc_pred_dir = 0; /* Direction of the DC prediction used */
1827
    int run_diff, i;
1828 1829 1830 1831
    int16_t *dc_val;
    int16_t *ac_val, *ac_val2;
    int dcdiff;
    int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
1832
    int a_avail = v->a_avail, c_avail = v->c_avail;
A
Fixes:  
anonymous 已提交
1833

1834 1835 1836
    /* XXX: Guard against dumb values of mquant */
    mquant = (mquant < 1) ? 0 : ( (mquant>31) ? 31 : mquant );

1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890
    /* 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];

    /* 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){
        av_log(s->avctx, AV_LOG_ERROR, "Illegal DC VLC\n");
        return -1;
    }
    if (dcdiff)
    {
        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;
    }

    /* Prediction */
    dcdiff += vc1_pred_dc(&v->s, v->overlap, mquant, n, a_avail, c_avail, &dc_val, &dc_pred_dir);
    *dc_val = dcdiff;

    /* Store the quantized DC coeff, used for prediction */

    if (n < 4) {
        block[0] = dcdiff * s->y_dc_scale;
    } else {
        block[0] = dcdiff * s->c_dc_scale;
    }
    /* Skip ? */
    run_diff = 0;
    i = 0;
    if (!coded) {
        goto not_coded;
    }

    //AC Decoding
    i = 1;
1891

A
Fixes:  
anonymous 已提交
1892
    {
1893 1894 1895 1896
        int last = 0, skip, value;
        const int8_t *zz_table;
        int scale;
        int k;
1897

1898
        scale = mquant * 2;
1899

1900
        zz_table = vc1_simple_progressive_8x8_zz;
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914

        ac_val = s->ac_val[0][0] + s->block_index[n] * 16;
        ac_val2 = ac_val;
        if(dc_pred_dir) //left
            ac_val -= 16;
        else //top
            ac_val -= 16 * s->block_wrap[n];

        while (!last) {
            vc1_decode_ac_coeff(v, &last, &skip, &value, codingset);
            i += skip;
            if(i > 63)
                break;
            block[zz_table[i++]] = value;
A
Fixes:  
anonymous 已提交
1915
        }
1916

1917
        /* apply AC prediction if needed */
1918
        if(s->ac_pred && (v->a_avail || v->c_avail)) {
1919 1920
            /* scale predictors if needed*/
            int mb_pos2, q1, q2;
I
Ivan Kalvachev 已提交
1921

1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
            mb_pos2 = mb_pos - dc_pred_dir - (1 - dc_pred_dir) * s->mb_stride;
            q1 = s->current_picture.qscale_table[mb_pos];
            q2 = s->current_picture.qscale_table[mb_pos2];

            if(!c_avail) {
                memset(ac_val, 0, 8 * sizeof(ac_val[0]));
                dc_pred_dir = 0;
            }
            if(!a_avail) {
                memset(ac_val + 8, 0, 8 * sizeof(ac_val[0]));
                dc_pred_dir = 1;
            }
1934
            if(q2 && q1 != q2) {
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
                q1 = q1 * 2 - 1;
                q2 = q2 * 2 - 1;

                if(dc_pred_dir) { //left
                    for(k = 1; k < 8; k++)
                        block[k << 3] += (ac_val[k] * q2 * vc1_dqscale[q1 - 1] + 0x20000) >> 18;
                } else { //top
                    for(k = 1; k < 8; k++)
                        block[k] += (ac_val[k + 8] * q2 * vc1_dqscale[q1 - 1] + 0x20000) >> 18;
                }
            } else {
                if(dc_pred_dir) { //left
                    for(k = 1; k < 8; k++)
                        block[k << 3] += ac_val[k];
                } else { //top
                    for(k = 1; k < 8; k++)
                        block[k] += ac_val[k + 8];
                }
            }
1954
        }
1955 1956 1957 1958
        /* save AC coeffs for further prediction */
        for(k = 1; k < 8; k++) {
            ac_val2[k] = block[k << 3];
            ac_val2[k + 8] = block[k];
A
Fixes:  
anonymous 已提交
1959
        }
1960

1961 1962 1963 1964 1965 1966 1967
        /* scale AC coeffs */
        for(k = 1; k < 64; k++)
            if(block[k]) {
                block[k] *= scale;
                if(!v->pquantizer)
                    block[k] += (block[k] < 0) ? -mquant : mquant;
            }
1968

1969
        if(s->ac_pred) i = 63;
1970 1971
    }

1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985
not_coded:
    if(!coded) {
        int k, scale;
        ac_val = s->ac_val[0][0] + s->block_index[n] * 16;
        ac_val2 = ac_val;

        if(!c_avail) {
            memset(ac_val, 0, 8 * sizeof(ac_val[0]));
            dc_pred_dir = 0;
        }
        if(!a_avail) {
            memset(ac_val + 8, 0, 8 * sizeof(ac_val[0]));
            dc_pred_dir = 1;
        }
A
Fixes:  
anonymous 已提交
1986

1987
        scale = mquant * 2;
1988 1989 1990
        memset(ac_val2, 0, 16 * 2);
        if(dc_pred_dir) {//left
            ac_val -= 16;
1991
            if(s->ac_pred && (v->a_avail || v->c_avail))
1992 1993 1994
                memcpy(ac_val2, ac_val, 8 * 2);
        } else {//top
            ac_val -= 16 * s->block_wrap[n];
1995
            if(s->ac_pred && (v->a_avail || v->c_avail))
1996 1997
                memcpy(ac_val2 + 8, ac_val + 8, 8 * 2);
        }
1998

1999
        /* apply AC prediction if needed */
2000
        if(s->ac_pred && (v->a_avail || v->c_avail)) {
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
            if(dc_pred_dir) { //left
                for(k = 1; k < 8; k++) {
                    block[k << 3] = ac_val[k] * scale;
                    if(!v->pquantizer)
                        block[k << 3] += (block[k << 3] < 0) ? -mquant : mquant;
                }
            } else { //top
                for(k = 1; k < 8; k++) {
                    block[k] = ac_val[k + 8] * scale;
                    if(!v->pquantizer)
                        block[k] += (block[k] < 0) ? -mquant : mquant;
                }
            }
            i = 63;
2015 2016 2017
        }
    }
    s->block_last_index[n] = i;
2018

A
Fixes:  
anonymous 已提交
2019 2020
    return 0;
}
2021

2022
/** Decode P block
A
anonymous 已提交
2023
 */
2024
static int vc1_decode_p_block(VC1Context *v, DCTELEM block[64], int n, int mquant, int ttmb, int first_block)
2025
{
2026 2027 2028 2029 2030 2031
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &s->gb;
    int i, j;
    int subblkpat = 0;
    int scale, off, idx, last, skip, value;
    int ttblk = ttmb & 7;
I
Ivan Kalvachev 已提交
2032

2033 2034
    if(ttmb == -1) {
        ttblk = ttblk_to_tt[v->tt_index][get_vlc2(gb, vc1_ttblk_vlc[v->tt_index].table, VC1_TTBLK_VLC_BITS, 1)];
2035
    }
2036 2037 2038 2039 2040
    if(ttblk == TT_4X4) {
        subblkpat = ~(get_vlc2(gb, vc1_subblkpat_vlc[v->tt_index].table, VC1_SUBBLKPAT_VLC_BITS, 1) + 1);
    }
    if((ttblk != TT_8X8 && ttblk != TT_4X4) && (v->ttmbf || (ttmb != -1 && (ttmb & 8) && !first_block))) {
        subblkpat = decode012(gb);
2041
        if(subblkpat) subblkpat ^= 3; //swap decoded pattern bits
2042 2043 2044 2045
        if(ttblk == TT_8X4_TOP || ttblk == TT_8X4_BOTTOM) ttblk = TT_8X4;
        if(ttblk == TT_4X8_RIGHT || ttblk == TT_4X8_LEFT) ttblk = TT_4X8;
    }
    scale = 2 * mquant;
I
Ivan Kalvachev 已提交
2046

2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066
    // convert transforms like 8X4_TOP to generic TT and SUBBLKPAT
    if(ttblk == TT_8X4_TOP || ttblk == TT_8X4_BOTTOM) {
        ttblk = TT_8X4;
        subblkpat = 2 - (ttblk == TT_8X4_TOP);
    }
    if(ttblk == TT_4X8_RIGHT || ttblk == TT_4X8_LEFT) {
        ttblk = TT_4X8;
        subblkpat = 2 - (ttblk == TT_4X8_LEFT);
    }
    switch(ttblk) {
    case TT_8X8:
        i = 0;
        last = 0;
        while (!last) {
            vc1_decode_ac_coeff(v, &last, &skip, &value, v->codingset2);
            i += skip;
            if(i > 63)
                break;
            idx = vc1_simple_progressive_8x8_zz[i++];
            block[idx] = value * scale;
2067
        }
2068 2069 2070 2071 2072 2073
        vc1_inv_trans(block, 8, 8);
        break;
    case TT_4X4:
        for(j = 0; j < 4; j++) {
            last = subblkpat & (1 << (3 - j));
            i = 0;
2074
            off = (j & 1) * 4 + (j & 2) * 16;
2075 2076 2077 2078 2079 2080 2081 2082
            while (!last) {
                vc1_decode_ac_coeff(v, &last, &skip, &value, v->codingset2);
                i += skip;
                if(i > 15)
                    break;
                idx = vc1_simple_progressive_4x4_zz[i++];
                block[idx + off] = value * scale;
            }
2083 2084
            if(!(subblkpat & (1 << (3 - j))))
                vc1_inv_trans(block + off, 4, 4);
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099
        }
        break;
    case TT_8X4:
        for(j = 0; j < 2; j++) {
            last = subblkpat & (1 << (1 - j));
            i = 0;
            off = j * 32;
            while (!last) {
                vc1_decode_ac_coeff(v, &last, &skip, &value, v->codingset2);
                i += skip;
                if(i > 31)
                    break;
                idx = vc1_simple_progressive_8x4_zz[i++];
                block[idx + off] = value * scale;
            }
2100 2101
            if(!(subblkpat & (1 << (1 - j))))
                vc1_inv_trans(block + off, 8, 4);
2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113
        }
        break;
    case TT_4X8:
        for(j = 0; j < 2; j++) {
            last = subblkpat & (1 << (1 - j));
            i = 0;
            off = j * 4;
            while (!last) {
                vc1_decode_ac_coeff(v, &last, &skip, &value, v->codingset2);
                i += skip;
                if(i > 31)
                    break;
K
typo  
Kostya Shishkov 已提交
2114
                idx = vc1_simple_progressive_4x8_zz[i++];
2115 2116
                block[idx + off] = value * scale;
            }
2117 2118
            if(!(subblkpat & (1 << (1 - j))))
                vc1_inv_trans(block + off, 4, 8);
2119
        }
2120
        break;
2121 2122 2123 2124
    }
    return 0;
}

2125

2126 2127 2128 2129
/** Decode one P-frame MB (in Simple/Main profile)
 * @todo TODO: Extend to AP
 * @fixme FIXME: DC value for inter blocks not set
 */
2130
static int vc1_decode_p_mb(VC1Context *v, DCTELEM block[6][64])
2131 2132 2133
{
    MpegEncContext *s = &v->s;
    GetBitContext *gb = &s->gb;
2134
    int i, j;
2135
    int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
2136 2137 2138
    int cbp; /* cbp decoding stuff */
    int hybrid_pred; /* Prediction types */
    int mqdiff, mquant; /* MB quantization */
2139
    int ttmb = v->ttmb; /* MB Transform type */
2140 2141 2142 2143 2144 2145 2146 2147
    int status;

    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 */
2148 2149
    int first_block = 1;
    int dst_idx, off;
2150
    int skipped, fourmv;
2151

2152 2153
    mquant = v->pq; /* Loosy initialization */

2154 2155 2156 2157 2158 2159 2160 2161 2162 2163
    if (v->mv_type_is_raw)
        fourmv = get_bits1(gb);
    else
        fourmv = v->mv_type_mb_plane[mb_pos];
    if (v->skip_is_raw)
        skipped = get_bits1(gb);
    else
        skipped = v->skip_mb_plane[mb_pos];

    if (!fourmv) /* 1MV mode */
2164
    {
2165
        if (!skipped)
2166 2167
        {
            GET_MVDATA(dmv_x, dmv_y);
I
Ivan Kalvachev 已提交
2168

2169 2170 2171
            s->current_picture.mb_type[mb_pos] = s->mb_intra ? MB_TYPE_INTRA : MB_TYPE_16x16;
            vc1_pred_mv(s, dmv_x, dmv_y, 1, v->range_x, v->range_y);

2172
            /* FIXME Set DC val for inter block ? */
2173 2174 2175 2176
            if (s->mb_intra && !mb_has_coeffs)
            {
                GET_MQUANT();
                s->ac_pred = get_bits(gb, 1);
2177
                cbp = 0;
2178 2179 2180 2181
            }
            else if (mb_has_coeffs)
            {
                if (s->mb_intra) s->ac_pred = get_bits(gb, 1);
2182
                cbp = get_vlc2(&v->s.gb, v->cbpcy_vlc->table, VC1_CBPCY_P_VLC_BITS, 2);
2183 2184 2185 2186 2187
                GET_MQUANT();
            }
            else
            {
                mquant = v->pq;
2188
                cbp = 0;
2189
            }
2190
            s->current_picture.qscale_table[mb_pos] = mquant;
2191

2192
            if (!v->ttmbf && !s->mb_intra && mb_has_coeffs)
2193
                ttmb = get_vlc2(gb, vc1_ttmb_vlc[v->tt_index].table,
2194 2195 2196 2197
                                VC1_TTMB_VLC_BITS, 2);
            s->dsp.clear_blocks(block[0]);
            vc1_mc_1mv(v);
            dst_idx = 0;
2198 2199
            for (i=0; i<6; i++)
            {
2200 2201
                s->dc_val[0][s->block_index[i]] = 0;
                dst_idx += i >> 2;
2202
                val = ((cbp >> (5 - i)) & 1);
2203 2204
                off = (i & 4) ? 0 : ((i & 1) * 8 + (i & 2) * 4 * s->linesize);
                if(s->mb_intra) {
2205 2206 2207 2208 2209 2210 2211
                    /* check if prediction blocks A and C are available */
                    v->a_avail = v->c_avail = 0;
                    if((i == 2 || i == 3) || (s->mb_y && IS_INTRA(s->current_picture.mb_type[mb_pos - s->mb_stride])))
                        v->a_avail = 1;
                    if((i == 1 || i == 3) || (s->mb_x && IS_INTRA(s->current_picture.mb_type[mb_pos - 1])))
                        v->c_avail = 1;

2212
                    vc1_decode_intra_block(v, block[i], i, val, mquant, (i&4)?v->codingset2:v->codingset);
2213 2214 2215
                    vc1_inv_trans(block[i], 8, 8);
                    for(j = 0; j < 64; j++) block[i][j] += 128;
                    s->dsp.put_pixels_clamped(block[i], s->dest[dst_idx] + off, s->linesize >> ((i & 4) >> 2));
2216
                    /* TODO: proper loop filtering */
2217 2218 2219 2220 2221 2222
                    if(v->pq >= 9 && v->overlap) {
                        if(v->a_avail)
                            s->dsp.h263_v_loop_filter(s->dest[dst_idx] + off, s->linesize >> ((i & 4) >> 2), s->y_dc_scale);
                        if(v->c_avail)
                            s->dsp.h263_h_loop_filter(s->dest[dst_idx] + off, s->linesize >> ((i & 4) >> 2), s->y_dc_scale);
                    }
2223 2224 2225 2226
                } else if(val) {
                    vc1_decode_p_block(v, block[i], i, mquant, ttmb, first_block);
                    if(!v->ttmbf && ttmb < 8) ttmb = -1;
                    first_block = 0;
2227
                    s->dsp.add_pixels_clamped(block[i], s->dest[dst_idx] + off, (i&4)?s->uvlinesize:s->linesize);
2228 2229 2230 2231 2232
                }
            }
        }
        else //Skipped
        {
2233 2234 2235 2236
            s->mb_intra = 0;
            s->current_picture.mb_type[mb_pos] = MB_TYPE_SKIP;
            vc1_pred_mv(s, 0, 0, 1, v->range_x, v->range_y);
            vc1_mc_1mv(v);
2237 2238 2239 2240
            return 0;
        }
    } //1MV mode
    else //4MV mode
2241
    {//FIXME: looks not conforming to standard and is not even theoretically complete
2242
        if (!skipped /* unskipped MB */)
2243
        {
2244
            int blk_intra[4], blk_coded[4];
2245
            /* Get CBPCY */
2246
            cbp = get_vlc2(&v->s.gb, v->cbpcy_vlc->table, VC1_CBPCY_P_VLC_BITS, 2);
2247
            for (i=0; i<4; i++)
2248 2249
            {
                val = ((cbp >> (5 - i)) & 1);
2250 2251 2252
                blk_intra[i] = 0;
                blk_coded[i] = val;
                if(val) {
2253
                    GET_MVDATA(dmv_x, dmv_y);
2254
                    blk_intra[i] = s->mb_intra;
2255 2256 2257
                }
                if (v->mv_mode == MV_PMODE_MIXED_MV /* Hybrid pred */)
                    hybrid_pred = get_bits(gb, 1);
2258 2259 2260
            }
            if((blk_intra[0] | blk_intra[1] | blk_intra[2] | blk_intra[3]) ||
                (blk_coded[0] | blk_coded[1] | blk_coded[2] | blk_coded[3])) {
2261
                GET_MQUANT();
2262

2263 2264
                if (s->mb_intra /* One of the 4 blocks is intra */
                    /* non-zero pred for that block */)
2265 2266
                    s->ac_pred = get_bits(gb, 1);
                if (!v->ttmbf)
2267 2268
                    ttmb = get_vlc2(gb, vc1_ttmb_vlc[v->tt_index].table,
                                    VC1_TTMB_VLC_BITS, 12);
2269 2270 2271 2272 2273 2274 2275 2276 2277
                for(i = 0; i < 6; i++) {
                    val = ((cbp >> (5 - i)) & 1);
                    if(i & 4 || blk_intra[i] || val) {
                        if(i < 4 && blk_intra[i])
                            status = vc1_decode_intra_block(v, block[i], i, val, mquant, (i&4)?v->codingset2:v->codingset);
                        else
                            status = vc1_decode_p_block(v, block[i], i, mquant, ttmb, 0);
                    }
                }
2278 2279 2280 2281 2282
            }
            return status;
        }
        else //Skipped MB
        {
2283
            /* XXX: Skipped => cbp=0 and mquant doesn't matter ? */
2284 2285 2286 2287 2288 2289 2290 2291 2292
            for (i=0; i<4; i++)
            {
                if (v->mv_mode == MV_PMODE_MIXED_MV /* Hybrid pred */)
                    hybrid_pred = get_bits(gb, 1);
            }
            /* TODO: blah */
            return 0;
        }
    }
I
Ivan Kalvachev 已提交
2293

2294 2295 2296 2297
    /* Should never happen */
    return -1;
}

2298
/** Decode blocks of I-frame
2299
 */
2300
static void vc1_decode_i_blocks(VC1Context *v)
2301
{
2302
    int k;
2303
    MpegEncContext *s = &v->s;
2304 2305 2306
    int cbp, val;
    uint8_t *coded_val;
    int mb_pos;
I
Ivan Kalvachev 已提交
2307

2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
    /* select codingmode used for VLC tables selection */
    switch(v->y_ac_table_index){
    case 0:
        v->codingset = (v->pqindex <= 8) ? CS_HIGH_RATE_INTRA : CS_LOW_MOT_INTRA;
        break;
    case 1:
        v->codingset = CS_HIGH_MOT_INTRA;
        break;
    case 2:
        v->codingset = CS_MID_RATE_INTRA;
        break;
    }
I
Ivan Kalvachev 已提交
2320

2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
    switch(v->c_ac_table_index){
    case 0:
        v->codingset2 = (v->pqindex <= 8) ? CS_HIGH_RATE_INTER : CS_LOW_MOT_INTER;
        break;
    case 1:
        v->codingset2 = CS_HIGH_MOT_INTER;
        break;
    case 2:
        v->codingset2 = CS_MID_RATE_INTER;
        break;
    }
2332

2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355
    /* Set DC scale - y and c use the same */
    s->y_dc_scale = s->y_dc_scale_table[v->pq];
    s->c_dc_scale = s->c_dc_scale_table[v->pq];

    //do frame decode
    s->mb_x = s->mb_y = 0;
    s->mb_intra = 1;
    ff_er_add_slice(s, 0, 0, s->mb_width - 1, s->mb_height - 1, (AC_END|DC_END|MV_END));
    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++) {
            ff_init_block_index(s);
            ff_update_block_index(s);
            s->dsp.clear_blocks(s->block[0]);
            mb_pos = s->mb_x + s->mb_y * s->mb_width;
            s->current_picture.mb_type[mb_pos] = MB_TYPE_INTRA;
            s->current_picture.qscale_table[mb_pos] = v->pq;

            // do actual MB decoding and displaying
            cbp = get_vlc2(&v->s.gb, ff_msmp4_mb_i_vlc.table, MB_INTRA_VLC_BITS, 2);
            v->s.ac_pred = get_bits(&v->s.gb, 1);

            for(k = 0; k < 6; k++) {
                val = ((cbp >> (5 - k)) & 1);
2356

2357 2358 2359 2360 2361 2362
                if (k < 4) {
                    int pred = vc1_coded_block_pred(&v->s, k, &coded_val);
                    val = val ^ pred;
                    *coded_val = val;
                }
                cbp |= val << (5 - k);
I
Ivan Kalvachev 已提交
2363

2364 2365 2366 2367 2368 2369
                vc1_decode_i_block(v, s->block[k], k, val, (k<4)? v->codingset : v->codingset2);

                vc1_inv_trans(s->block[k], 8, 8);
                if(v->pq >= 9 && v->overlap) {
                    vc1_overlap_block(s, s->block[k], k, (s->mb_y || k>1), (s->mb_x || (k != 0 && k != 2)));
                }
2370 2371
            }

2372
            vc1_put_block(v, s->block);
2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390
            if(v->pq >= 9 && v->overlap) { /* XXX: do proper overlapping insted of loop filter */
                if(s->mb_y) {
                    s->dsp.h263_v_loop_filter(s->dest[0], s->linesize, s->y_dc_scale);
                    s->dsp.h263_v_loop_filter(s->dest[0] + 8, s->linesize, s->y_dc_scale);
                    s->dsp.h263_v_loop_filter(s->dest[1], s->uvlinesize, s->y_dc_scale);
                    s->dsp.h263_v_loop_filter(s->dest[2], s->uvlinesize, s->y_dc_scale);
                }
                s->dsp.h263_v_loop_filter(s->dest[0] + 8 * s->linesize, s->linesize, s->y_dc_scale);
                s->dsp.h263_v_loop_filter(s->dest[0] + 8 * s->linesize + 8, s->linesize, s->y_dc_scale);
                if(s->mb_x) {
                    s->dsp.h263_h_loop_filter(s->dest[0], s->linesize, s->y_dc_scale);
                    s->dsp.h263_h_loop_filter(s->dest[0] + 8 * s->linesize, s->linesize, s->y_dc_scale);
                    s->dsp.h263_h_loop_filter(s->dest[1], s->uvlinesize, s->y_dc_scale);
                    s->dsp.h263_h_loop_filter(s->dest[2], s->uvlinesize, s->y_dc_scale);
                }
                s->dsp.h263_h_loop_filter(s->dest[0] + 8, s->linesize, s->y_dc_scale);
                s->dsp.h263_h_loop_filter(s->dest[0] + 8 * s->linesize + 8, s->linesize, s->y_dc_scale);
            }
2391

2392 2393 2394 2395 2396 2397
            if(get_bits_count(&s->gb) > v->bits) {
                av_log(s->avctx, AV_LOG_ERROR, "Bits overconsumption: %i > %i\n", get_bits_count(&s->gb), v->bits);
                return;
            }
        }
        ff_draw_horiz_band(s, s->mb_y * 16, 16);
2398 2399 2400
    }
}

2401
static void vc1_decode_p_blocks(VC1Context *v)
2402 2403
{
    MpegEncContext *s = &v->s;
I
Ivan Kalvachev 已提交
2404

2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
    /* select codingmode used for VLC tables selection */
    switch(v->c_ac_table_index){
    case 0:
        v->codingset = (v->pqindex <= 8) ? CS_HIGH_RATE_INTRA : CS_LOW_MOT_INTRA;
        break;
    case 1:
        v->codingset = CS_HIGH_MOT_INTRA;
        break;
    case 2:
        v->codingset = CS_MID_RATE_INTRA;
        break;
2416
    }
I
Ivan Kalvachev 已提交
2417

2418 2419 2420 2421 2422 2423 2424 2425 2426 2427
    switch(v->c_ac_table_index){
    case 0:
        v->codingset2 = (v->pqindex <= 8) ? CS_HIGH_RATE_INTER : CS_LOW_MOT_INTER;
        break;
    case 1:
        v->codingset2 = CS_HIGH_MOT_INTER;
        break;
    case 2:
        v->codingset2 = CS_MID_RATE_INTER;
        break;
2428 2429
    }

2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441
    ff_er_add_slice(s, 0, 0, s->mb_width - 1, s->mb_height - 1, (AC_END|DC_END|MV_END));
    s->first_slice_line = 1;
    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++) {
            ff_init_block_index(s);
            ff_update_block_index(s);
            s->dsp.clear_blocks(s->block[0]);

            vc1_decode_p_mb(v, s->block);
            if(get_bits_count(&s->gb) > v->bits || get_bits_count(&s->gb) < 0) {
                av_log(s->avctx, AV_LOG_ERROR, "Bits overconsumption: %i > %i at %ix%i\n", get_bits_count(&s->gb), v->bits,s->mb_x,s->mb_y);
                return;
2442 2443
            }
        }
2444 2445
        ff_draw_horiz_band(s, s->mb_y * 16, 16);
        s->first_slice_line = 0;
2446 2447
    }
}
2448

2449
static void vc1_decode_blocks(VC1Context *v)
2450 2451
{

2452
    v->s.esc3_level_length = 0;
A
Fixes:  
anonymous 已提交
2453

2454 2455 2456 2457 2458 2459 2460
    switch(v->s.pict_type) {
    case I_TYPE:
        vc1_decode_i_blocks(v);
        break;
    case P_TYPE:
        vc1_decode_p_blocks(v);
        break;
2461 2462
    }
}
2463

2464

2465 2466
/** Initialize a VC1/WMV3 decoder
 * @todo TODO: Handle VC-1 IDUs (Transport level?)
A
anonymous 已提交
2467 2468
 * @todo TODO: Decypher remaining bits in extra_data
 */
2469
static int vc1_decode_init(AVCodecContext *avctx)
2470
{
2471
    VC1Context *v = avctx->priv_data;
A
anonymous 已提交
2472
    MpegEncContext *s = &v->s;
2473 2474 2475 2476
    GetBitContext gb;

    if (!avctx->extradata_size || !avctx->extradata) return -1;
    avctx->pix_fmt = PIX_FMT_YUV420P;
A
anonymous 已提交
2477
    v->s.avctx = avctx;
2478 2479
    avctx->flags |= CODEC_FLAG_EMU_EDGE;
    v->s.flags |= CODEC_FLAG_EMU_EDGE;
2480

A
anonymous 已提交
2481 2482
    if(ff_h263_decode_init(avctx) < 0)
        return -1;
2483
    if (vc1_init_common(v) < 0) return -1;
2484

A
Alex Beregszaszi 已提交
2485
    av_log(avctx, AV_LOG_INFO, "This decoder is not supposed to produce picture. Dont report this as a bug!\n");
2486
    av_log(avctx, AV_LOG_INFO, "If you see a picture, don't believe your eyes.\n");
A
Alex Beregszaszi 已提交
2487

A
Fixes:  
anonymous 已提交
2488 2489
    avctx->coded_width = avctx->width;
    avctx->coded_height = avctx->height;
2490 2491 2492 2493
    if (avctx->codec_id == CODEC_ID_WMV3)
    {
        int count = 0;

A
anonymous 已提交
2494 2495 2496 2497
        // 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
2498

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

2501 2502
        if (decode_sequence_header(avctx, &gb) < 0)
          return -1;
2503

A
anonymous 已提交
2504 2505 2506 2507 2508 2509
        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));
        }
2510
        else if (count < 0)
A
anonymous 已提交
2511 2512 2513
        {
            av_log(avctx, AV_LOG_INFO, "Read %i bits in overflow\n", -count);
        }
2514
    }
A
anonymous 已提交
2515
    avctx->has_b_frames= !!(avctx->max_b_frames);
2516

A
anonymous 已提交
2517 2518
    s->mb_width = (avctx->coded_width+15)>>4;
    s->mb_height = (avctx->coded_height+15)>>4;
2519 2520

    /* Allocate mb bitplanes */
2521 2522
    v->mv_type_mb_plane = av_malloc(s->mb_stride * s->mb_height);
    v->skip_mb_plane = av_malloc(s->mb_stride * s->mb_height);
A
Fixes:  
anonymous 已提交
2523 2524

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

2528
    /* Init coded blocks info */
2529
    if (v->profile == PROFILE_ADVANCED)
2530
    {
2531 2532 2533 2534
//        if (alloc_bitplane(&v->over_flags_plane, s->mb_width, s->mb_height) < 0)
//            return -1;
//        if (alloc_bitplane(&v->ac_pred_plane, s->mb_width, s->mb_height) < 0)
//            return -1;
2535 2536 2537
    }

    return 0;
2538 2539
}

2540

2541 2542
/** Decode a VC1/WMV3 frame
 * @todo TODO: Handle VC-1 IDUs (Transport level?)
A
anonymous 已提交
2543 2544
 * @warning Initial try at using MpegEncContext stuff
 */
2545
static int vc1_decode_frame(AVCodecContext *avctx,
2546 2547 2548
                            void *data, int *data_size,
                            uint8_t *buf, int buf_size)
{
2549
    VC1Context *v = avctx->priv_data;
A
anonymous 已提交
2550
    MpegEncContext *s = &v->s;
2551
    AVFrame *pict = data;
A
anonymous 已提交
2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567

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

    //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]){
2568 2569
        int i= ff_find_unused_picture(s, 0);
        s->current_picture_ptr= &s->picture[i];
A
anonymous 已提交
2570 2571
    }

2572
    avctx->has_b_frames= !s->low_delay;
A
anonymous 已提交
2573

2574 2575 2576 2577 2578 2579
    init_get_bits(&s->gb, buf, buf_size*8);
    // do parse frame header
    if(vc1_parse_frame_header(v, &s->gb) == -1)
        return -1;

    if(s->pict_type != I_TYPE && s->pict_type != P_TYPE)return -1;
A
anonymous 已提交
2580 2581 2582 2583 2584

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

2585 2586
    /* skip B-frames if we don't have reference frames */
    if(s->last_picture_ptr==NULL && (s->pict_type==B_TYPE || s->dropable)) return -1;//buf_size;
A
anonymous 已提交
2587
    /* skip b frames if we are in a hurry */
2588 2589 2590 2591 2592
    if(avctx->hurry_up && s->pict_type==B_TYPE) return -1;//buf_size;
    if(   (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type==B_TYPE)
       || (avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type!=I_TYPE)
       ||  avctx->skip_frame >= AVDISCARD_ALL)
        return buf_size;
A
anonymous 已提交
2593
    /* skip everything if we are in a hurry>=5 */
2594
    if(avctx->hurry_up>=5) return -1;//buf_size;
I
Ivan Kalvachev 已提交
2595

A
anonymous 已提交
2596 2597
    if(s->next_p_frame_damaged){
        if(s->pict_type==B_TYPE)
2598
            return buf_size;
A
anonymous 已提交
2599 2600 2601 2602 2603 2604 2605 2606 2607
        else
            s->next_p_frame_damaged=0;
    }

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

    ff_er_frame_start(s);

2608 2609 2610 2611 2612
    v->bits = buf_size * 8;
    vc1_decode_blocks(v);
//av_log(s->avctx, AV_LOG_INFO, "Consumed %i/%i bits\n", get_bits_count(&s->gb), buf_size*8);
//  if(get_bits_count(&s->gb) > buf_size * 8)
//      return -1;
A
anonymous 已提交
2613 2614 2615 2616
    ff_er_frame_end(s);

    MPV_frame_end(s);

2617 2618
assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);
assert(s->current_picture.pict_type == s->pict_type);
2619 2620 2621 2622 2623 2624 2625 2626
    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 已提交
2627 2628 2629 2630 2631 2632 2633
        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;

2634
    return buf_size;
2635 2636
}

2637

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

2645 2646
    av_freep(&v->hrd_rate);
    av_freep(&v->hrd_buffer);
A
anonymous 已提交
2647
    MPV_common_end(&v->s);
2648 2649
    av_freep(&v->mv_type_mb_plane);
    av_freep(&v->skip_mb_plane);
2650 2651 2652
    return 0;
}

2653

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

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