mpeg4videodec.c 107 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * MPEG4 decoder.
 * Copyright (c) 2000,2001 Fabrice Bellard
 * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg 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.1 of the License, or (at your option) any later version.
 *
 * FFmpeg 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 FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

23 24
#define UNCHECKED_BITSTREAM_READER 1

25
#include "libavutil/opt.h"
26
#include "error_resilience.h"
27
#include "idctdsp.h"
28
#include "internal.h"
29
#include "mpegutils.h"
30 31 32
#include "mpegvideo.h"
#include "mpeg4video.h"
#include "h263.h"
33
#include "thread.h"
34
#include "xvididct.h"
35

36 37 38 39
/* The defines below define the number of bits that are read at once for
 * reading vlc values. Changing these may improve speed and data cache needs
 * be aware though that decreasing them may need the number of stages that is
 * passed to get_vlc* to be increased. */
40 41 42 43 44 45 46 47
#define SPRITE_TRAJ_VLC_BITS 6
#define DC_VLC_BITS 9
#define MB_TYPE_B_VLC_BITS 4

static VLC dc_lum, dc_chrom;
static VLC sprite_trajectory;
static VLC mb_type_b_vlc;

48
static const int mb_type_b_map[4] = {
49
    MB_TYPE_DIRECT2 | MB_TYPE_L0L1,
50 51 52
    MB_TYPE_L0L1    | MB_TYPE_16x16,
    MB_TYPE_L1      | MB_TYPE_16x16,
    MB_TYPE_L0      | MB_TYPE_16x16,
53 54 55
};

/**
56
 * Predict the ac.
57 58 59
 * @param n block index (0-3 are luma, 4-5 are chroma)
 * @param dir the ac prediction direction
 */
60
void ff_mpeg4_pred_ac(MpegEncContext *s, int16_t *block, int n, int dir)
61 62 63
{
    int i;
    int16_t *ac_val, *ac_val1;
64
    int8_t *const qscale_table = s->current_picture.qscale_table;
65 66

    /* find prediction */
67
    ac_val  = s->ac_val[0][0] + s->block_index[n] * 16;
68 69 70
    ac_val1 = ac_val;
    if (s->ac_pred) {
        if (dir == 0) {
71
            const int xy = s->mb_x - 1 + s->mb_y * s->mb_stride;
72 73 74
            /* left prediction */
            ac_val -= 16;

75 76
            if (s->mb_x == 0 || s->qscale == qscale_table[xy] ||
                n == 1 || n == 3) {
77
                /* same qscale */
78
                for (i = 1; i < 8; i++)
79
                    block[s->idsp.idct_permutation[i << 3]] += ac_val[i];
80
            } else {
81
                /* different qscale, we must rescale */
82
                for (i = 1; i < 8; i++)
83
                    block[s->idsp.idct_permutation[i << 3]] += ROUNDED_DIV(ac_val[i] * qscale_table[xy], s->qscale);
84 85
            }
        } else {
86
            const int xy = s->mb_x + s->mb_y * s->mb_stride - s->mb_stride;
87 88 89
            /* top prediction */
            ac_val -= 16 * s->block_wrap[n];

90 91
            if (s->mb_y == 0 || s->qscale == qscale_table[xy] ||
                n == 2 || n == 3) {
92
                /* same qscale */
93
                for (i = 1; i < 8; i++)
94
                    block[s->idsp.idct_permutation[i]] += ac_val[i + 8];
95
            } else {
96
                /* different qscale, we must rescale */
97
                for (i = 1; i < 8; i++)
98
                    block[s->idsp.idct_permutation[i]] += ROUNDED_DIV(ac_val[i + 8] * qscale_table[xy], s->qscale);
99 100 101 102
            }
        }
    }
    /* left copy */
103
    for (i = 1; i < 8; i++)
104
        ac_val1[i] = block[s->idsp.idct_permutation[i << 3]];
105 106

    /* top copy */
107
    for (i = 1; i < 8; i++)
108
        ac_val1[8 + i] = block[s->idsp.idct_permutation[i]];
109 110 111 112 113 114
}

/**
 * check if the next stuff is a resync marker or the end.
 * @return 0 if not
 */
115
static inline int mpeg4_is_resync(Mpeg4DecContext *ctx)
116
{
117
    MpegEncContext *s = &ctx->m;
118 119
    int bits_count = get_bits_count(&s->gb);
    int v          = show_bits(&s->gb, 16);
120

121
    if (s->workaround_bugs & FF_BUG_NO_PADDING && !ctx->resync_marker)
122 123
        return 0;

124 125 126
    while (v <= 0xFF) {
        if (s->pict_type == AV_PICTURE_TYPE_B ||
            (v >> (8 - s->pict_type) != 1) || s->partitioned_frame)
127
            break;
128 129 130
        skip_bits(&s->gb, 8 + s->pict_type);
        bits_count += 8 + s->pict_type;
        v = show_bits(&s->gb, 16);
131 132
    }

133 134 135
    if (bits_count + 8 >= s->gb.size_in_bits) {
        v >>= 8;
        v  |= 0x7F >> (7 - (bits_count & 7));
136

137
        if (v == 0x7F)
138
            return s->mb_num;
139 140
    } else {
        if (v == ff_mpeg4_resync_prefix[bits_count & 7]) {
141
            int len, mb_num;
142
            int mb_num_bits = av_log2(s->mb_num - 1) + 1;
143
            GetBitContext gb = s->gb;
144 145 146 147

            skip_bits(&s->gb, 1);
            align_get_bits(&s->gb);

148 149 150
            for (len = 0; len < 32; len++)
                if (get_bits1(&s->gb))
                    break;
151

152 153
            mb_num = get_bits(&s->gb, mb_num_bits);
            if (!mb_num || mb_num > s->mb_num || get_bits_count(&s->gb)+6 > s->gb.size_in_bits)
154 155
                mb_num= -1;

156
            s->gb = gb;
157

158
            if (len >= ff_mpeg4_get_video_packet_prefix_length(s))
159
                return mb_num;
160 161 162 163 164
        }
    }
    return 0;
}

165
static int mpeg4_decode_sprite_trajectory(Mpeg4DecContext *ctx, GetBitContext *gb)
166
{
167
    MpegEncContext *s = &ctx->m;
168 169 170 171 172 173 174 175
    int a     = 2 << s->sprite_warping_accuracy;
    int rho   = 3  - s->sprite_warping_accuracy;
    int r     = 16 / a;
    int alpha = 0;
    int beta  = 0;
    int w     = s->width;
    int h     = s->height;
    int min_ab, i, w2, h2, w3, h3;
176 177
    int sprite_ref[4][2];
    int virtual_ref[2][2];
178 179 180 181 182

    // only true for rectangle shapes
    const int vop_ref[4][2] = { { 0, 0 },         { s->width, 0 },
                                { 0, s->height }, { s->width, s->height } };
    int d[4][2]             = { { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 } };
183

184 185
    if (w <= 0 || h <= 0)
        return AVERROR_INVALIDDATA;
186

187
    for (i = 0; i < ctx->num_sprite_warping_points; i++) {
188
        int length;
189
        int x = 0, y = 0;
190

191
        length = get_vlc2(gb, sprite_trajectory.table, SPRITE_TRAJ_VLC_BITS, 3);
192
        if (length > 0)
193
            x = get_xbits(gb, length);
194

195
        if (!(ctx->divx_version == 500 && ctx->divx_build == 413))
196
            check_marker(gb, "before sprite_trajectory");
197 198

        length = get_vlc2(gb, sprite_trajectory.table, SPRITE_TRAJ_VLC_BITS, 3);
199
        if (length > 0)
200 201
            y = get_xbits(gb, length);

202
        check_marker(gb, "after sprite_trajectory");
203 204
        ctx->sprite_traj[i][0] = d[i][0] = x;
        ctx->sprite_traj[i][1] = d[i][1] = y;
205
    }
206
    for (; i < 4; i++)
207
        ctx->sprite_traj[i][0] = ctx->sprite_traj[i][1] = 0;
208 209 210 211 212 213 214 215 216

    while ((1 << alpha) < w)
        alpha++;
    while ((1 << beta) < h)
        beta++;  /* typo in the mpeg4 std for the definition of w' and h' */
    w2 = 1 << alpha;
    h2 = 1 << beta;

    // Note, the 4th point isn't used for GMC
217
    if (ctx->divx_version == 500 && ctx->divx_build == 413) {
218 219 220 221 222 223
        sprite_ref[0][0] = a * vop_ref[0][0] + d[0][0];
        sprite_ref[0][1] = a * vop_ref[0][1] + d[0][1];
        sprite_ref[1][0] = a * vop_ref[1][0] + d[0][0] + d[1][0];
        sprite_ref[1][1] = a * vop_ref[1][1] + d[0][1] + d[1][1];
        sprite_ref[2][0] = a * vop_ref[2][0] + d[0][0] + d[2][0];
        sprite_ref[2][1] = a * vop_ref[2][1] + d[0][1] + d[2][1];
224
    } else {
225 226 227 228 229 230
        sprite_ref[0][0] = (a >> 1) * (2 * vop_ref[0][0] + d[0][0]);
        sprite_ref[0][1] = (a >> 1) * (2 * vop_ref[0][1] + d[0][1]);
        sprite_ref[1][0] = (a >> 1) * (2 * vop_ref[1][0] + d[0][0] + d[1][0]);
        sprite_ref[1][1] = (a >> 1) * (2 * vop_ref[1][1] + d[0][1] + d[1][1]);
        sprite_ref[2][0] = (a >> 1) * (2 * vop_ref[2][0] + d[0][0] + d[2][0]);
        sprite_ref[2][1] = (a >> 1) * (2 * vop_ref[2][1] + d[0][1] + d[2][1]);
231
    }
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
    /* sprite_ref[3][0] = (a >> 1) * (2 * vop_ref[3][0] + d[0][0] + d[1][0] + d[2][0] + d[3][0]);
     * sprite_ref[3][1] = (a >> 1) * (2 * vop_ref[3][1] + d[0][1] + d[1][1] + d[2][1] + d[3][1]); */

    /* this is mostly identical to the mpeg4 std (and is totally unreadable
     * because of that...). Perhaps it should be reordered to be more readable.
     * The idea behind this virtual_ref mess is to be able to use shifts later
     * per pixel instead of divides so the distance between points is converted
     * from w&h based to w2&h2 based which are of the 2^x form. */
    virtual_ref[0][0] = 16 * (vop_ref[0][0] + w2) +
                         ROUNDED_DIV(((w - w2) *
                                      (r * sprite_ref[0][0] - 16 * vop_ref[0][0]) +
                                      w2 * (r * sprite_ref[1][0] - 16 * vop_ref[1][0])), w);
    virtual_ref[0][1] = 16 * vop_ref[0][1] +
                        ROUNDED_DIV(((w - w2) *
                                     (r * sprite_ref[0][1] - 16 * vop_ref[0][1]) +
                                     w2 * (r * sprite_ref[1][1] - 16 * vop_ref[1][1])), w);
    virtual_ref[1][0] = 16 * vop_ref[0][0] +
                        ROUNDED_DIV(((h - h2) * (r * sprite_ref[0][0] - 16 * vop_ref[0][0]) +
                                     h2 * (r * sprite_ref[2][0] - 16 * vop_ref[2][0])), h);
    virtual_ref[1][1] = 16 * (vop_ref[0][1] + h2) +
                        ROUNDED_DIV(((h - h2) * (r * sprite_ref[0][1] - 16 * vop_ref[0][1]) +
                                     h2 * (r * sprite_ref[2][1] - 16 * vop_ref[2][1])), h);

255
    switch (ctx->num_sprite_warping_points) {
256 257 258 259 260 261 262 263 264
    case 0:
        s->sprite_offset[0][0] =
        s->sprite_offset[0][1] =
        s->sprite_offset[1][0] =
        s->sprite_offset[1][1] = 0;
        s->sprite_delta[0][0]  = a;
        s->sprite_delta[0][1]  =
        s->sprite_delta[1][0]  = 0;
        s->sprite_delta[1][1]  = a;
265 266
        ctx->sprite_shift[0]   =
        ctx->sprite_shift[1]   = 0;
267 268 269 270 271 272 273 274 275 276 277 278
        break;
    case 1:     // GMC only
        s->sprite_offset[0][0] = sprite_ref[0][0] - a * vop_ref[0][0];
        s->sprite_offset[0][1] = sprite_ref[0][1] - a * vop_ref[0][1];
        s->sprite_offset[1][0] = ((sprite_ref[0][0] >> 1) | (sprite_ref[0][0] & 1)) -
                                 a * (vop_ref[0][0] / 2);
        s->sprite_offset[1][1] = ((sprite_ref[0][1] >> 1) | (sprite_ref[0][1] & 1)) -
                                 a * (vop_ref[0][1] / 2);
        s->sprite_delta[0][0]  = a;
        s->sprite_delta[0][1]  =
        s->sprite_delta[1][0]  = 0;
        s->sprite_delta[1][1]  = a;
279 280
        ctx->sprite_shift[0]   =
        ctx->sprite_shift[1]   = 0;
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
        break;
    case 2:
        s->sprite_offset[0][0] = (sprite_ref[0][0] << (alpha + rho)) +
                                 (-r * sprite_ref[0][0] + virtual_ref[0][0]) *
                                 (-vop_ref[0][0]) +
                                 (r * sprite_ref[0][1] - virtual_ref[0][1]) *
                                 (-vop_ref[0][1]) + (1 << (alpha + rho - 1));
        s->sprite_offset[0][1] = (sprite_ref[0][1] << (alpha + rho)) +
                                 (-r * sprite_ref[0][1] + virtual_ref[0][1]) *
                                 (-vop_ref[0][0]) +
                                 (-r * sprite_ref[0][0] + virtual_ref[0][0]) *
                                 (-vop_ref[0][1]) + (1 << (alpha + rho - 1));
        s->sprite_offset[1][0] = ((-r * sprite_ref[0][0] + virtual_ref[0][0]) *
                                  (-2 * vop_ref[0][0] + 1) +
                                  (r * sprite_ref[0][1] - virtual_ref[0][1]) *
                                  (-2 * vop_ref[0][1] + 1) + 2 * w2 * r *
                                  sprite_ref[0][0] - 16 * w2 + (1 << (alpha + rho + 1)));
        s->sprite_offset[1][1] = ((-r * sprite_ref[0][1] + virtual_ref[0][1]) *
                                  (-2 * vop_ref[0][0] + 1) +
                                  (-r * sprite_ref[0][0] + virtual_ref[0][0]) *
                                  (-2 * vop_ref[0][1] + 1) + 2 * w2 * r *
                                  sprite_ref[0][1] - 16 * w2 + (1 << (alpha + rho + 1)));
        s->sprite_delta[0][0] = (-r * sprite_ref[0][0] + virtual_ref[0][0]);
        s->sprite_delta[0][1] = (+r * sprite_ref[0][1] - virtual_ref[0][1]);
        s->sprite_delta[1][0] = (-r * sprite_ref[0][1] + virtual_ref[0][1]);
        s->sprite_delta[1][1] = (-r * sprite_ref[0][0] + virtual_ref[0][0]);

308 309
        ctx->sprite_shift[0]  = alpha + rho;
        ctx->sprite_shift[1]  = alpha + rho + 2;
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
        break;
    case 3:
        min_ab = FFMIN(alpha, beta);
        w3     = w2 >> min_ab;
        h3     = h2 >> min_ab;
        s->sprite_offset[0][0] = (sprite_ref[0][0] << (alpha + beta + rho - min_ab)) +
                                 (-r * sprite_ref[0][0] + virtual_ref[0][0]) *
                                 h3 * (-vop_ref[0][0]) +
                                 (-r * sprite_ref[0][0] + virtual_ref[1][0]) *
                                 w3 * (-vop_ref[0][1]) +
                                 (1 << (alpha + beta + rho - min_ab - 1));
        s->sprite_offset[0][1] = (sprite_ref[0][1] << (alpha + beta + rho - min_ab)) +
                                 (-r * sprite_ref[0][1] + virtual_ref[0][1]) *
                                 h3 * (-vop_ref[0][0]) +
                                 (-r * sprite_ref[0][1] + virtual_ref[1][1]) *
                                 w3 * (-vop_ref[0][1]) +
                                 (1 << (alpha + beta + rho - min_ab - 1));
        s->sprite_offset[1][0] = (-r * sprite_ref[0][0] + virtual_ref[0][0]) *
                                 h3 * (-2 * vop_ref[0][0] + 1) +
                                 (-r * sprite_ref[0][0] + virtual_ref[1][0]) *
                                 w3 * (-2 * vop_ref[0][1] + 1) + 2 * w2 * h3 *
                                 r * sprite_ref[0][0] - 16 * w2 * h3 +
                                 (1 << (alpha + beta + rho - min_ab + 1));
        s->sprite_offset[1][1] = (-r * sprite_ref[0][1] + virtual_ref[0][1]) *
                                 h3 * (-2 * vop_ref[0][0] + 1) +
                                 (-r * sprite_ref[0][1] + virtual_ref[1][1]) *
                                 w3 * (-2 * vop_ref[0][1] + 1) + 2 * w2 * h3 *
                                 r * sprite_ref[0][1] - 16 * w2 * h3 +
                                 (1 << (alpha + beta + rho - min_ab + 1));
        s->sprite_delta[0][0] = (-r * sprite_ref[0][0] + virtual_ref[0][0]) * h3;
        s->sprite_delta[0][1] = (-r * sprite_ref[0][0] + virtual_ref[1][0]) * w3;
        s->sprite_delta[1][0] = (-r * sprite_ref[0][1] + virtual_ref[0][1]) * h3;
        s->sprite_delta[1][1] = (-r * sprite_ref[0][1] + virtual_ref[1][1]) * w3;

344 345
        ctx->sprite_shift[0]  = alpha + beta + rho - min_ab;
        ctx->sprite_shift[1]  = alpha + beta + rho - min_ab + 2;
346
        break;
347 348
    }
    /* try to simplify the situation */
349
    if (s->sprite_delta[0][0] == a << ctx->sprite_shift[0] &&
350 351
        s->sprite_delta[0][1] == 0 &&
        s->sprite_delta[1][0] == 0 &&
352 353 354 355 356
        s->sprite_delta[1][1] == a << ctx->sprite_shift[0]) {
        s->sprite_offset[0][0] >>= ctx->sprite_shift[0];
        s->sprite_offset[0][1] >>= ctx->sprite_shift[0];
        s->sprite_offset[1][0] >>= ctx->sprite_shift[1];
        s->sprite_offset[1][1] >>= ctx->sprite_shift[1];
357 358 359 360
        s->sprite_delta[0][0] = a;
        s->sprite_delta[0][1] = 0;
        s->sprite_delta[1][0] = 0;
        s->sprite_delta[1][1] = a;
361 362
        ctx->sprite_shift[0] = 0;
        ctx->sprite_shift[1] = 0;
363 364
        s->real_sprite_warping_points = 1;
    } else {
365 366
        int shift_y = 16 - ctx->sprite_shift[0];
        int shift_c = 16 - ctx->sprite_shift[1];
367 368 369 370 371
        for (i = 0; i < 2; i++) {
            s->sprite_offset[0][i] <<= shift_y;
            s->sprite_offset[1][i] <<= shift_c;
            s->sprite_delta[0][i]  <<= shift_y;
            s->sprite_delta[1][i]  <<= shift_y;
372
            ctx->sprite_shift[i]     = 16;
373
        }
374
        s->real_sprite_warping_points = ctx->num_sprite_warping_points;
375
    }
376

377
    return 0;
378 379
}

380 381
static int decode_new_pred(Mpeg4DecContext *ctx, GetBitContext *gb) {
    int len = FFMIN(ctx->time_increment_bits + 3, 15);
382 383 384 385 386 387 388 389 390

    get_bits(gb, len);
    if (get_bits1(gb))
        get_bits(gb, len);
    check_marker(gb, "after new_pred");

    return 0;
}

391
/**
392
 * Decode the next video packet.
393 394
 * @return <0 if something went wrong
 */
395
int ff_mpeg4_decode_video_packet_header(Mpeg4DecContext *ctx)
396
{
397 398
    MpegEncContext *s = &ctx->m;

399 400
    int mb_num_bits      = av_log2(s->mb_num - 1) + 1;
    int header_extension = 0, mb_num, len;
401 402

    /* is there enough space left for a video packet + header */
403 404
    if (get_bits_count(&s->gb) > s->gb.size_in_bits - 20)
        return -1;
405

406 407 408
    for (len = 0; len < 32; len++)
        if (get_bits1(&s->gb))
            break;
409

410
    if (len != ff_mpeg4_get_video_packet_prefix_length(s)) {
411 412 413 414
        av_log(s->avctx, AV_LOG_ERROR, "marker does not match f_code\n");
        return -1;
    }

415
    if (ctx->shape != RECT_SHAPE) {
416 417
        header_extension = get_bits1(&s->gb);
        // FIXME more stuff here
418 419
    }

420 421 422 423
    mb_num = get_bits(&s->gb, mb_num_bits);
    if (mb_num >= s->mb_num) {
        av_log(s->avctx, AV_LOG_ERROR,
               "illegal mb_num in video packet (%d %d) \n", mb_num, s->mb_num);
424 425 426
        return -1;
    }

427 428
    s->mb_x = mb_num % s->mb_width;
    s->mb_y = mb_num / s->mb_width;
429

430
    if (ctx->shape != BIN_ONLY_SHAPE) {
431 432 433
        int qscale = get_bits(&s->gb, s->quant_precision);
        if (qscale)
            s->chroma_qscale = s->qscale = qscale;
434 435
    }

436
    if (ctx->shape == RECT_SHAPE)
437 438 439 440
        header_extension = get_bits1(&s->gb);

    if (header_extension) {
        int time_incr = 0;
441 442 443 444 445

        while (get_bits1(&s->gb) != 0)
            time_incr++;

        check_marker(&s->gb, "before time_increment in video packed header");
446
        skip_bits(&s->gb, ctx->time_increment_bits);      /* time_increment */
447 448 449
        check_marker(&s->gb, "before vop_coding_type in video packed header");

        skip_bits(&s->gb, 2); /* vop coding type */
450
        // FIXME not rect stuff here
451

452
        if (ctx->shape != BIN_ONLY_SHAPE) {
453
            skip_bits(&s->gb, 3); /* intra dc vlc threshold */
454 455
            // FIXME don't just ignore everything
            if (s->pict_type == AV_PICTURE_TYPE_S &&
456
                ctx->vol_sprite_usage == GMC_SPRITE) {
457
                if (mpeg4_decode_sprite_trajectory(ctx, &s->gb) < 0)
458
                    return AVERROR_INVALIDDATA;
459 460 461
                av_log(s->avctx, AV_LOG_ERROR, "untested\n");
            }

462
            // FIXME reduced res stuff here
463

464
            if (s->pict_type != AV_PICTURE_TYPE_I) {
465
                int f_code = get_bits(&s->gb, 3);       /* fcode_for */
466 467 468
                if (f_code == 0)
                    av_log(s->avctx, AV_LOG_ERROR,
                           "Error, video packet header damaged (f_code=0)\n");
469
            }
470
            if (s->pict_type == AV_PICTURE_TYPE_B) {
471
                int b_code = get_bits(&s->gb, 3);
472 473 474
                if (b_code == 0)
                    av_log(s->avctx, AV_LOG_ERROR,
                           "Error, video packet header damaged (b_code=0)\n");
475 476 477
            }
        }
    }
478
    if (ctx->new_pred)
479
        decode_new_pred(ctx, &s->gb);
480 481 482 483 484

    return 0;
}

/**
485
 * Get the average motion vector for a GMC MB.
486
 * @param n either 0 for the x component or 1 for y
487
 * @return the average MV for a GMC MB
488
 */
489
static inline int get_amv(Mpeg4DecContext *ctx, int n)
490
{
491
    MpegEncContext *s = &ctx->m;
492
    int x, y, mb_v, sum, dx, dy, shift;
493 494
    int len     = 1 << (s->f_code + 4);
    const int a = s->sprite_warping_accuracy;
495

496
    if (s->workaround_bugs & FF_BUG_AMV)
497 498
        len >>= s->quarter_sample;

499
    if (s->real_sprite_warping_points == 1) {
500
        if (ctx->divx_version == 500 && ctx->divx_build == 413)
501 502 503 504 505 506
            sum = s->sprite_offset[0][n] / (1 << (a - s->quarter_sample));
        else
            sum = RSHIFT(s->sprite_offset[0][n] << s->quarter_sample, a);
    } else {
        dx    = s->sprite_delta[n][0];
        dy    = s->sprite_delta[n][1];
507
        shift = ctx->sprite_shift[0];
508 509
        if (n)
            dy -= 1 << (shift + a + 1);
510
        else
511 512 513 514 515
            dx -= 1 << (shift + a + 1);
        mb_v = s->sprite_offset[0][n] + dx * s->mb_x * 16 + dy * s->mb_y * 16;

        sum = 0;
        for (y = 0; y < 16; y++) {
516 517
            int v;

518 519 520 521 522
            v = mb_v + dy * y;
            // FIXME optimize
            for (x = 0; x < 16; x++) {
                sum += v >> shift;
                v   += dx;
523 524
            }
        }
525
        sum = RSHIFT(sum, a + 8 - s->quarter_sample);
526 527
    }

528 529 530 531
    if (sum < -len)
        sum = -len;
    else if (sum >= len)
        sum = len - 1;
532 533 534 535 536

    return sum;
}

/**
537
 * Decode the dc value.
538 539 540 541
 * @param n block index (0-3 are luma, 4-5 are chroma)
 * @param dir_ptr the prediction direction will be stored here
 * @return the quantized dc
 */
542
static inline int mpeg4_decode_dc(MpegEncContext *s, int n, int *dir_ptr)
543 544 545 546 547 548 549
{
    int level, code;

    if (n < 4)
        code = get_vlc2(&s->gb, dc_lum.table, DC_VLC_BITS, 1);
    else
        code = get_vlc2(&s->gb, dc_chrom.table, DC_VLC_BITS, 1);
550 551

    if (code < 0 || code > 9 /* && s->nbit < 9 */) {
552 553 554
        av_log(s->avctx, AV_LOG_ERROR, "illegal dc vlc\n");
        return -1;
    }
555

556 557 558
    if (code == 0) {
        level = 0;
    } else {
559 560 561 562 563 564
        if (IS_3IV1) {
            if (code == 1)
                level = 2 * get_bits1(&s->gb) - 1;
            else {
                if (get_bits1(&s->gb))
                    level = get_bits(&s->gb, code - 1) + (1 << (code - 1));
565
                else
566
                    level = -get_bits(&s->gb, code - 1) - (1 << (code - 1));
567
            }
568
        } else {
569 570 571
            level = get_xbits(&s->gb, code);
        }

572 573
        if (code > 8) {
            if (get_bits1(&s->gb) == 0) { /* marker */
574
                if (s->avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_COMPLIANT)) {
575 576 577 578 579 580 581 582 583 584 585
                    av_log(s->avctx, AV_LOG_ERROR, "dc marker bit missing\n");
                    return -1;
                }
            }
        }
    }

    return ff_mpeg4_pred_dc(s, n, level, dir_ptr, 0);
}

/**
586
 * Decode first partition.
587 588
 * @return number of MBs decoded or <0 if an error occurred
 */
589
static int mpeg4_decode_partition_a(Mpeg4DecContext *ctx)
590
{
591
    MpegEncContext *s = &ctx->m;
592
    int mb_num = 0;
593 594 595
    static const int8_t quant_tab[4] = { -1, -2, 1, 2 };

    /* decode first partition */
596 597
    s->first_slice_line = 1;
    for (; s->mb_y < s->mb_height; s->mb_y++) {
598
        ff_init_block_index(s);
599 600
        for (; s->mb_x < s->mb_width; s->mb_x++) {
            const int xy = s->mb_x + s->mb_y * s->mb_stride;
601
            int cbpc;
602
            int dir = 0;
603 604 605

            mb_num++;
            ff_update_block_index(s);
606 607
            if (s->mb_x == s->resync_mb_x && s->mb_y == s->resync_mb_y + 1)
                s->first_slice_line = 0;
608

609
            if (s->pict_type == AV_PICTURE_TYPE_I) {
610 611
                int i;

612 613 614
                do {
                    if (show_bits_long(&s->gb, 19) == DC_MARKER)
                        return mb_num - 1;
615

616
                    cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
617 618
                    if (cbpc < 0) {
                        av_log(s->avctx, AV_LOG_ERROR,
619
                               "mcbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
620 621
                        return -1;
                    }
622
                } while (cbpc == 8);
623

624
                s->cbp_table[xy]               = cbpc & 3;
625
                s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
626
                s->mb_intra                    = 1;
627

628
                if (cbpc & 4)
629 630
                    ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);

631 632 633 634
                s->current_picture.qscale_table[xy] = s->qscale;

                s->mbintra_table[xy] = 1;
                for (i = 0; i < 6; i++) {
635
                    int dc_pred_dir;
636 637 638 639
                    int dc = mpeg4_decode_dc(s, i, &dc_pred_dir);
                    if (dc < 0) {
                        av_log(s->avctx, AV_LOG_ERROR,
                               "DC corrupted at %d %d\n", s->mb_x, s->mb_y);
640 641
                        return -1;
                    }
642 643 644
                    dir <<= 1;
                    if (dc_pred_dir)
                        dir |= 1;
645
                }
646 647
                s->pred_dir_table[xy] = dir;
            } else { /* P/S_TYPE */
648
                int mx, my, pred_x, pred_y, bits;
649 650
                int16_t *const mot_val = s->current_picture.motion_val[0][s->block_index[0]];
                const int stride       = s->b8_stride * 2;
651 652

try_again:
653 654 655 656
                bits = show_bits(&s->gb, 17);
                if (bits == MOTION_MARKER)
                    return mb_num - 1;

657
                skip_bits1(&s->gb);
658
                if (bits & 0x10000) {
659
                    /* skip mb */
660
                    if (s->pict_type == AV_PICTURE_TYPE_S &&
661
                        ctx->vol_sprite_usage == GMC_SPRITE) {
662 663 664 665
                        s->current_picture.mb_type[xy] = MB_TYPE_SKIP  |
                                                         MB_TYPE_16x16 |
                                                         MB_TYPE_GMC   |
                                                         MB_TYPE_L0;
666 667
                        mx = get_amv(ctx, 0);
                        my = get_amv(ctx, 1);
668 669 670 671 672
                    } else {
                        s->current_picture.mb_type[xy] = MB_TYPE_SKIP  |
                                                         MB_TYPE_16x16 |
                                                         MB_TYPE_L0;
                        mx = my = 0;
673
                    }
674 675 676 677 678 679 680 681 682 683
                    mot_val[0]          =
                    mot_val[2]          =
                    mot_val[0 + stride] =
                    mot_val[2 + stride] = mx;
                    mot_val[1]          =
                    mot_val[3]          =
                    mot_val[1 + stride] =
                    mot_val[3 + stride] = my;

                    if (s->mbintra_table[xy])
684 685 686 687
                        ff_clean_intra_table_entries(s);
                    continue;
                }

688
                cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
689 690
                if (cbpc < 0) {
                    av_log(s->avctx, AV_LOG_ERROR,
691
                           "mcbpc corrupted at %d %d\n", s->mb_x, s->mb_y);
692 693
                    return -1;
                }
694
                if (cbpc == 20)
695 696
                    goto try_again;

697
                s->cbp_table[xy] = cbpc & (8 + 3);  // 8 is dquant
698 699 700

                s->mb_intra = ((cbpc & 4) != 0);

701
                if (s->mb_intra) {
702
                    s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
703 704 705 706 707 708 709 710 711 712 713
                    s->mbintra_table[xy] = 1;
                    mot_val[0]          =
                    mot_val[2]          =
                    mot_val[0 + stride] =
                    mot_val[2 + stride] = 0;
                    mot_val[1]          =
                    mot_val[3]          =
                    mot_val[1 + stride] =
                    mot_val[3 + stride] = 0;
                } else {
                    if (s->mbintra_table[xy])
714 715
                        ff_clean_intra_table_entries(s);

716
                    if (s->pict_type == AV_PICTURE_TYPE_S &&
717
                        ctx->vol_sprite_usage == GMC_SPRITE &&
718 719 720 721
                        (cbpc & 16) == 0)
                        s->mcsel = get_bits1(&s->gb);
                    else
                        s->mcsel = 0;
722 723 724 725

                    if ((cbpc & 16) == 0) {
                        /* 16x16 motion prediction */

726
                        ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
727
                        if (!s->mcsel) {
728
                            mx = ff_h263_decode_motion(s, pred_x, s->f_code);
729 730 731
                            if (mx >= 0xffff)
                                return -1;

732
                            my = ff_h263_decode_motion(s, pred_y, s->f_code);
733 734
                            if (my >= 0xffff)
                                return -1;
735 736
                            s->current_picture.mb_type[xy] = MB_TYPE_16x16 |
                                                             MB_TYPE_L0;
737
                        } else {
738 739
                            mx = get_amv(ctx, 0);
                            my = get_amv(ctx, 1);
740 741 742
                            s->current_picture.mb_type[xy] = MB_TYPE_16x16 |
                                                             MB_TYPE_GMC   |
                                                             MB_TYPE_L0;
743 744
                        }

745 746 747 748 749 750 751 752
                        mot_val[0]          =
                        mot_val[2]          =
                        mot_val[0 + stride] =
                        mot_val[2 + stride] = mx;
                        mot_val[1]          =
                        mot_val[3]          =
                        mot_val[1 + stride] =
                        mot_val[3 + stride] = my;
753 754
                    } else {
                        int i;
755 756 757 758
                        s->current_picture.mb_type[xy] = MB_TYPE_8x8 |
                                                         MB_TYPE_L0;
                        for (i = 0; i < 4; i++) {
                            int16_t *mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
759
                            mx = ff_h263_decode_motion(s, pred_x, s->f_code);
760 761 762
                            if (mx >= 0xffff)
                                return -1;

763
                            my = ff_h263_decode_motion(s, pred_y, s->f_code);
764 765 766 767 768 769 770 771 772
                            if (my >= 0xffff)
                                return -1;
                            mot_val[0] = mx;
                            mot_val[1] = my;
                        }
                    }
                }
            }
        }
773
        s->mb_x = 0;
774 775 776 777 778 779 780 781 782
    }

    return mb_num;
}

/**
 * decode second partition.
 * @return <0 if an error occurred
 */
783 784 785
static int mpeg4_decode_partition_b(MpegEncContext *s, int mb_count)
{
    int mb_num = 0;
786 787
    static const int8_t quant_tab[4] = { -1, -2, 1, 2 };

788 789 790
    s->mb_x = s->resync_mb_x;
    s->first_slice_line = 1;
    for (s->mb_y = s->resync_mb_y; mb_num < mb_count; s->mb_y++) {
791
        ff_init_block_index(s);
792 793
        for (; mb_num < mb_count && s->mb_x < s->mb_width; s->mb_x++) {
            const int xy = s->mb_x + s->mb_y * s->mb_stride;
794 795 796

            mb_num++;
            ff_update_block_index(s);
797 798 799 800 801 802 803 804 805
            if (s->mb_x == s->resync_mb_x && s->mb_y == s->resync_mb_y + 1)
                s->first_slice_line = 0;

            if (s->pict_type == AV_PICTURE_TYPE_I) {
                int ac_pred = get_bits1(&s->gb);
                int cbpy    = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
                if (cbpy < 0) {
                    av_log(s->avctx, AV_LOG_ERROR,
                           "cbpy corrupted at %d %d\n", s->mb_x, s->mb_y);
806 807 808
                    return -1;
                }

809 810 811
                s->cbp_table[xy]               |= cbpy << 2;
                s->current_picture.mb_type[xy] |= ac_pred * MB_TYPE_ACPRED;
            } else { /* P || S_TYPE */
812
                if (IS_INTRA(s->current_picture.mb_type[xy])) {
813 814
                    int i;
                    int dir     = 0;
815
                    int ac_pred = get_bits1(&s->gb);
816
                    int cbpy    = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
817

818 819 820
                    if (cbpy < 0) {
                        av_log(s->avctx, AV_LOG_ERROR,
                               "I cbpy corrupted at %d %d\n", s->mb_x, s->mb_y);
821 822 823
                        return -1;
                    }

824
                    if (s->cbp_table[xy] & 8)
825
                        ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
826
                    s->current_picture.qscale_table[xy] = s->qscale;
827

828
                    for (i = 0; i < 6; i++) {
829
                        int dc_pred_dir;
830 831 832 833
                        int dc = mpeg4_decode_dc(s, i, &dc_pred_dir);
                        if (dc < 0) {
                            av_log(s->avctx, AV_LOG_ERROR,
                                   "DC corrupted at %d %d\n", s->mb_x, s->mb_y);
834 835
                            return -1;
                        }
836 837 838
                        dir <<= 1;
                        if (dc_pred_dir)
                            dir |= 1;
839
                    }
840 841 842 843
                    s->cbp_table[xy]               &= 3;  // remove dquant
                    s->cbp_table[xy]               |= cbpy << 2;
                    s->current_picture.mb_type[xy] |= ac_pred * MB_TYPE_ACPRED;
                    s->pred_dir_table[xy]           = dir;
844 845
                } else if (IS_SKIP(s->current_picture.mb_type[xy])) {
                    s->current_picture.qscale_table[xy] = s->qscale;
846 847
                    s->cbp_table[xy]                    = 0;
                } else {
848
                    int cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
849

850 851 852
                    if (cbpy < 0) {
                        av_log(s->avctx, AV_LOG_ERROR,
                               "P cbpy corrupted at %d %d\n", s->mb_x, s->mb_y);
853 854 855
                        return -1;
                    }

856
                    if (s->cbp_table[xy] & 8)
857
                        ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
858
                    s->current_picture.qscale_table[xy] = s->qscale;
859

860 861
                    s->cbp_table[xy] &= 3;  // remove dquant
                    s->cbp_table[xy] |= (cbpy ^ 0xf) << 2;
862 863 864
                }
            }
        }
865 866 867
        if (mb_num >= mb_count)
            return 0;
        s->mb_x = 0;
868 869 870 871 872
    }
    return 0;
}

/**
873
 * Decode the first and second partition.
874 875
 * @return <0 if error (and sets error type in the error_status_table)
 */
876
int ff_mpeg4_decode_partitions(Mpeg4DecContext *ctx)
877
{
878
    MpegEncContext *s = &ctx->m;
879
    int mb_num;
880 881
    const int part_a_error = s->pict_type == AV_PICTURE_TYPE_I ? (ER_DC_ERROR | ER_MV_ERROR) : ER_MV_ERROR;
    const int part_a_end   = s->pict_type == AV_PICTURE_TYPE_I ? (ER_DC_END   | ER_MV_END)   : ER_MV_END;
882

883
    mb_num = mpeg4_decode_partition_a(ctx);
884 885 886
    if (mb_num < 0) {
        ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
                        s->mb_x, s->mb_y, part_a_error);
887 888 889
        return -1;
    }

890
    if (s->resync_mb_x + s->resync_mb_y * s->mb_width + mb_num > s->mb_num) {
891
        av_log(s->avctx, AV_LOG_ERROR, "slice below monitor ...\n");
892 893
        ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
                        s->mb_x, s->mb_y, part_a_error);
894 895 896
        return -1;
    }

897
    s->mb_num_left = mb_num;
898

899 900
    if (s->pict_type == AV_PICTURE_TYPE_I) {
        while (show_bits(&s->gb, 9) == 1)
901
            skip_bits(&s->gb, 9);
902 903 904 905
        if (get_bits_long(&s->gb, 19) != DC_MARKER) {
            av_log(s->avctx, AV_LOG_ERROR,
                   "marker missing after first I partition at %d %d\n",
                   s->mb_x, s->mb_y);
906 907
            return -1;
        }
908 909
    } else {
        while (show_bits(&s->gb, 10) == 1)
910
            skip_bits(&s->gb, 10);
911 912 913 914
        if (get_bits(&s->gb, 17) != MOTION_MARKER) {
            av_log(s->avctx, AV_LOG_ERROR,
                   "marker missing after first P partition at %d %d\n",
                   s->mb_x, s->mb_y);
915 916 917
            return -1;
        }
    }
918 919
    ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
                    s->mb_x - 1, s->mb_y, part_a_end);
920

921 922 923 924
    if (mpeg4_decode_partition_b(s, mb_num) < 0) {
        if (s->pict_type == AV_PICTURE_TYPE_P)
            ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
                            s->mb_x, s->mb_y, ER_DC_ERROR);
925
        return -1;
926 927 928 929
    } else {
        if (s->pict_type == AV_PICTURE_TYPE_P)
            ff_er_add_slice(&s->er, s->resync_mb_x, s->resync_mb_y,
                            s->mb_x - 1, s->mb_y, ER_DC_END);
930 931 932 933 934 935
    }

    return 0;
}

/**
936
 * Decode a block.
937 938
 * @return <0 if an error occurred
 */
939
static inline int mpeg4_decode_block(Mpeg4DecContext *ctx, int16_t *block,
940
                                     int n, int coded, int intra, int rvlc)
941
{
942
    MpegEncContext *s = &ctx->m;
943
    int level, i, last, run, qmul, qadd;
944
    int av_uninit(dc_pred_dir);
945 946 947 948 949 950 951
    RLTable *rl;
    RL_VLC_ELEM *rl_vlc;
    const uint8_t *scan_table;

    // Note intra & rvlc should be optimized away if this is inlined

    if (intra) {
952
        if (ctx->use_intra_dc_vlc) {
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968
            /* DC coef */
            if (s->partitioned_frame) {
                level = s->dc_val[0][s->block_index[n]];
                if (n < 4)
                    level = FASTDIV((level + (s->y_dc_scale >> 1)), s->y_dc_scale);
                else
                    level = FASTDIV((level + (s->c_dc_scale >> 1)), s->c_dc_scale);
                dc_pred_dir = (s->pred_dir_table[s->mb_x + s->mb_y * s->mb_stride] << n) & 32;
            } else {
                level = mpeg4_decode_dc(s, n, &dc_pred_dir);
                if (level < 0)
                    return -1;
            }
            block[0] = level;
            i        = 0;
        } else {
969 970
            i = -1;
            ff_mpeg4_pred_dc(s, n, 0, &dc_pred_dir, 0);
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987
        }
        if (!coded)
            goto not_coded;

        if (rvlc) {
            rl     = &ff_rvlc_rl_intra;
            rl_vlc = ff_rvlc_rl_intra.rl_vlc[0];
        } else {
            rl     = &ff_mpeg4_rl_intra;
            rl_vlc = ff_mpeg4_rl_intra.rl_vlc[0];
        }
        if (s->ac_pred) {
            if (dc_pred_dir == 0)
                scan_table = s->intra_v_scantable.permutated;  /* left */
            else
                scan_table = s->intra_h_scantable.permutated;  /* top */
        } else {
988
            scan_table = s->intra_scantable.permutated;
989 990 991
        }
        qmul = 1;
        qadd = 0;
992 993 994 995 996 997
    } else {
        i = -1;
        if (!coded) {
            s->block_last_index[n] = i;
            return 0;
        }
998 999 1000 1001
        if (rvlc)
            rl = &ff_rvlc_rl_inter;
        else
            rl = &ff_h263_rl_inter;
1002 1003 1004

        scan_table = s->intra_scantable.permutated;

1005 1006 1007 1008
        if (s->mpeg_quant) {
            qmul = 1;
            qadd = 0;
            if (rvlc)
1009
                rl_vlc = ff_rvlc_rl_inter.rl_vlc[0];
1010
            else
1011
                rl_vlc = ff_h263_rl_inter.rl_vlc[0];
1012
        } else {
1013 1014
            qmul = s->qscale << 1;
            qadd = (s->qscale - 1) | 1;
1015
            if (rvlc)
1016
                rl_vlc = ff_rvlc_rl_inter.rl_vlc[s->qscale];
1017
            else
1018
                rl_vlc = ff_h263_rl_inter.rl_vlc[s->qscale];
1019 1020
        }
    }
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
    {
        OPEN_READER(re, &s->gb);
        for (;;) {
            UPDATE_CACHE(re, &s->gb);
            GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2, 0);
            if (level == 0) {
                /* escape */
                if (rvlc) {
                    if (SHOW_UBITS(re, &s->gb, 1) == 0) {
                        av_log(s->avctx, AV_LOG_ERROR,
                               "1. marker bit missing in rvlc esc\n");
                        return -1;
                    }
                    SKIP_CACHE(re, &s->gb, 1);
1035

1036 1037 1038 1039
                    last = SHOW_UBITS(re, &s->gb, 1);
                    SKIP_CACHE(re, &s->gb, 1);
                    run = SHOW_UBITS(re, &s->gb, 6);
                    SKIP_COUNTER(re, &s->gb, 1 + 1 + 6);
1040 1041
                    UPDATE_CACHE(re, &s->gb);

1042 1043 1044 1045 1046 1047
                    if (SHOW_UBITS(re, &s->gb, 1) == 0) {
                        av_log(s->avctx, AV_LOG_ERROR,
                               "2. marker bit missing in rvlc esc\n");
                        return -1;
                    }
                    SKIP_CACHE(re, &s->gb, 1);
1048

1049 1050
                    level = SHOW_UBITS(re, &s->gb, 11);
                    SKIP_CACHE(re, &s->gb, 11);
1051

1052 1053 1054
                    if (SHOW_UBITS(re, &s->gb, 5) != 0x10) {
                        av_log(s->avctx, AV_LOG_ERROR, "reverse esc missing\n");
                        return -1;
1055
                    }
1056
                    SKIP_CACHE(re, &s->gb, 5);
1057

1058 1059 1060
                    level = level * qmul + qadd;
                    level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
                    SKIP_COUNTER(re, &s->gb, 1 + 11 + 5 + 1);
1061

1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
                    i += run + 1;
                    if (last)
                        i += 192;
                } else {
                    int cache;
                    cache = GET_CACHE(re, &s->gb);

                    if (IS_3IV1)
                        cache ^= 0xC0000000;

                    if (cache & 0x80000000) {
                        if (cache & 0x40000000) {
                            /* third escape */
                            SKIP_CACHE(re, &s->gb, 2);
                            last = SHOW_UBITS(re, &s->gb, 1);
                            SKIP_CACHE(re, &s->gb, 1);
                            run = SHOW_UBITS(re, &s->gb, 6);
                            SKIP_COUNTER(re, &s->gb, 2 + 1 + 6);
                            UPDATE_CACHE(re, &s->gb);

                            if (IS_3IV1) {
                                level = SHOW_SBITS(re, &s->gb, 12);
                                LAST_SKIP_BITS(re, &s->gb, 12);
                            } else {
                                if (SHOW_UBITS(re, &s->gb, 1) == 0) {
                                    av_log(s->avctx, AV_LOG_ERROR,
                                           "1. marker bit missing in 3. esc\n");
1089
                                    if (!(s->avctx->err_recognition & AV_EF_IGNORE_ERR))
1090
                                        return -1;
1091 1092
                                }
                                SKIP_CACHE(re, &s->gb, 1);
1093

1094 1095
                                level = SHOW_SBITS(re, &s->gb, 12);
                                SKIP_CACHE(re, &s->gb, 12);
1096

1097 1098 1099
                                if (SHOW_UBITS(re, &s->gb, 1) == 0) {
                                    av_log(s->avctx, AV_LOG_ERROR,
                                           "2. marker bit missing in 3. esc\n");
1100
                                    if (!(s->avctx->err_recognition & AV_EF_IGNORE_ERR))
1101
                                        return -1;
1102
                                }
1103

1104
                                SKIP_COUNTER(re, &s->gb, 1 + 12 + 1);
1105 1106 1107
                            }

#if 0
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
                            if (s->error_recognition >= FF_ER_COMPLIANT) {
                                const int abs_level= FFABS(level);
                                if (abs_level<=MAX_LEVEL && run<=MAX_RUN) {
                                    const int run1= run - rl->max_run[last][abs_level] - 1;
                                    if (abs_level <= rl->max_level[last][run]) {
                                        av_log(s->avctx, AV_LOG_ERROR, "illegal 3. esc, vlc encoding possible\n");
                                        return -1;
                                    }
                                    if (s->error_recognition > FF_ER_COMPLIANT) {
                                        if (abs_level <= rl->max_level[last][run]*2) {
                                            av_log(s->avctx, AV_LOG_ERROR, "illegal 3. esc, esc 1 encoding possible\n");
                                            return -1;
                                        }
                                        if (run1 >= 0 && abs_level <= rl->max_level[last][run1]) {
                                            av_log(s->avctx, AV_LOG_ERROR, "illegal 3. esc, esc 2 encoding possible\n");
                                            return -1;
                                        }
                                    }
1126 1127 1128
                                }
                            }
#endif
1129 1130 1131 1132 1133 1134
                            if (level > 0)
                                level = level * qmul + qadd;
                            else
                                level = level * qmul - qadd;

                            if ((unsigned)(level + 2048) > 4095) {
1135
                                if (s->avctx->err_recognition & (AV_EF_BITSTREAM|AV_EF_AGGRESSIVE)) {
1136 1137 1138 1139 1140 1141 1142 1143
                                    if (level > 2560 || level < -2560) {
                                        av_log(s->avctx, AV_LOG_ERROR,
                                               "|level| overflow in 3. esc, qp=%d\n",
                                               s->qscale);
                                        return -1;
                                    }
                                }
                                level = level < 0 ? -2048 : 2047;
1144
                            }
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155

                            i += run + 1;
                            if (last)
                                i += 192;
                        } else {
                            /* second escape */
                            SKIP_BITS(re, &s->gb, 2);
                            GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2, 1);
                            i    += run + rl->max_run[run >> 7][level / qmul] + 1;  // FIXME opt indexing
                            level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
                            LAST_SKIP_BITS(re, &s->gb, 1);
1156
                        }
1157 1158 1159 1160 1161 1162 1163 1164
                    } else {
                        /* first escape */
                        SKIP_BITS(re, &s->gb, 1);
                        GET_RL_VLC(level, run, re, &s->gb, rl_vlc, TEX_VLC_BITS, 2, 1);
                        i    += run;
                        level = level + rl->max_level[run >> 7][(run - 1) & 63] * qmul;  // FIXME opt indexing
                        level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
                        LAST_SKIP_BITS(re, &s->gb, 1);
1165 1166 1167
                    }
                }
            } else {
1168
                i    += run;
1169 1170 1171
                level = (level ^ SHOW_SBITS(re, &s->gb, 1)) - SHOW_SBITS(re, &s->gb, 1);
                LAST_SKIP_BITS(re, &s->gb, 1);
            }
1172
            ff_tlog(s->avctx, "dct[%d][%d] = %- 4d end?:%d\n", scan_table[i&63]&7, scan_table[i&63] >> 3, level, i>62);
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182
            if (i > 62) {
                i -= 192;
                if (i & (~63)) {
                    av_log(s->avctx, AV_LOG_ERROR,
                           "ac-tex damaged at %d %d\n", s->mb_x, s->mb_y);
                    return -1;
                }

                block[scan_table[i]] = level;
                break;
1183 1184 1185 1186
            }

            block[scan_table[i]] = level;
        }
1187
        CLOSE_READER(re, &s->gb);
1188
    }
1189 1190

not_coded:
1191
    if (intra) {
1192
        if (!ctx->use_intra_dc_vlc) {
1193 1194
            block[0] = ff_mpeg4_pred_dc(s, n, block[0], &dc_pred_dir, 0);

1195
            i -= i >> 31;  // if (i == -1) i = 0;
1196 1197
        }

1198
        ff_mpeg4_pred_ac(s, block, n, dc_pred_dir);
1199 1200
        if (s->ac_pred)
            i = 63;  // FIXME not optimal
1201 1202 1203 1204 1205 1206 1207 1208 1209
    }
    s->block_last_index[n] = i;
    return 0;
}

/**
 * decode partition C of one MB.
 * @return <0 if an error occurred
 */
Diego Biurrun's avatar
Diego Biurrun committed
1210
static int mpeg4_decode_partitioned_mb(MpegEncContext *s, int16_t block[6][64])
1211
{
1212
    Mpeg4DecContext *ctx = (Mpeg4DecContext *)s;
1213
    int cbp, mb_type;
1214
    const int xy = s->mb_x + s->mb_y * s->mb_stride;
1215

1216
    mb_type = s->current_picture.mb_type[xy];
1217
    cbp     = s->cbp_table[xy];
1218

1219
    ctx->use_intra_dc_vlc = s->qscale < ctx->intra_dc_threshold;
1220

1221
    if (s->current_picture.qscale_table[xy] != s->qscale)
1222
        ff_set_qscale(s, s->current_picture.qscale_table[xy]);
1223

1224 1225
    if (s->pict_type == AV_PICTURE_TYPE_P ||
        s->pict_type == AV_PICTURE_TYPE_S) {
1226
        int i;
1227
        for (i = 0; i < 4; i++) {
1228 1229
            s->mv[0][i][0] = s->current_picture.motion_val[0][s->block_index[i]][0];
            s->mv[0][i][1] = s->current_picture.motion_val[0][s->block_index[i]][1];
1230 1231 1232 1233 1234
        }
        s->mb_intra = IS_INTRA(mb_type);

        if (IS_SKIP(mb_type)) {
            /* skip mb */
1235
            for (i = 0; i < 6; i++)
1236
                s->block_last_index[i] = -1;
1237
            s->mv_dir  = MV_DIR_FORWARD;
1238
            s->mv_type = MV_TYPE_16X16;
1239
            if (s->pict_type == AV_PICTURE_TYPE_S
1240
                && ctx->vol_sprite_usage == GMC_SPRITE) {
1241
                s->mcsel      = 1;
1242
                s->mb_skipped = 0;
1243 1244
            } else {
                s->mcsel      = 0;
1245 1246
                s->mb_skipped = 1;
            }
1247
        } else if (s->mb_intra) {
1248
            s->ac_pred = IS_ACPRED(s->current_picture.mb_type[xy]);
1249 1250
        } else if (!s->mb_intra) {
            // s->mcsel = 0;  // FIXME do we need to init that?
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260

            s->mv_dir = MV_DIR_FORWARD;
            if (IS_8X8(mb_type)) {
                s->mv_type = MV_TYPE_8X8;
            } else {
                s->mv_type = MV_TYPE_16X16;
            }
        }
    } else { /* I-Frame */
        s->mb_intra = 1;
1261
        s->ac_pred  = IS_ACPRED(s->current_picture.mb_type[xy]);
1262 1263 1264 1265
    }

    if (!IS_SKIP(mb_type)) {
        int i;
1266
        s->bdsp.clear_blocks(s->block[0]);
1267 1268
        /* decode each block */
        for (i = 0; i < 6; i++) {
1269
            if (mpeg4_decode_block(ctx, block[i], i, cbp & 32, s->mb_intra, ctx->rvlc) < 0) {
1270 1271 1272
                av_log(s->avctx, AV_LOG_ERROR,
                       "texture corrupted at %d %d %d\n",
                       s->mb_x, s->mb_y, s->mb_intra);
1273 1274
                return -1;
            }
1275
            cbp += cbp;
1276 1277 1278 1279
        }
    }

    /* per-MB end of slice check */
1280
    if (--s->mb_num_left <= 0) {
1281
        if (mpeg4_is_resync(ctx))
1282 1283 1284
            return SLICE_END;
        else
            return SLICE_NOEND;
1285
    } else {
1286
        if (mpeg4_is_resync(ctx)) {
1287 1288
            const int delta = s->mb_x + 1 == s->mb_width ? 2 : 1;
            if (s->cbp_table[xy + delta])
1289 1290 1291 1292 1293 1294
                return SLICE_END;
        }
        return SLICE_OK;
    }
}

1295
static int mpeg4_decode_mb(MpegEncContext *s, int16_t block[6][64])
1296
{
1297
    Mpeg4DecContext *ctx = (Mpeg4DecContext *)s;
1298 1299 1300
    int cbpc, cbpy, i, cbp, pred_x, pred_y, mx, my, dquant;
    int16_t *mot_val;
    static int8_t quant_tab[4] = { -1, -2, 1, 2 };
1301
    const int xy = s->mb_x + s->mb_y * s->mb_stride;
1302

1303
    av_assert2(s->h263_pred);
1304

1305 1306 1307
    if (s->pict_type == AV_PICTURE_TYPE_P ||
        s->pict_type == AV_PICTURE_TYPE_S) {
        do {
1308 1309 1310
            if (get_bits1(&s->gb)) {
                /* skip mb */
                s->mb_intra = 0;
1311
                for (i = 0; i < 6; i++)
1312
                    s->block_last_index[i] = -1;
1313
                s->mv_dir  = MV_DIR_FORWARD;
1314
                s->mv_type = MV_TYPE_16X16;
1315
                if (s->pict_type == AV_PICTURE_TYPE_S &&
1316
                    ctx->vol_sprite_usage == GMC_SPRITE) {
1317 1318 1319 1320 1321
                    s->current_picture.mb_type[xy] = MB_TYPE_SKIP  |
                                                     MB_TYPE_GMC   |
                                                     MB_TYPE_16x16 |
                                                     MB_TYPE_L0;
                    s->mcsel       = 1;
1322 1323
                    s->mv[0][0][0] = get_amv(ctx, 0);
                    s->mv[0][0][1] = get_amv(ctx, 1);
1324 1325 1326 1327 1328 1329
                    s->mb_skipped  = 0;
                } else {
                    s->current_picture.mb_type[xy] = MB_TYPE_SKIP  |
                                                     MB_TYPE_16x16 |
                                                     MB_TYPE_L0;
                    s->mcsel       = 0;
1330 1331
                    s->mv[0][0][0] = 0;
                    s->mv[0][0][1] = 0;
1332
                    s->mb_skipped  = 1;
1333 1334 1335
                }
                goto end;
            }
1336
            cbpc = get_vlc2(&s->gb, ff_h263_inter_MCBPC_vlc.table, INTER_MCBPC_VLC_BITS, 2);
1337 1338
            if (cbpc < 0) {
                av_log(s->avctx, AV_LOG_ERROR,
1339
                       "mcbpc damaged at %d %d\n", s->mb_x, s->mb_y);
1340 1341
                return -1;
            }
1342
        } while (cbpc == 20);
1343

1344
        s->bdsp.clear_blocks(s->block[0]);
1345
        dquant      = cbpc & 8;
1346
        s->mb_intra = ((cbpc & 4) != 0);
1347 1348
        if (s->mb_intra)
            goto intra;
1349

1350
        if (s->pict_type == AV_PICTURE_TYPE_S &&
1351
            ctx->vol_sprite_usage == GMC_SPRITE && (cbpc & 16) == 0)
1352 1353 1354
            s->mcsel = get_bits1(&s->gb);
        else
            s->mcsel = 0;
1355
        cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1) ^ 0x0F;
1356 1357

        cbp = (cbpc & 3) | (cbpy << 2);
1358
        if (dquant)
1359
            ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);
1360 1361 1362
        if ((!s->progressive_sequence) &&
            (cbp || (s->workaround_bugs & FF_BUG_XVID_ILACE)))
            s->interlaced_dct = get_bits1(&s->gb);
1363 1364 1365

        s->mv_dir = MV_DIR_FORWARD;
        if ((cbpc & 16) == 0) {
1366 1367 1368 1369
            if (s->mcsel) {
                s->current_picture.mb_type[xy] = MB_TYPE_GMC   |
                                                 MB_TYPE_16x16 |
                                                 MB_TYPE_L0;
1370
                /* 16x16 global motion prediction */
1371
                s->mv_type     = MV_TYPE_16X16;
1372 1373
                mx             = get_amv(ctx, 0);
                my             = get_amv(ctx, 1);
1374 1375
                s->mv[0][0][0] = mx;
                s->mv[0][0][1] = my;
1376 1377 1378 1379
            } else if ((!s->progressive_sequence) && get_bits1(&s->gb)) {
                s->current_picture.mb_type[xy] = MB_TYPE_16x8 |
                                                 MB_TYPE_L0   |
                                                 MB_TYPE_INTERLACED;
1380
                /* 16x8 field motion prediction */
1381
                s->mv_type = MV_TYPE_FIELD;
1382

1383 1384
                s->field_select[0][0] = get_bits1(&s->gb);
                s->field_select[0][1] = get_bits1(&s->gb);
1385

1386
                ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
1387

1388
                for (i = 0; i < 2; i++) {
1389
                    mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1390 1391 1392
                    if (mx >= 0xffff)
                        return -1;

1393
                    my = ff_h263_decode_motion(s, pred_y / 2, s->f_code);
1394 1395 1396 1397 1398 1399
                    if (my >= 0xffff)
                        return -1;

                    s->mv[0][i][0] = mx;
                    s->mv[0][i][1] = my;
                }
1400
            } else {
1401
                s->current_picture.mb_type[xy] = MB_TYPE_16x16 | MB_TYPE_L0;
1402 1403
                /* 16x16 motion prediction */
                s->mv_type = MV_TYPE_16X16;
1404 1405
                ff_h263_pred_motion(s, 0, 0, &pred_x, &pred_y);
                mx = ff_h263_decode_motion(s, pred_x, s->f_code);
1406 1407 1408 1409

                if (mx >= 0xffff)
                    return -1;

1410
                my = ff_h263_decode_motion(s, pred_y, s->f_code);
1411 1412 1413 1414 1415 1416 1417

                if (my >= 0xffff)
                    return -1;
                s->mv[0][0][0] = mx;
                s->mv[0][0][1] = my;
            }
        } else {
1418
            s->current_picture.mb_type[xy] = MB_TYPE_8x8 | MB_TYPE_L0;
1419 1420
            s->mv_type                     = MV_TYPE_8X8;
            for (i = 0; i < 4; i++) {
1421
                mot_val = ff_h263_pred_motion(s, i, 0, &pred_x, &pred_y);
1422
                mx      = ff_h263_decode_motion(s, pred_x, s->f_code);
1423 1424 1425
                if (mx >= 0xffff)
                    return -1;

1426
                my = ff_h263_decode_motion(s, pred_y, s->f_code);
1427 1428 1429 1430
                if (my >= 0xffff)
                    return -1;
                s->mv[0][i][0] = mx;
                s->mv[0][i][1] = my;
1431 1432
                mot_val[0]     = mx;
                mot_val[1]     = my;
1433 1434
            }
        }
1435 1436 1437
    } else if (s->pict_type == AV_PICTURE_TYPE_B) {
        int modb1;   // first bit of modb
        int modb2;   // second bit of modb
1438 1439
        int mb_type;

1440 1441
        s->mb_intra = 0;  // B-frames never contain intra blocks
        s->mcsel    = 0;  //      ...               true gmc blocks
1442

1443 1444 1445 1446 1447 1448
        if (s->mb_x == 0) {
            for (i = 0; i < 2; i++) {
                s->last_mv[i][0][0] =
                s->last_mv[i][0][1] =
                s->last_mv[i][1][0] =
                s->last_mv[i][1][1] = 0;
1449
            }
1450

1451
            ff_thread_await_progress(&s->next_picture_ptr->tf, s->mb_y, 0);
1452 1453 1454
        }

        /* if we skipped it in the future P Frame than skip it now too */
1455
        s->mb_skipped = s->next_picture.mbskip_table[s->mb_y * s->mb_stride + s->mb_x];  // Note, skiptab=0 if last was GMC
1456

1457 1458 1459
        if (s->mb_skipped) {
            /* skip mb */
            for (i = 0; i < 6; i++)
1460 1461
                s->block_last_index[i] = -1;

1462 1463 1464 1465 1466
            s->mv_dir      = MV_DIR_FORWARD;
            s->mv_type     = MV_TYPE_16X16;
            s->mv[0][0][0] =
            s->mv[0][0][1] =
            s->mv[1][0][0] =
1467
            s->mv[1][0][1] = 0;
1468 1469 1470
            s->current_picture.mb_type[xy] = MB_TYPE_SKIP  |
                                             MB_TYPE_16x16 |
                                             MB_TYPE_L0;
1471 1472 1473
            goto end;
        }

1474 1475 1476 1477 1478 1479 1480 1481 1482
        modb1 = get_bits1(&s->gb);
        if (modb1) {
            // like MB_TYPE_B_DIRECT but no vectors coded
            mb_type = MB_TYPE_DIRECT2 | MB_TYPE_SKIP | MB_TYPE_L0L1;
            cbp     = 0;
        } else {
            modb2   = get_bits1(&s->gb);
            mb_type = get_vlc2(&s->gb, mb_type_b_vlc.table, MB_TYPE_B_VLC_BITS, 1);
            if (mb_type < 0) {
1483 1484 1485
                av_log(s->avctx, AV_LOG_ERROR, "illegal MB_type\n");
                return -1;
            }
1486 1487 1488 1489
            mb_type = mb_type_b_map[mb_type];
            if (modb2) {
                cbp = 0;
            } else {
1490
                s->bdsp.clear_blocks(s->block[0]);
1491
                cbp = get_bits(&s->gb, 6);
1492 1493 1494
            }

            if ((!IS_DIRECT(mb_type)) && cbp) {
1495 1496
                if (get_bits1(&s->gb))
                    ff_set_qscale(s, s->qscale + get_bits1(&s->gb) * 4 - 2);
1497 1498
            }

1499 1500 1501
            if (!s->progressive_sequence) {
                if (cbp)
                    s->interlaced_dct = get_bits1(&s->gb);
1502

1503
                if (!IS_DIRECT(mb_type) && get_bits1(&s->gb)) {
1504 1505 1506
                    mb_type |= MB_TYPE_16x8 | MB_TYPE_INTERLACED;
                    mb_type &= ~MB_TYPE_16x16;

1507 1508 1509
                    if (USES_LIST(mb_type, 0)) {
                        s->field_select[0][0] = get_bits1(&s->gb);
                        s->field_select[0][1] = get_bits1(&s->gb);
1510
                    }
1511 1512 1513
                    if (USES_LIST(mb_type, 1)) {
                        s->field_select[1][0] = get_bits1(&s->gb);
                        s->field_select[1][1] = get_bits1(&s->gb);
1514 1515 1516 1517 1518
                    }
                }
            }

            s->mv_dir = 0;
1519 1520
            if ((mb_type & (MB_TYPE_DIRECT2 | MB_TYPE_INTERLACED)) == 0) {
                s->mv_type = MV_TYPE_16X16;
1521

1522
                if (USES_LIST(mb_type, 0)) {
1523 1524
                    s->mv_dir = MV_DIR_FORWARD;

1525 1526
                    mx = ff_h263_decode_motion(s, s->last_mv[0][0][0], s->f_code);
                    my = ff_h263_decode_motion(s, s->last_mv[0][0][1], s->f_code);
1527 1528 1529 1530 1531 1532
                    s->last_mv[0][1][0] =
                    s->last_mv[0][0][0] =
                    s->mv[0][0][0]      = mx;
                    s->last_mv[0][1][1] =
                    s->last_mv[0][0][1] =
                    s->mv[0][0][1]      = my;
1533 1534
                }

1535
                if (USES_LIST(mb_type, 1)) {
1536 1537
                    s->mv_dir |= MV_DIR_BACKWARD;

1538 1539
                    mx = ff_h263_decode_motion(s, s->last_mv[1][0][0], s->b_code);
                    my = ff_h263_decode_motion(s, s->last_mv[1][0][1], s->b_code);
1540 1541 1542 1543 1544 1545
                    s->last_mv[1][1][0] =
                    s->last_mv[1][0][0] =
                    s->mv[1][0][0]      = mx;
                    s->last_mv[1][1][1] =
                    s->last_mv[1][0][1] =
                    s->mv[1][0][1]      = my;
1546
                }
1547 1548
            } else if (!IS_DIRECT(mb_type)) {
                s->mv_type = MV_TYPE_FIELD;
1549

1550
                if (USES_LIST(mb_type, 0)) {
1551 1552
                    s->mv_dir = MV_DIR_FORWARD;

1553 1554 1555 1556 1557 1558
                    for (i = 0; i < 2; i++) {
                        mx = ff_h263_decode_motion(s, s->last_mv[0][i][0], s->f_code);
                        my = ff_h263_decode_motion(s, s->last_mv[0][i][1] / 2, s->f_code);
                        s->last_mv[0][i][0] =
                        s->mv[0][i][0]      = mx;
                        s->last_mv[0][i][1] = (s->mv[0][i][1] = my) * 2;
1559 1560 1561
                    }
                }

1562
                if (USES_LIST(mb_type, 1)) {
1563 1564
                    s->mv_dir |= MV_DIR_BACKWARD;

1565 1566 1567 1568 1569 1570
                    for (i = 0; i < 2; i++) {
                        mx = ff_h263_decode_motion(s, s->last_mv[1][i][0], s->b_code);
                        my = ff_h263_decode_motion(s, s->last_mv[1][i][1] / 2, s->b_code);
                        s->last_mv[1][i][0] =
                        s->mv[1][i][0]      = mx;
                        s->last_mv[1][i][1] = (s->mv[1][i][1] = my) * 2;
1571 1572 1573 1574 1575
                    }
                }
            }
        }

1576 1577 1578 1579 1580
        if (IS_DIRECT(mb_type)) {
            if (IS_SKIP(mb_type)) {
                mx =
                my = 0;
            } else {
1581 1582
                mx = ff_h263_decode_motion(s, 0, 1);
                my = ff_h263_decode_motion(s, 0, 1);
1583 1584 1585
            }

            s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT;
1586
            mb_type  |= ff_mpeg4_set_direct_mv(s, mx, my);
1587
        }
1588
        s->current_picture.mb_type[xy] = mb_type;
1589
    } else { /* I-Frame */
1590
        do {
1591
            cbpc = get_vlc2(&s->gb, ff_h263_intra_MCBPC_vlc.table, INTRA_MCBPC_VLC_BITS, 2);
1592 1593 1594
            if (cbpc < 0) {
                av_log(s->avctx, AV_LOG_ERROR,
                       "I cbpc damaged at %d %d\n", s->mb_x, s->mb_y);
1595 1596
                return -1;
            }
1597
        } while (cbpc == 8);
1598 1599 1600

        dquant = cbpc & 4;
        s->mb_intra = 1;
1601

1602 1603
intra:
        s->ac_pred = get_bits1(&s->gb);
1604
        if (s->ac_pred)
1605
            s->current_picture.mb_type[xy] = MB_TYPE_INTRA | MB_TYPE_ACPRED;
1606
        else
1607
            s->current_picture.mb_type[xy] = MB_TYPE_INTRA;
1608

1609
        cbpy = get_vlc2(&s->gb, ff_h263_cbpy_vlc.table, CBPY_VLC_BITS, 1);
1610 1611 1612
        if (cbpy < 0) {
            av_log(s->avctx, AV_LOG_ERROR,
                   "I cbpy damaged at %d %d\n", s->mb_x, s->mb_y);
1613 1614 1615 1616
            return -1;
        }
        cbp = (cbpc & 3) | (cbpy << 2);

1617
        ctx->use_intra_dc_vlc = s->qscale < ctx->intra_dc_threshold;
1618

1619
        if (dquant)
1620 1621
            ff_set_qscale(s, s->qscale + quant_tab[get_bits(&s->gb, 2)]);

1622 1623
        if (!s->progressive_sequence)
            s->interlaced_dct = get_bits1(&s->gb);
1624

1625
        s->bdsp.clear_blocks(s->block[0]);
1626 1627
        /* decode each block */
        for (i = 0; i < 6; i++) {
1628
            if (mpeg4_decode_block(ctx, block[i], i, cbp & 32, 1, 0) < 0)
1629
                return -1;
1630
            cbp += cbp;
1631 1632 1633 1634 1635 1636
        }
        goto end;
    }

    /* decode each block */
    for (i = 0; i < 6; i++) {
1637
        if (mpeg4_decode_block(ctx, block[i], i, cbp & 32, 0, 0) < 0)
1638
            return -1;
1639
        cbp += cbp;
1640 1641
    }

1642 1643 1644
end:
    /* per-MB end of slice check */
    if (s->codec_id == AV_CODEC_ID_MPEG4) {
1645
        int next = mpeg4_is_resync(ctx);
1646
        if (next) {
1647
            if        (s->mb_x + s->mb_y*s->mb_width + 1 >  next && (s->avctx->err_recognition & AV_EF_AGGRESSIVE)) {
1648 1649 1650
                return -1;
            } else if (s->mb_x + s->mb_y*s->mb_width + 1 >= next)
                return SLICE_END;
1651

1652
            if (s->pict_type == AV_PICTURE_TYPE_B) {
1653
                const int delta= s->mb_x + 1 == s->mb_width ? 2 : 1;
1654
                ff_thread_await_progress(&s->next_picture_ptr->tf,
1655 1656 1657
                                         (s->mb_x + delta >= s->mb_width)
                                         ? FFMIN(s->mb_y + 1, s->mb_height - 1)
                                         : s->mb_y, 0);
1658
                if (s->next_picture.mbskip_table[xy + delta])
1659 1660 1661 1662
                    return SLICE_OK;
            }

            return SLICE_END;
1663 1664 1665 1666 1667 1668
        }
    }

    return SLICE_OK;
}

1669 1670
static int mpeg4_decode_gop_header(MpegEncContext *s, GetBitContext *gb)
{
1671 1672
    int hours, minutes, seconds;

1673
    if (!show_bits(gb, 23)) {
1674 1675 1676 1677
        av_log(s->avctx, AV_LOG_WARNING, "GOP header invalid\n");
        return -1;
    }

1678 1679
    hours   = get_bits(gb, 5);
    minutes = get_bits(gb, 6);
1680
    check_marker(gb, "in gop_header");
1681
    seconds = get_bits(gb, 6);
1682

1683
    s->time_base = seconds + 60*(minutes + 60*hours);
1684 1685 1686 1687 1688 1689 1690

    skip_bits1(gb);
    skip_bits1(gb);

    return 0;
}

1691 1692
static int mpeg4_decode_profile_level(MpegEncContext *s, GetBitContext *gb)
{
1693

1694 1695
    s->avctx->profile = get_bits(gb, 4);
    s->avctx->level   = get_bits(gb, 4);
1696

1697 1698 1699 1700
    // for Simple profile, level 0
    if (s->avctx->profile == 0 && s->avctx->level == 8) {
        s->avctx->level = 0;
    }
1701

1702
    return 0;
1703 1704
}

1705
static int decode_vol_header(Mpeg4DecContext *ctx, GetBitContext *gb)
1706
{
1707
    MpegEncContext *s = &ctx->m;
1708 1709 1710
    int width, height, vo_ver_id;

    /* vol header */
1711 1712 1713 1714 1715
    skip_bits(gb, 1);                   /* random access */
    s->vo_type = get_bits(gb, 8);
    if (get_bits1(gb) != 0) {           /* is_ol_id */
        vo_ver_id = get_bits(gb, 4);    /* vo_ver_id */
        skip_bits(gb, 3);               /* vo_priority */
1716 1717 1718
    } else {
        vo_ver_id = 1;
    }
1719 1720 1721 1722 1723 1724
    s->aspect_ratio_info = get_bits(gb, 4);
    if (s->aspect_ratio_info == FF_ASPECT_EXTENDED) {
        s->avctx->sample_aspect_ratio.num = get_bits(gb, 8);  // par_width
        s->avctx->sample_aspect_ratio.den = get_bits(gb, 8);  // par_height
    } else {
        s->avctx->sample_aspect_ratio = ff_h263_pixel_aspect[s->aspect_ratio_info];
1725 1726
    }

1727
    if ((ctx->vol_control_parameters = get_bits1(gb))) { /* vol control parameter */
1728 1729
        int chroma_format = get_bits(gb, 2);
        if (chroma_format != CHROMA_420)
1730
            av_log(s->avctx, AV_LOG_ERROR, "illegal chroma format\n");
1731 1732 1733

        s->low_delay = get_bits1(gb);
        if (get_bits1(gb)) {    /* vbv parameters */
1734
            get_bits(gb, 15);   /* first_half_bitrate */
1735
            check_marker(gb, "after first_half_bitrate");
1736
            get_bits(gb, 15);   /* latter_half_bitrate */
1737
            check_marker(gb, "after latter_half_bitrate");
1738
            get_bits(gb, 15);   /* first_half_vbv_buffer_size */
1739
            check_marker(gb, "after first_half_vbv_buffer_size");
1740 1741
            get_bits(gb, 3);    /* latter_half_vbv_buffer_size */
            get_bits(gb, 11);   /* first_half_vbv_occupancy */
1742
            check_marker(gb, "after first_half_vbv_occupancy");
1743
            get_bits(gb, 15);   /* latter_half_vbv_occupancy */
1744
            check_marker(gb, "after latter_half_vbv_occupancy");
1745
        }
1746 1747
    } else {
        /* is setting low delay flag only once the smartest thing to do?
1748
         * low delay detection won't be overridden. */
1749 1750
        if (s->picture_number == 0)
            s->low_delay = 0;
1751 1752
    }

1753 1754
    ctx->shape = get_bits(gb, 2); /* vol shape */
    if (ctx->shape != RECT_SHAPE)
1755
        av_log(s->avctx, AV_LOG_ERROR, "only rectangular vol supported\n");
1756
    if (ctx->shape == GRAY_SHAPE && vo_ver_id != 1) {
1757
        av_log(s->avctx, AV_LOG_ERROR, "Gray shape not supported\n");
1758
        skip_bits(gb, 4);  /* video_object_layer_shape_extension */
1759 1760 1761 1762
    }

    check_marker(gb, "before time_increment_resolution");

1763 1764 1765
    s->avctx->framerate.num = get_bits(gb, 16);
    if (!s->avctx->framerate.num) {
        av_log(s->avctx, AV_LOG_ERROR, "framerate==0\n");
1766
        return AVERROR_INVALIDDATA;
1767 1768
    }

1769
    ctx->time_increment_bits = av_log2(s->avctx->framerate.num - 1) + 1;
1770 1771
    if (ctx->time_increment_bits < 1)
        ctx->time_increment_bits = 1;
1772 1773 1774

    check_marker(gb, "before fixed_vop_rate");

1775
    if (get_bits1(gb) != 0)     /* fixed_vop_rate  */
1776
        s->avctx->framerate.den = get_bits(gb, ctx->time_increment_bits);
1777
    else
1778
        s->avctx->framerate.den = 1;
1779

1780
    s->avctx->time_base = av_inv_q(av_mul_q(s->avctx->framerate, (AVRational){s->avctx->ticks_per_frame, 1}));
1781

1782
    ctx->t_frame = 0;
1783

1784 1785
    if (ctx->shape != BIN_ONLY_SHAPE) {
        if (ctx->shape == RECT_SHAPE) {
1786
            check_marker(gb, "before width");
1787
            width = get_bits(gb, 13);
1788
            check_marker(gb, "before height");
1789
            height = get_bits(gb, 13);
1790
            check_marker(gb, "after height");
1791 1792
            if (width && height &&  /* they should be non zero but who knows */
                !(s->width && s->codec_tag == AV_RL32("MP4S"))) {
1793 1794 1795
                if (s->width && s->height &&
                    (s->width != width || s->height != height))
                    s->context_reinit = 1;
1796
                s->width  = width;
1797 1798 1799 1800
                s->height = height;
            }
        }

1801 1802 1803 1804 1805 1806 1807
        s->progressive_sequence  =
        s->progressive_frame     = get_bits1(gb) ^ 1;
        s->interlaced_dct        = 0;
        if (!get_bits1(gb) && (s->avctx->debug & FF_DEBUG_PICT_INFO))
            av_log(s->avctx, AV_LOG_INFO,           /* OBMC Disable */
                   "MPEG4 OBMC not supported (very likely buggy encoder)\n");
        if (vo_ver_id == 1)
1808
            ctx->vol_sprite_usage = get_bits1(gb);    /* vol_sprite_usage */
1809
        else
1810
            ctx->vol_sprite_usage = get_bits(gb, 2);  /* vol_sprite_usage */
1811

1812
        if (ctx->vol_sprite_usage == STATIC_SPRITE)
1813
            av_log(s->avctx, AV_LOG_ERROR, "Static Sprites not supported\n");
1814 1815 1816
        if (ctx->vol_sprite_usage == STATIC_SPRITE ||
            ctx->vol_sprite_usage == GMC_SPRITE) {
            if (ctx->vol_sprite_usage == STATIC_SPRITE) {
1817
                skip_bits(gb, 13); // sprite_width
1818
                check_marker(gb, "after sprite_width");
1819
                skip_bits(gb, 13); // sprite_height
1820
                check_marker(gb, "after sprite_height");
1821
                skip_bits(gb, 13); // sprite_left
1822
                check_marker(gb, "after sprite_left");
1823
                skip_bits(gb, 13); // sprite_top
1824
                check_marker(gb, "after sprite_top");
1825
            }
1826 1827
            ctx->num_sprite_warping_points = get_bits(gb, 6);
            if (ctx->num_sprite_warping_points > 3) {
1828 1829
                av_log(s->avctx, AV_LOG_ERROR,
                       "%d sprite_warping_points\n",
1830 1831
                       ctx->num_sprite_warping_points);
                ctx->num_sprite_warping_points = 0;
1832
                return AVERROR_INVALIDDATA;
1833
            }
1834
            s->sprite_warping_accuracy  = get_bits(gb, 2);
1835
            ctx->sprite_brightness_change = get_bits1(gb);
1836
            if (ctx->vol_sprite_usage == STATIC_SPRITE)
1837
                skip_bits1(gb); // low_latency_sprite
1838 1839 1840
        }
        // FIXME sadct disable bit if verid!=1 && shape not rect

1841 1842 1843 1844 1845 1846 1847
        if (get_bits1(gb) == 1) {                   /* not_8_bit */
            s->quant_precision = get_bits(gb, 4);   /* quant_precision */
            if (get_bits(gb, 4) != 8)               /* bits_per_pixel */
                av_log(s->avctx, AV_LOG_ERROR, "N-bit not supported\n");
            if (s->quant_precision != 5)
                av_log(s->avctx, AV_LOG_ERROR,
                       "quant precision %d\n", s->quant_precision);
1848
            if (s->quant_precision<3 || s->quant_precision>9) {
1849 1850
                s->quant_precision = 5;
            }
1851 1852 1853 1854 1855 1856
        } else {
            s->quant_precision = 5;
        }

        // FIXME a bunch of grayscale shape things

1857
        if ((s->mpeg_quant = get_bits1(gb))) { /* vol_quant_type */
1858 1859 1860
            int i, v;

            /* load default matrixes */
1861
            for (i = 0; i < 64; i++) {
1862
                int j = s->idsp.idct_permutation[i];
1863 1864 1865 1866 1867 1868 1869
                v = ff_mpeg4_default_intra_matrix[i];
                s->intra_matrix[j]        = v;
                s->chroma_intra_matrix[j] = v;

                v = ff_mpeg4_default_non_intra_matrix[i];
                s->inter_matrix[j]        = v;
                s->chroma_inter_matrix[j] = v;
1870 1871 1872
            }

            /* load custom intra matrix */
1873 1874 1875
            if (get_bits1(gb)) {
                int last = 0;
                for (i = 0; i < 64; i++) {
1876
                    int j;
1877 1878 1879 1880 1881
                    v = get_bits(gb, 8);
                    if (v == 0)
                        break;

                    last = v;
1882
                    j = s->idsp.idct_permutation[ff_zigzag_direct[i]];
1883 1884
                    s->intra_matrix[j]        = last;
                    s->chroma_intra_matrix[j] = last;
1885 1886 1887
                }

                /* replicate last value */
1888
                for (; i < 64; i++) {
1889
                    int j = s->idsp.idct_permutation[ff_zigzag_direct[i]];
1890 1891
                    s->intra_matrix[j]        = last;
                    s->chroma_intra_matrix[j] = last;
1892 1893 1894 1895
                }
            }

            /* load custom non intra matrix */
1896 1897 1898
            if (get_bits1(gb)) {
                int last = 0;
                for (i = 0; i < 64; i++) {
1899
                    int j;
1900 1901 1902 1903 1904
                    v = get_bits(gb, 8);
                    if (v == 0)
                        break;

                    last = v;
1905
                    j = s->idsp.idct_permutation[ff_zigzag_direct[i]];
1906 1907
                    s->inter_matrix[j]        = v;
                    s->chroma_inter_matrix[j] = v;
1908 1909 1910
                }

                /* replicate last value */
1911
                for (; i < 64; i++) {
1912
                    int j = s->idsp.idct_permutation[ff_zigzag_direct[i]];
1913 1914
                    s->inter_matrix[j]        = last;
                    s->chroma_inter_matrix[j] = last;
1915 1916 1917 1918 1919 1920
                }
            }

            // FIXME a bunch of grayscale shape things
        }

1921 1922 1923 1924 1925
        if (vo_ver_id != 1)
            s->quarter_sample = get_bits1(gb);
        else
            s->quarter_sample = 0;

1926 1927 1928 1929 1930
        if (get_bits_left(gb) < 4) {
            av_log(s->avctx, AV_LOG_ERROR, "VOL Header truncated\n");
            return AVERROR_INVALIDDATA;
        }

1931 1932 1933 1934 1935
        if (!get_bits1(gb)) {
            int pos               = get_bits_count(gb);
            int estimation_method = get_bits(gb, 2);
            if (estimation_method < 2) {
                if (!get_bits1(gb)) {
1936 1937 1938 1939 1940 1941
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* opaque */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* transparent */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* intra_cae */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* inter_cae */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* no_update */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* upampling */
1942
                }
1943
                if (!get_bits1(gb)) {
1944 1945 1946 1947
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* intra_blocks */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* inter_blocks */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* inter4v_blocks */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* not coded blocks */
1948
                }
1949
                if (!check_marker(gb, "in complexity estimation part 1")) {
1950 1951 1952
                    skip_bits_long(gb, pos - get_bits_count(gb));
                    goto no_cplx_est;
                }
1953
                if (!get_bits1(gb)) {
1954 1955 1956 1957
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* dct_coeffs */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* dct_lines */
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* vlc_syms */
                    ctx->cplx_estimation_trash_i += 4 * get_bits1(gb);  /* vlc_bits */
1958
                }
1959
                if (!get_bits1(gb)) {
1960 1961 1962 1963 1964 1965
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* apm */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* npm */
                    ctx->cplx_estimation_trash_b += 8 * get_bits1(gb);  /* interpolate_mc_q */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* forwback_mc_q */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* halfpel2 */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* halfpel4 */
1966
                }
1967
                if (!check_marker(gb, "in complexity estimation part 2")) {
1968 1969 1970
                    skip_bits_long(gb, pos - get_bits_count(gb));
                    goto no_cplx_est;
                }
1971
                if (estimation_method == 1) {
1972 1973
                    ctx->cplx_estimation_trash_i += 8 * get_bits1(gb);  /* sadct */
                    ctx->cplx_estimation_trash_p += 8 * get_bits1(gb);  /* qpel */
1974
                }
1975 1976 1977 1978 1979 1980
            } else
                av_log(s->avctx, AV_LOG_ERROR,
                       "Invalid Complexity estimation method %d\n",
                       estimation_method);
        } else {

1981
no_cplx_est:
1982 1983 1984
            ctx->cplx_estimation_trash_i =
            ctx->cplx_estimation_trash_p =
            ctx->cplx_estimation_trash_b = 0;
1985 1986
        }

1987
        ctx->resync_marker = !get_bits1(gb); /* resync_marker_disabled */
1988

1989 1990
        s->data_partitioning = get_bits1(gb);
        if (s->data_partitioning)
1991
            ctx->rvlc = get_bits1(gb);
1992

1993
        if (vo_ver_id != 1) {
1994 1995
            ctx->new_pred = get_bits1(gb);
            if (ctx->new_pred) {
1996 1997
                av_log(s->avctx, AV_LOG_ERROR, "new pred not supported\n");
                skip_bits(gb, 2); /* requested upstream message type */
1998
                skip_bits1(gb);   /* newpred segment type */
1999
            }
2000
            if (get_bits1(gb)) // reduced_res_vop
2001 2002 2003
                av_log(s->avctx, AV_LOG_ERROR,
                       "reduced resolution VOP not supported\n");
        } else {
2004
            ctx->new_pred = 0;
2005 2006
        }

2007
        ctx->scalability = get_bits1(gb);
2008

2009
        if (ctx->scalability) {
2010
            GetBitContext bak = *gb;
2011 2012 2013 2014 2015
            int h_sampling_factor_n;
            int h_sampling_factor_m;
            int v_sampling_factor_n;
            int v_sampling_factor_m;

2016
            skip_bits1(gb);    // hierarchy_type
Mans Rullgard's avatar
Mans Rullgard committed
2017 2018
            skip_bits(gb, 4);  /* ref_layer_id */
            skip_bits1(gb);    /* ref_layer_sampling_dir */
2019 2020 2021 2022
            h_sampling_factor_n = get_bits(gb, 5);
            h_sampling_factor_m = get_bits(gb, 5);
            v_sampling_factor_n = get_bits(gb, 5);
            v_sampling_factor_m = get_bits(gb, 5);
2023
            ctx->enhancement_type = get_bits1(gb);
2024 2025 2026

            if (h_sampling_factor_n == 0 || h_sampling_factor_m == 0 ||
                v_sampling_factor_n == 0 || v_sampling_factor_m == 0) {
2027 2028
                /* illegal scalability header (VERY broken encoder),
                 * trying to workaround */
2029
                ctx->scalability = 0;
2030 2031
                *gb            = bak;
            } else
2032 2033 2034 2035 2036
                av_log(s->avctx, AV_LOG_ERROR, "scalability not supported\n");

            // bin shape stuff FIXME
        }
    }
2037

2038
    if (s->avctx->debug&FF_DEBUG_PICT_INFO) {
2039
        av_log(s->avctx, AV_LOG_DEBUG, "tb %d/%d, tincrbits:%d, qp_prec:%d, ps:%d,  %s%s%s%s\n",
2040
               s->avctx->framerate.den, s->avctx->framerate.num,
2041
               ctx->time_increment_bits,
2042 2043
               s->quant_precision,
               s->progressive_sequence,
2044
               ctx->scalability ? "scalability " :"" , s->quarter_sample ? "qpel " : "",
2045
               s->data_partitioning ? "partition " : "", ctx->rvlc ? "rvlc " : ""
2046 2047 2048
        );
    }

2049 2050 2051 2052
    return 0;
}

/**
2053
 * Decode the user data stuff in the header.
2054 2055
 * Also initializes divx/xvid/lavc_version/build.
 */
2056
static int decode_user_data(Mpeg4DecContext *ctx, GetBitContext *gb)
2057
{
2058
    MpegEncContext *s = &ctx->m;
2059 2060 2061 2062 2063 2064
    char buf[256];
    int i;
    int e;
    int ver = 0, build = 0, ver2 = 0, ver3 = 0;
    char last;

2065 2066 2067 2068
    for (i = 0; i < 255 && get_bits_count(gb) < gb->size_in_bits; i++) {
        if (show_bits(gb, 23) == 0)
            break;
        buf[i] = get_bits(gb, 8);
2069
    }
2070
    buf[i] = 0;
2071 2072

    /* divx detection */
2073 2074 2075 2076
    e = sscanf(buf, "DivX%dBuild%d%c", &ver, &build, &last);
    if (e < 2)
        e = sscanf(buf, "DivX%db%d%c", &ver, &build, &last);
    if (e >= 2) {
2077 2078
        ctx->divx_version = ver;
        ctx->divx_build   = build;
2079
        s->divx_packed  = e == 3 && last == 'p';
2080 2081
    }

2082
    /* libavcodec detection */
2083 2084 2085 2086 2087 2088 2089
    e = sscanf(buf, "FFmpe%*[^b]b%d", &build) + 3;
    if (e != 4)
        e = sscanf(buf, "FFmpeg v%d.%d.%d / libavcodec build: %d", &ver, &ver2, &ver3, &build);
    if (e != 4) {
        e = sscanf(buf, "Lavc%d.%d.%d", &ver, &ver2, &ver3) + 1;
        if (e > 1)
            build = (ver << 16) + (ver2 << 8) + ver3;
2090
    }
2091 2092
    if (e != 4) {
        if (strcmp(buf, "ffmpeg") == 0)
2093
            ctx->lavc_build = 4600;
2094
    }
2095
    if (e == 4)
2096
        ctx->lavc_build = build;
2097 2098

    /* Xvid detection */
2099 2100
    e = sscanf(buf, "XviD%d", &build);
    if (e == 1)
2101
        ctx->xvid_build = build;
2102 2103 2104 2105

    return 0;
}

2106 2107 2108 2109 2110
int ff_mpeg4_workaround_bugs(AVCodecContext *avctx)
{
    Mpeg4DecContext *ctx = avctx->priv_data;
    MpegEncContext *s = &ctx->m;

2111
    if (ctx->xvid_build == -1 && ctx->divx_version == -1 && ctx->lavc_build == -1) {
2112
        if (s->codec_tag        == AV_RL32("XVID") ||
2113 2114 2115 2116
            s->codec_tag        == AV_RL32("XVIX") ||
            s->codec_tag        == AV_RL32("RMP4") ||
            s->codec_tag        == AV_RL32("ZMP4") ||
            s->codec_tag        == AV_RL32("SIPP"))
2117
            ctx->xvid_build = 0;
2118 2119
    }

2120
    if (ctx->xvid_build == -1 && ctx->divx_version == -1 && ctx->lavc_build == -1)
2121
        if (s->codec_tag == AV_RL32("DIVX") && s->vo_type == 0 &&
2122
            ctx->vol_control_parameters == 0)
2123
            ctx->divx_version = 400;  // divx 4
2124

2125 2126 2127
    if (ctx->xvid_build >= 0 && ctx->divx_version >= 0) {
        ctx->divx_version =
        ctx->divx_build   = -1;
2128 2129 2130 2131 2132 2133 2134 2135 2136
    }

    if (s->workaround_bugs & FF_BUG_AUTODETECT) {
        if (s->codec_tag == AV_RL32("XVIX"))
            s->workaround_bugs |= FF_BUG_XVID_ILACE;

        if (s->codec_tag == AV_RL32("UMP4"))
            s->workaround_bugs |= FF_BUG_UMP4;

2137
        if (ctx->divx_version >= 500 && ctx->divx_build < 1814)
2138 2139
            s->workaround_bugs |= FF_BUG_QPEL_CHROMA;

2140
        if (ctx->divx_version > 502 && ctx->divx_build < 1814)
2141 2142
            s->workaround_bugs |= FF_BUG_QPEL_CHROMA2;

2143
        if (ctx->xvid_build <= 3U)
2144 2145
            s->padding_bug_score = 256 * 256 * 256 * 64;

2146
        if (ctx->xvid_build <= 1U)
2147 2148
            s->workaround_bugs |= FF_BUG_QPEL_CHROMA;

2149
        if (ctx->xvid_build <= 12U)
2150 2151
            s->workaround_bugs |= FF_BUG_EDGE;

2152
        if (ctx->xvid_build <= 32U)
2153 2154 2155
            s->workaround_bugs |= FF_BUG_DC_CLIP;

#define SET_QPEL_FUNC(postfix1, postfix2)                           \
2156 2157 2158
    s->qdsp.put_        ## postfix1 = ff_put_        ## postfix2;   \
    s->qdsp.put_no_rnd_ ## postfix1 = ff_put_no_rnd_ ## postfix2;   \
    s->qdsp.avg_        ## postfix1 = ff_avg_        ## postfix2;
2159

2160
        if (ctx->lavc_build < 4653U)
2161 2162
            s->workaround_bugs |= FF_BUG_STD_QPEL;

2163
        if (ctx->lavc_build < 4655U)
2164 2165
            s->workaround_bugs |= FF_BUG_DIRECT_BLOCKSIZE;

2166
        if (ctx->lavc_build < 4670U)
2167 2168
            s->workaround_bugs |= FF_BUG_EDGE;

2169
        if (ctx->lavc_build <= 4712U)
2170 2171
            s->workaround_bugs |= FF_BUG_DC_CLIP;

2172
        if (ctx->divx_version >= 0)
2173
            s->workaround_bugs |= FF_BUG_DIRECT_BLOCKSIZE;
2174
        if (ctx->divx_version == 501 && ctx->divx_build == 20020416)
2175 2176
            s->padding_bug_score = 256 * 256 * 256 * 64;

2177
        if (ctx->divx_version < 500U)
2178 2179
            s->workaround_bugs |= FF_BUG_EDGE;

2180
        if (ctx->divx_version >= 0)
2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202
            s->workaround_bugs |= FF_BUG_HPEL_CHROMA;
    }

    if (s->workaround_bugs & FF_BUG_STD_QPEL) {
        SET_QPEL_FUNC(qpel_pixels_tab[0][5], qpel16_mc11_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[0][7], qpel16_mc31_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[0][9], qpel16_mc12_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[0][11], qpel16_mc32_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[0][13], qpel16_mc13_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[0][15], qpel16_mc33_old_c)

        SET_QPEL_FUNC(qpel_pixels_tab[1][5], qpel8_mc11_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[1][7], qpel8_mc31_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[1][9], qpel8_mc12_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[1][11], qpel8_mc32_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[1][13], qpel8_mc13_old_c)
        SET_QPEL_FUNC(qpel_pixels_tab[1][15], qpel8_mc33_old_c)
    }

    if (avctx->debug & FF_DEBUG_BUGS)
        av_log(s->avctx, AV_LOG_DEBUG,
               "bugs: %X lavc_build:%d xvid_build:%d divx_version:%d divx_build:%d %s\n",
2203 2204
               s->workaround_bugs, ctx->lavc_build, ctx->xvid_build,
               ctx->divx_version, ctx->divx_build, s->divx_packed ? "p" : "");
2205

2206 2207
    if (CONFIG_MPEG4_DECODER && ctx->xvid_build >= 0 &&
        s->codec_id == AV_CODEC_ID_MPEG4 &&
2208
        avctx->idct_algo == FF_IDCT_AUTO) {
2209
        avctx->idct_algo = FF_IDCT_XVID;
2210
        ff_mpv_idct_init(s);
2211 2212
        return 1;
    }
2213

2214 2215 2216
    return 0;
}

2217
static int decode_vop_header(Mpeg4DecContext *ctx, GetBitContext *gb)
2218
{
2219
    MpegEncContext *s = &ctx->m;
2220
    int time_incr, time_increment;
2221
    int64_t pts;
2222

2223
    s->pict_type = get_bits(gb, 2) + AV_PICTURE_TYPE_I;        /* pict type: I = 0 , P = 1 */
2224
    if (s->pict_type == AV_PICTURE_TYPE_B && s->low_delay &&
2225
        ctx->vol_control_parameters == 0 && !(s->avctx->flags & CODEC_FLAG_LOW_DELAY)) {
2226
        av_log(s->avctx, AV_LOG_ERROR, "low_delay flag set incorrectly, clearing it\n");
2227
        s->low_delay = 0;
2228 2229
    }

2230 2231 2232
    s->partitioned_frame = s->data_partitioning && s->pict_type != AV_PICTURE_TYPE_B;
    if (s->partitioned_frame)
        s->decode_mb = mpeg4_decode_partitioned_mb;
2233
    else
2234
        s->decode_mb = mpeg4_decode_mb;
2235

2236
    time_incr = 0;
2237 2238 2239 2240 2241
    while (get_bits1(gb) != 0)
        time_incr++;

    check_marker(gb, "before time_increment");

2242 2243
    if (ctx->time_increment_bits == 0 ||
        !(show_bits(gb, ctx->time_increment_bits + 1) & 1)) {
2244
        av_log(s->avctx, AV_LOG_WARNING,
2245
               "time_increment_bits %d is invalid in relation to the current bitstream, this is likely caused by a missing VOL header\n", ctx->time_increment_bits);
2246

2247 2248 2249
        for (ctx->time_increment_bits = 1;
             ctx->time_increment_bits < 16;
             ctx->time_increment_bits++) {
2250 2251
            if (s->pict_type == AV_PICTURE_TYPE_P ||
                (s->pict_type == AV_PICTURE_TYPE_S &&
2252
                 ctx->vol_sprite_usage == GMC_SPRITE)) {
2253
                if ((show_bits(gb, ctx->time_increment_bits + 6) & 0x37) == 0x30)
2254
                    break;
2255
            } else if ((show_bits(gb, ctx->time_increment_bits + 5) & 0x1F) == 0x18)
2256
                break;
2257 2258
        }

2259
        av_log(s->avctx, AV_LOG_WARNING,
2260
               "time_increment_bits set to %d bits, based on bitstream analysis\n", ctx->time_increment_bits);
2261 2262 2263
        if (s->avctx->framerate.num && 4*s->avctx->framerate.num < 1<<ctx->time_increment_bits) {
            s->avctx->framerate.num = 1<<ctx->time_increment_bits;
            s->avctx->time_base = av_inv_q(av_mul_q(s->avctx->framerate, (AVRational){s->avctx->ticks_per_frame, 1}));
2264
        }
2265 2266
    }

2267 2268 2269
    if (IS_3IV1)
        time_increment = get_bits1(gb);        // FIXME investigate further
    else
2270
        time_increment = get_bits(gb, ctx->time_increment_bits);
2271 2272 2273 2274

    if (s->pict_type != AV_PICTURE_TYPE_B) {
        s->last_time_base = s->time_base;
        s->time_base     += time_incr;
2275
        s->time = s->time_base * s->avctx->framerate.num + time_increment;
2276 2277
        if (s->workaround_bugs & FF_BUG_UMP4) {
            if (s->time < s->last_non_b_time) {
2278 2279 2280
                /* header is not mpeg-4-compatible, broken encoder,
                 * trying to workaround */
                s->time_base++;
2281
                s->time += s->avctx->framerate.num;
2282 2283
            }
        }
2284 2285 2286
        s->pp_time         = s->time - s->last_non_b_time;
        s->last_non_b_time = s->time;
    } else {
2287
        s->time    = (s->last_time_base + time_incr) * s->avctx->framerate.num + time_increment;
2288 2289 2290 2291
        s->pb_time = s->pp_time - (s->last_non_b_time - s->time);
        if (s->pp_time <= s->pb_time ||
            s->pp_time <= s->pp_time - s->pb_time ||
            s->pp_time <= 0) {
2292 2293 2294 2295 2296
            /* messed up order, maybe after seeking? skipping current b-frame */
            return FRAME_SKIPPED;
        }
        ff_mpeg4_init_direct_mv(s);

2297 2298 2299 2300 2301 2302 2303 2304
        if (ctx->t_frame == 0)
            ctx->t_frame = s->pb_time;
        if (ctx->t_frame == 0)
            ctx->t_frame = 1;  // 1/0 protection
        s->pp_field_time = (ROUNDED_DIV(s->last_non_b_time, ctx->t_frame) -
                            ROUNDED_DIV(s->last_non_b_time - s->pp_time, ctx->t_frame)) * 2;
        s->pb_field_time = (ROUNDED_DIV(s->time, ctx->t_frame) -
                            ROUNDED_DIV(s->last_non_b_time - s->pp_time, ctx->t_frame)) * 2;
2305 2306 2307 2308
        if (s->pp_field_time <= s->pb_field_time || s->pb_field_time <= 1) {
            s->pb_field_time = 2;
            s->pp_field_time = 4;
            if (!s->progressive_sequence)
2309 2310 2311 2312
                return FRAME_SKIPPED;
        }
    }

2313 2314
    if (s->avctx->framerate.den)
        pts = ROUNDED_DIV(s->time, s->avctx->framerate.den);
2315
    else
2316
        pts = AV_NOPTS_VALUE;
2317
    if (s->avctx->debug&FF_DEBUG_PTS)
2318
        av_log(s->avctx, AV_LOG_DEBUG, "MPEG4 PTS: %"PRId64"\n",
2319
               pts);
2320 2321 2322 2323

    check_marker(gb, "before vop_coded");

    /* vop coded */
2324 2325
    if (get_bits1(gb) != 1) {
        if (s->avctx->debug & FF_DEBUG_PICT_INFO)
2326 2327 2328
            av_log(s->avctx, AV_LOG_ERROR, "vop not coded\n");
        return FRAME_SKIPPED;
    }
2329
    if (ctx->new_pred)
2330
        decode_new_pred(ctx, gb);
2331

2332
    if (ctx->shape != BIN_ONLY_SHAPE &&
2333 2334
                    (s->pict_type == AV_PICTURE_TYPE_P ||
                     (s->pict_type == AV_PICTURE_TYPE_S &&
2335
                      ctx->vol_sprite_usage == GMC_SPRITE))) {
2336 2337 2338 2339 2340
        /* rounding type for motion estimation */
        s->no_rounding = get_bits1(gb);
    } else {
        s->no_rounding = 0;
    }
2341 2342
    // FIXME reduced res stuff

2343
    if (ctx->shape != RECT_SHAPE) {
2344
        if (ctx->vol_sprite_usage != 1 || s->pict_type != AV_PICTURE_TYPE_I) {
2345
            skip_bits(gb, 13);  /* width */
2346
            check_marker(gb, "after width");
2347
            skip_bits(gb, 13);  /* height */
2348
            check_marker(gb, "after height");
2349
            skip_bits(gb, 13);  /* hor_spat_ref */
2350
            check_marker(gb, "after hor_spat_ref");
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360
            skip_bits(gb, 13);  /* ver_spat_ref */
        }
        skip_bits1(gb);         /* change_CR_disable */

        if (get_bits1(gb) != 0)
            skip_bits(gb, 8);   /* constant_alpha_value */
    }

    // FIXME complexity estimation stuff

2361
    if (ctx->shape != BIN_ONLY_SHAPE) {
2362
        skip_bits_long(gb, ctx->cplx_estimation_trash_i);
2363
        if (s->pict_type != AV_PICTURE_TYPE_I)
2364
            skip_bits_long(gb, ctx->cplx_estimation_trash_p);
2365
        if (s->pict_type == AV_PICTURE_TYPE_B)
2366
            skip_bits_long(gb, ctx->cplx_estimation_trash_b);
2367

2368 2369
        if (get_bits_left(gb) < 3) {
            av_log(s->avctx, AV_LOG_ERROR, "Header truncated\n");
2370
            return AVERROR_INVALIDDATA;
2371
        }
2372
        ctx->intra_dc_threshold = ff_mpeg4_dc_threshold[get_bits(gb, 3)];
2373 2374 2375 2376 2377 2378 2379 2380
        if (!s->progressive_sequence) {
            s->top_field_first = get_bits1(gb);
            s->alternate_scan  = get_bits1(gb);
        } else
            s->alternate_scan = 0;
    }

    if (s->alternate_scan) {
2381 2382 2383 2384
        ff_init_scantable(s->idsp.idct_permutation, &s->inter_scantable,   ff_alternate_vertical_scan);
        ff_init_scantable(s->idsp.idct_permutation, &s->intra_scantable,   ff_alternate_vertical_scan);
        ff_init_scantable(s->idsp.idct_permutation, &s->intra_h_scantable, ff_alternate_vertical_scan);
        ff_init_scantable(s->idsp.idct_permutation, &s->intra_v_scantable, ff_alternate_vertical_scan);
2385
    } else {
2386 2387 2388 2389
        ff_init_scantable(s->idsp.idct_permutation, &s->inter_scantable,   ff_zigzag_direct);
        ff_init_scantable(s->idsp.idct_permutation, &s->intra_scantable,   ff_zigzag_direct);
        ff_init_scantable(s->idsp.idct_permutation, &s->intra_h_scantable, ff_alternate_horizontal_scan);
        ff_init_scantable(s->idsp.idct_permutation, &s->intra_v_scantable, ff_alternate_vertical_scan);
2390 2391 2392
    }

    if (s->pict_type == AV_PICTURE_TYPE_S &&
2393 2394
        (ctx->vol_sprite_usage == STATIC_SPRITE ||
         ctx->vol_sprite_usage == GMC_SPRITE)) {
2395
        if (mpeg4_decode_sprite_trajectory(ctx, gb) < 0)
2396
            return AVERROR_INVALIDDATA;
2397
        if (ctx->sprite_brightness_change)
2398 2399
            av_log(s->avctx, AV_LOG_ERROR,
                   "sprite_brightness_change not supported\n");
2400
        if (ctx->vol_sprite_usage == STATIC_SPRITE)
2401 2402 2403
            av_log(s->avctx, AV_LOG_ERROR, "static sprite not supported\n");
    }

2404
    if (ctx->shape != BIN_ONLY_SHAPE) {
2405 2406 2407 2408
        s->chroma_qscale = s->qscale = get_bits(gb, s->quant_precision);
        if (s->qscale == 0) {
            av_log(s->avctx, AV_LOG_ERROR,
                   "Error, header damaged or not MPEG4 header (qscale=0)\n");
2409
            return AVERROR_INVALIDDATA;  // makes no sense to continue, as there is nothing left from the image then
2410 2411 2412 2413 2414 2415 2416
        }

        if (s->pict_type != AV_PICTURE_TYPE_I) {
            s->f_code = get_bits(gb, 3);        /* fcode_for */
            if (s->f_code == 0) {
                av_log(s->avctx, AV_LOG_ERROR,
                       "Error, header damaged or not MPEG4 header (f_code=0)\n");
2417
                s->f_code = 1;
2418
                return AVERROR_INVALIDDATA;  // makes no sense to continue, as there is nothing left from the image then
2419 2420 2421 2422 2423 2424
            }
        } else
            s->f_code = 1;

        if (s->pict_type == AV_PICTURE_TYPE_B) {
            s->b_code = get_bits(gb, 3);
2425 2426 2427 2428
            if (s->b_code == 0) {
                av_log(s->avctx, AV_LOG_ERROR,
                       "Error, header damaged or not MPEG4 header (b_code=0)\n");
                s->b_code=1;
2429
                return AVERROR_INVALIDDATA; // makes no sense to continue, as the MV decoding will break very quickly
2430
            }
2431 2432 2433 2434 2435
        } else
            s->b_code = 1;

        if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
            av_log(s->avctx, AV_LOG_DEBUG,
2436
                   "qp:%d fc:%d,%d %s size:%d pro:%d alt:%d top:%d %spel part:%d resync:%d w:%d a:%d rnd:%d vot:%d%s dc:%d ce:%d/%d/%d time:%"PRId64" tincr:%d\n",
2437 2438
                   s->qscale, s->f_code, s->b_code,
                   s->pict_type == AV_PICTURE_TYPE_I ? "I" : (s->pict_type == AV_PICTURE_TYPE_P ? "P" : (s->pict_type == AV_PICTURE_TYPE_B ? "B" : "S")),
2439
                   gb->size_in_bits,s->progressive_sequence, s->alternate_scan,
2440
                   s->top_field_first, s->quarter_sample ? "q" : "h",
2441
                   s->data_partitioning, ctx->resync_marker,
2442
                   ctx->num_sprite_warping_points, s->sprite_warping_accuracy,
2443
                   1 - s->no_rounding, s->vo_type,
2444
                   ctx->vol_control_parameters ? " VOLC" : " ", ctx->intra_dc_threshold,
2445
                   ctx->cplx_estimation_trash_i, ctx->cplx_estimation_trash_p,
2446
                   ctx->cplx_estimation_trash_b,
2447 2448 2449
                   s->time,
                   time_increment
                  );
2450 2451
        }

2452
        if (!ctx->scalability) {
2453
            if (ctx->shape != RECT_SHAPE && s->pict_type != AV_PICTURE_TYPE_I)
2454 2455
                skip_bits1(gb);  // vop shape coding type
        } else {
2456
            if (ctx->enhancement_type) {
2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467
                int load_backward_shape = get_bits1(gb);
                if (load_backward_shape)
                    av_log(s->avctx, AV_LOG_ERROR,
                           "load backward shape isn't supported\n");
            }
            skip_bits(gb, 2);  // ref_select_code
        }
    }
    /* detect buggy encoders which don't set the low_delay flag
     * (divx4/xvid/opendivx). Note we cannot detect divx5 without b-frames
     * easily (although it's buggy too) */
2468
    if (s->vo_type == 0 && ctx->vol_control_parameters == 0 &&
2469
        ctx->divx_version == -1 && s->picture_number == 0) {
2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485
        av_log(s->avctx, AV_LOG_WARNING,
               "looks like this file was encoded with (divx4/(old)xvid/opendivx) -> forcing low_delay flag\n");
        s->low_delay = 1;
    }

    s->picture_number++;  // better than pic number==0 always ;)

    // FIXME add short header support
    s->y_dc_scale_table = ff_mpeg4_y_dc_scale_table;
    s->c_dc_scale_table = ff_mpeg4_c_dc_scale_table;

    if (s->workaround_bugs & FF_BUG_EDGE) {
        s->h_edge_pos = s->width;
        s->v_edge_pos = s->height;
    }
    return 0;
2486 2487 2488
}

/**
2489
 * Decode mpeg4 headers.
2490 2491 2492 2493
 * @return <0 if no VOP found (or a damaged one)
 *         FRAME_SKIPPED if a not coded VOP is found
 *         0 if a VOP is found
 */
2494
int ff_mpeg4_decode_picture_header(Mpeg4DecContext *ctx, GetBitContext *gb)
2495
{
2496
    MpegEncContext *s = &ctx->m;
2497
    unsigned startcode, v;
2498
    int ret;
2499 2500 2501 2502

    /* search next start code */
    align_get_bits(gb);

2503
    if (s->codec_tag == AV_RL32("WV1F") && show_bits(gb, 24) == 0x575630) {
2504
        skip_bits(gb, 24);
2505
        if (get_bits(gb, 8) == 0xF0)
2506 2507 2508 2509
            goto end;
    }

    startcode = 0xff;
2510 2511 2512
    for (;;) {
        if (get_bits_count(gb) >= gb->size_in_bits) {
            if (gb->size_in_bits == 8 &&
2513
                (ctx->divx_version >= 0 || ctx->xvid_build >= 0) || s->codec_tag == AV_RL32("QMP4")) {
2514
                av_log(s->avctx, AV_LOG_VERBOSE, "frame skip %d\n", gb->size_in_bits);
2515 2516 2517
                return FRAME_SKIPPED;  // divx bug
            } else
                return -1;  // end of stream
2518 2519 2520 2521 2522 2523
        }

        /* use the bits after the test */
        v = get_bits(gb, 8);
        startcode = ((startcode << 8) | v) & 0xffffffff;

2524 2525
        if ((startcode & 0xFFFFFF00) != 0x100)
            continue;  // no startcode
2526

2527
        if (s->avctx->debug & FF_DEBUG_STARTCODE) {
2528
            av_log(s->avctx, AV_LOG_DEBUG, "startcode: %3X ", startcode);
2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582
            if (startcode <= 0x11F)
                av_log(s->avctx, AV_LOG_DEBUG, "Video Object Start");
            else if (startcode <= 0x12F)
                av_log(s->avctx, AV_LOG_DEBUG, "Video Object Layer Start");
            else if (startcode <= 0x13F)
                av_log(s->avctx, AV_LOG_DEBUG, "Reserved");
            else if (startcode <= 0x15F)
                av_log(s->avctx, AV_LOG_DEBUG, "FGS bp start");
            else if (startcode <= 0x1AF)
                av_log(s->avctx, AV_LOG_DEBUG, "Reserved");
            else if (startcode == 0x1B0)
                av_log(s->avctx, AV_LOG_DEBUG, "Visual Object Seq Start");
            else if (startcode == 0x1B1)
                av_log(s->avctx, AV_LOG_DEBUG, "Visual Object Seq End");
            else if (startcode == 0x1B2)
                av_log(s->avctx, AV_LOG_DEBUG, "User Data");
            else if (startcode == 0x1B3)
                av_log(s->avctx, AV_LOG_DEBUG, "Group of VOP start");
            else if (startcode == 0x1B4)
                av_log(s->avctx, AV_LOG_DEBUG, "Video Session Error");
            else if (startcode == 0x1B5)
                av_log(s->avctx, AV_LOG_DEBUG, "Visual Object Start");
            else if (startcode == 0x1B6)
                av_log(s->avctx, AV_LOG_DEBUG, "Video Object Plane start");
            else if (startcode == 0x1B7)
                av_log(s->avctx, AV_LOG_DEBUG, "slice start");
            else if (startcode == 0x1B8)
                av_log(s->avctx, AV_LOG_DEBUG, "extension start");
            else if (startcode == 0x1B9)
                av_log(s->avctx, AV_LOG_DEBUG, "fgs start");
            else if (startcode == 0x1BA)
                av_log(s->avctx, AV_LOG_DEBUG, "FBA Object start");
            else if (startcode == 0x1BB)
                av_log(s->avctx, AV_LOG_DEBUG, "FBA Object Plane start");
            else if (startcode == 0x1BC)
                av_log(s->avctx, AV_LOG_DEBUG, "Mesh Object start");
            else if (startcode == 0x1BD)
                av_log(s->avctx, AV_LOG_DEBUG, "Mesh Object Plane start");
            else if (startcode == 0x1BE)
                av_log(s->avctx, AV_LOG_DEBUG, "Still Texture Object start");
            else if (startcode == 0x1BF)
                av_log(s->avctx, AV_LOG_DEBUG, "Texture Spatial Layer start");
            else if (startcode == 0x1C0)
                av_log(s->avctx, AV_LOG_DEBUG, "Texture SNR Layer start");
            else if (startcode == 0x1C1)
                av_log(s->avctx, AV_LOG_DEBUG, "Texture Tile start");
            else if (startcode == 0x1C2)
                av_log(s->avctx, AV_LOG_DEBUG, "Texture Shape Layer start");
            else if (startcode == 0x1C3)
                av_log(s->avctx, AV_LOG_DEBUG, "stuffing start");
            else if (startcode <= 0x1C5)
                av_log(s->avctx, AV_LOG_DEBUG, "reserved");
            else if (startcode <= 0x1FF)
                av_log(s->avctx, AV_LOG_DEBUG, "System start");
2583 2584 2585
            av_log(s->avctx, AV_LOG_DEBUG, " at %d\n", get_bits_count(gb));
        }

2586
        if (startcode >= 0x120 && startcode <= 0x12F) {
2587 2588
            if ((ret = decode_vol_header(ctx, gb)) < 0)
                return ret;
2589
        } else if (startcode == USER_DATA_STARTCODE) {
2590
            decode_user_data(ctx, gb);
2591
        } else if (startcode == GOP_STARTCODE) {
2592
            mpeg4_decode_gop_header(s, gb);
2593
        } else if (startcode == VOS_STARTCODE) {
2594
            mpeg4_decode_profile_level(s, gb);
2595
        } else if (startcode == VOP_STARTCODE) {
2596 2597 2598 2599 2600 2601
            break;
        }

        align_get_bits(gb);
        startcode = 0xff;
    }
2602

2603
end:
2604
    if (s->avctx->flags & CODEC_FLAG_LOW_DELAY)
2605 2606 2607
        s->low_delay = 1;
    s->avctx->has_b_frames = !s->low_delay;

2608
    return decode_vop_header(ctx, gb);
2609 2610
}

2611
av_cold void ff_mpeg4videodec_static_init(void) {
2612 2613 2614
    static int done = 0;

    if (!done) {
2615
        ff_init_rl(&ff_mpeg4_rl_intra, ff_mpeg4_static_rl_table_store[0]);
2616 2617
        ff_init_rl(&ff_rvlc_rl_inter, ff_mpeg4_static_rl_table_store[1]);
        ff_init_rl(&ff_rvlc_rl_intra, ff_mpeg4_static_rl_table_store[2]);
2618
        INIT_VLC_RL(ff_mpeg4_rl_intra, 554);
2619 2620
        INIT_VLC_RL(ff_rvlc_rl_inter, 1072);
        INIT_VLC_RL(ff_rvlc_rl_intra, 1072);
2621
        INIT_VLC_STATIC(&dc_lum, DC_VLC_BITS, 10 /* 13 */,
2622 2623
                        &ff_mpeg4_DCtab_lum[0][1], 2, 1,
                        &ff_mpeg4_DCtab_lum[0][0], 2, 1, 512);
2624
        INIT_VLC_STATIC(&dc_chrom, DC_VLC_BITS, 10 /* 13 */,
2625 2626
                        &ff_mpeg4_DCtab_chrom[0][1], 2, 1,
                        &ff_mpeg4_DCtab_chrom[0][0], 2, 1, 512);
2627
        INIT_VLC_STATIC(&sprite_trajectory, SPRITE_TRAJ_VLC_BITS, 15,
2628 2629
                        &ff_sprite_trajectory_tab[0][1], 4, 2,
                        &ff_sprite_trajectory_tab[0][0], 4, 2, 128);
2630
        INIT_VLC_STATIC(&mb_type_b_vlc, MB_TYPE_B_VLC_BITS, 4,
2631 2632
                        &ff_mb_type_b_tab[0][1], 2, 1,
                        &ff_mb_type_b_tab[0][0], 2, 1, 16);
2633
        done = 1;
2634
    }
2635 2636
}

2637 2638 2639 2640 2641
int ff_mpeg4_frame_end(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
{
    Mpeg4DecContext *ctx = avctx->priv_data;
    MpegEncContext    *s = &ctx->m;

2642 2643 2644
    /* divx 5.01+ bitstream reorder stuff */
    /* Since this clobbers the input buffer and hwaccel codecs still need the
     * data during hwaccel->end_frame we should not do this any earlier */
2645
    if (s->divx_packed) {
2646
        int current_pos     = s->gb.buffer == s->bitstream_buffer ? 0 : (get_bits_count(&s->gb) >> 3);
2647 2648
        int startcode_found = 0;

2649 2650
        if (buf_size - current_pos > 7) {

2651
            int i;
2652 2653
            for (i = current_pos; i < buf_size - 4; i++)

2654 2655 2656 2657
                if (buf[i]     == 0 &&
                    buf[i + 1] == 0 &&
                    buf[i + 2] == 1 &&
                    buf[i + 3] == 0xB6) {
2658
                    startcode_found = !(buf[i + 4] & 0x40);
2659 2660 2661 2662 2663
                    break;
                }
        }

        if (startcode_found) {
2664 2665 2666
            if (!ctx->showed_packed_warning) {
                av_log(s->avctx, AV_LOG_INFO, "Video uses a non-standard and "
                       "wasteful way to store B-frames ('packed B-frames'). "
2667
                       "Consider using the mpeg4_unpack_bframes bitstream filter to fix it.\n");
2668 2669
                ctx->showed_packed_warning = 1;
            }
2670
            av_fast_padded_malloc(&s->bitstream_buffer,
2671
                           &s->allocated_bitstream_buffer_size,
2672
                           buf_size - current_pos);
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683
            if (!s->bitstream_buffer)
                return AVERROR(ENOMEM);
            memcpy(s->bitstream_buffer, buf + current_pos,
                   buf_size - current_pos);
            s->bitstream_buffer_size = buf_size - current_pos;
        }
    }

    return 0;
}

2684 2685 2686 2687 2688
static int mpeg4_update_thread_context(AVCodecContext *dst,
                                       const AVCodecContext *src)
{
    Mpeg4DecContext *s = dst->priv_data;
    const Mpeg4DecContext *s1 = src->priv_data;
2689
    int init = s->m.context_initialized;
2690 2691 2692 2693 2694 2695

    int ret = ff_mpeg_update_thread_context(dst, src);

    if (ret < 0)
        return ret;

2696
    memcpy(((uint8_t*)s) + sizeof(MpegEncContext), ((uint8_t*)s1) + sizeof(MpegEncContext), sizeof(Mpeg4DecContext) - sizeof(MpegEncContext));
2697

2698
    if (CONFIG_MPEG4_DECODER && !init && s1->xvid_build >= 0)
2699
        ff_xvid_idct_init(&s->m.idsp, dst);
2700

2701 2702 2703
    return 0;
}

2704 2705
static av_cold int decode_init(AVCodecContext *avctx)
{
2706 2707
    Mpeg4DecContext *ctx = avctx->priv_data;
    MpegEncContext *s = &ctx->m;
2708 2709
    int ret;

2710 2711 2712 2713
    ctx->divx_version =
    ctx->divx_build   =
    ctx->xvid_build   =
    ctx->lavc_build   = -1;
2714

2715
    if ((ret = ff_h263_decode_init(avctx)) < 0)
2716 2717 2718
        return ret;

    ff_mpeg4videodec_static_init();
2719 2720

    s->h263_pred = 1;
2721
    s->low_delay = 0; /* default, might be overridden in the vol header during header parsing */
2722
    s->decode_mb = mpeg4_decode_mb;
2723
    ctx->time_increment_bits = 4; /* default value for broken headers */
2724

2725
    avctx->chroma_sample_location = AVCHROMA_LOC_LEFT;
2726 2727
    avctx->internal->allocate_progress = 1;

2728 2729 2730
    return 0;
}

2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747
static const AVProfile mpeg4_video_profiles[] = {
    { FF_PROFILE_MPEG4_SIMPLE,                    "Simple Profile" },
    { FF_PROFILE_MPEG4_SIMPLE_SCALABLE,           "Simple Scalable Profile" },
    { FF_PROFILE_MPEG4_CORE,                      "Core Profile" },
    { FF_PROFILE_MPEG4_MAIN,                      "Main Profile" },
    { FF_PROFILE_MPEG4_N_BIT,                     "N-bit Profile" },
    { FF_PROFILE_MPEG4_SCALABLE_TEXTURE,          "Scalable Texture Profile" },
    { FF_PROFILE_MPEG4_SIMPLE_FACE_ANIMATION,     "Simple Face Animation Profile" },
    { FF_PROFILE_MPEG4_BASIC_ANIMATED_TEXTURE,    "Basic Animated Texture Profile" },
    { FF_PROFILE_MPEG4_HYBRID,                    "Hybrid Profile" },
    { FF_PROFILE_MPEG4_ADVANCED_REAL_TIME,        "Advanced Real Time Simple Profile" },
    { FF_PROFILE_MPEG4_CORE_SCALABLE,             "Code Scalable Profile" },
    { FF_PROFILE_MPEG4_ADVANCED_CODING,           "Advanced Coding Profile" },
    { FF_PROFILE_MPEG4_ADVANCED_CORE,             "Advanced Core Profile" },
    { FF_PROFILE_MPEG4_ADVANCED_SCALABLE_TEXTURE, "Advanced Scalable Texture Profile" },
    { FF_PROFILE_MPEG4_SIMPLE_STUDIO,             "Simple Studio Profile" },
    { FF_PROFILE_MPEG4_ADVANCED_SIMPLE,           "Advanced Simple Profile" },
2748
    { FF_PROFILE_UNKNOWN },
2749 2750
};

2751
static const AVOption mpeg4_options[] = {
2752 2753
    {"quarter_sample", "1/4 subpel MC", offsetof(MpegEncContext, quarter_sample), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
    {"divx_packed", "divx style packed b frames", offsetof(MpegEncContext, divx_packed), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
2754 2755 2756 2757 2758 2759 2760 2761 2762 2763
    {NULL}
};

static const AVClass mpeg4_class = {
    "MPEG4 Video Decoder",
    av_default_item_name,
    mpeg4_options,
    LIBAVUTIL_VERSION_INT,
};

2764
AVCodec ff_mpeg4_decoder = {
2765
    .name                  = "mpeg4",
2766
    .long_name             = NULL_IF_CONFIG_SMALL("MPEG-4 part 2"),
2767
    .type                  = AVMEDIA_TYPE_VIDEO,
2768
    .id                    = AV_CODEC_ID_MPEG4,
2769
    .priv_data_size        = sizeof(Mpeg4DecContext),
2770 2771 2772 2773 2774 2775 2776
    .init                  = decode_init,
    .close                 = ff_h263_decode_end,
    .decode                = ff_h263_decode_frame,
    .capabilities          = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1 |
                             CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY |
                             CODEC_CAP_FRAME_THREADS,
    .flush                 = ff_mpeg_flush,
2777
    .max_lowres            = 3,
2778
    .pix_fmts              = ff_h263_hwaccel_pixfmt_list_420,
2779
    .profiles              = NULL_IF_CONFIG_SMALL(mpeg4_video_profiles),
2780
    .update_thread_context = ONLY_IF_THREADS_ENABLED(mpeg4_update_thread_context),
2781
    .priv_class = &mpeg4_class,
2782 2783
};

2784 2785

#if CONFIG_MPEG4_VDPAU_DECODER
2786 2787 2788 2789 2790 2791 2792
static const AVClass mpeg4_vdpau_class = {
    "MPEG4 Video VDPAU Decoder",
    av_default_item_name,
    mpeg4_options,
    LIBAVUTIL_VERSION_INT,
};

2793 2794
AVCodec ff_mpeg4_vdpau_decoder = {
    .name           = "mpeg4_vdpau",
2795
    .long_name      = NULL_IF_CONFIG_SMALL("MPEG-4 part 2 (VDPAU)"),
2796 2797
    .type           = AVMEDIA_TYPE_VIDEO,
    .id             = AV_CODEC_ID_MPEG4,
2798
    .priv_data_size = sizeof(Mpeg4DecContext),
2799 2800 2801 2802 2803
    .init           = decode_init,
    .close          = ff_h263_decode_end,
    .decode         = ff_h263_decode_frame,
    .capabilities   = CODEC_CAP_DR1 | CODEC_CAP_TRUNCATED | CODEC_CAP_DELAY |
                      CODEC_CAP_HWACCEL_VDPAU,
2804
    .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_VDPAU_MPEG4,
2805 2806 2807 2808
                                                  AV_PIX_FMT_NONE },
    .priv_class     = &mpeg4_vdpau_class,
};
#endif