svq3.c 42.4 KB
Newer Older
M
Michael Niedermayer 已提交
1
/*
2
 * Copyright (c) 2003 The Libav Project
M
Michael Niedermayer 已提交
3
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
M
Michael Niedermayer 已提交
7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
M
Michael Niedermayer 已提交
10
 *
11
 * Libav is distributed in the hope that it will be useful,
M
Michael Niedermayer 已提交
12 13 14 15 16
 * 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
17
 * License along with Libav; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 20 21
 */

/*
M
Michael Niedermayer 已提交
22 23
 * How to use this decoder:
 * SVQ3 data is transported within Apple Quicktime files. Quicktime files
24 25 26 27 28 29
 * have stsd atoms to describe media trak properties. A stsd atom for a
 * video trak contains 1 or more ImageDescription atoms. These atoms begin
 * with the 4-byte length of the atom followed by the codec fourcc. Some
 * decoders need information in this atom to operate correctly. Such
 * is the case with SVQ3. In order to get the best use out of this decoder,
 * the calling app must make the SVQ3 ImageDescription atom available
M
Michael Niedermayer 已提交
30 31
 * via the AVCodecContext's extradata[_size] field:
 *
32
 * AVCodecContext.extradata = pointer to ImageDescription, first characters
33
 * are expected to be 'S', 'V', 'Q', and '3', NOT the 4-byte atom length
34 35
 * AVCodecContext.extradata_size = size of ImageDescription atom memory
 * buffer (which will be the same as the ImageDescription atom size field
36 37 38 39
 * from the QT file, minus 4 bytes since the length is missing)
 *
 * You will know you have these parameters passed correctly when the decoder
 * correctly decodes this file:
40
 *  http://samples.libav.org/V-codecs/SVQ3/Vertical400kbit.sorenson3.mov
M
Michael Niedermayer 已提交
41
 */
42 43 44 45 46 47
#include "internal.h"
#include "dsputil.h"
#include "avcodec.h"
#include "mpegvideo.h"
#include "h264.h"

D
Diego Biurrun 已提交
48
#include "h264data.h" // FIXME FIXME FIXME
49

50
#include "h264_mvpred.h"
51 52 53 54
#include "golomb.h"
#include "rectangle.h"
#include "vdpau_internal.h"

55
#if CONFIG_ZLIB
56 57 58
#include <zlib.h>
#endif

59 60
#include "svq1.h"

M
Michael Niedermayer 已提交
61
/**
62
 * @file
M
Michael Niedermayer 已提交
63 64 65
 * svq3 decoder.
 */

66 67 68 69 70 71 72 73 74
typedef struct {
    H264Context h;
    int halfpel_flag;
    int thirdpel_flag;
    int unknown_flag;
    int next_slice_index;
    uint32_t watermark_key;
} SVQ3Context;

75 76
#define FULLPEL_MODE  1
#define HALFPEL_MODE  2
M
Michael Niedermayer 已提交
77
#define THIRDPEL_MODE 3
78
#define PREDICT_MODE  4
79

M
Michael Niedermayer 已提交
80
/* dual scan (from some older h264 draft)
D
Diego Biurrun 已提交
81 82 83 84 85 86 87 88
 * o-->o-->o   o
 *         |  /|
 * o   o   o / o
 * | / |   |/  |
 * o   o   o   o
 *   /
 * o-->o-->o-->o
 */
89
static const uint8_t svq3_scan[16] = {
D
Diego Biurrun 已提交
90 91 92 93
    0 + 0 * 4, 1 + 0 * 4, 2 + 0 * 4, 2 + 1 * 4,
    2 + 2 * 4, 3 + 0 * 4, 3 + 1 * 4, 3 + 2 * 4,
    0 + 1 * 4, 0 + 2 * 4, 1 + 1 * 4, 1 + 2 * 4,
    0 + 3 * 4, 1 + 3 * 4, 2 + 3 * 4, 3 + 3 * 4,
M
Michael Niedermayer 已提交
94 95 96
};

static const uint8_t svq3_pred_0[25][2] = {
97 98 99 100 101 102 103 104 105
    { 0, 0 },
    { 1, 0 }, { 0, 1 },
    { 0, 2 }, { 1, 1 }, { 2, 0 },
    { 3, 0 }, { 2, 1 }, { 1, 2 }, { 0, 3 },
    { 0, 4 }, { 1, 3 }, { 2, 2 }, { 3, 1 }, { 4, 0 },
    { 4, 1 }, { 3, 2 }, { 2, 3 }, { 1, 4 },
    { 2, 4 }, { 3, 3 }, { 4, 2 },
    { 4, 3 }, { 3, 4 },
    { 4, 4 }
M
Michael Niedermayer 已提交
106 107 108
};

static const int8_t svq3_pred_1[6][6][5] = {
D
Diego Biurrun 已提交
109 110 111 112 113 114 115 116 117 118 119 120
    { { 2, -1, -1, -1, -1 }, { 2, 1, -1, -1, -1 }, { 1, 2, -1, -1, -1 },
      { 2,  1, -1, -1, -1 }, { 1, 2, -1, -1, -1 }, { 1, 2, -1, -1, -1 } },
    { { 0,  2, -1, -1, -1 }, { 0, 2,  1,  4,  3 }, { 0, 1,  2,  4,  3 },
      { 0,  2,  1,  4,  3 }, { 2, 0,  1,  3,  4 }, { 0, 4,  2,  1,  3 } },
    { { 2,  0, -1, -1, -1 }, { 2, 1,  0,  4,  3 }, { 1, 2,  4,  0,  3 },
      { 2,  1,  0,  4,  3 }, { 2, 1,  4,  3,  0 }, { 1, 2,  4,  0,  3 } },
    { { 2,  0, -1, -1, -1 }, { 2, 0,  1,  4,  3 }, { 1, 2,  0,  4,  3 },
      { 2,  1,  0,  4,  3 }, { 2, 1,  3,  4,  0 }, { 2, 4,  1,  0,  3 } },
    { { 0,  2, -1, -1, -1 }, { 0, 2,  1,  3,  4 }, { 1, 2,  3,  0,  4 },
      { 2,  0,  1,  3,  4 }, { 2, 1,  3,  0,  4 }, { 2, 0,  4,  3,  1 } },
    { { 0,  2, -1, -1, -1 }, { 0, 2,  4,  1,  3 }, { 1, 4,  2,  0,  3 },
      { 4,  2,  0,  1,  3 }, { 2, 0,  1,  4,  3 }, { 4, 2,  1,  0,  3 } },
M
Michael Niedermayer 已提交
121 122
};

D
Diego Biurrun 已提交
123 124 125 126
static const struct {
    uint8_t run;
    uint8_t level;
} svq3_dct_tables[2][16] = {
127 128 129 130
    { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 2, 1 }, { 0, 2 }, { 3, 1 }, { 4, 1 }, { 5, 1 },
      { 0, 3 }, { 1, 2 }, { 2, 2 }, { 6, 1 }, { 7, 1 }, { 8, 1 }, { 9, 1 }, { 0, 4 } },
    { { 0, 0 }, { 0, 1 }, { 1, 1 }, { 0, 2 }, { 2, 1 }, { 0, 3 }, { 0, 4 }, { 0, 5 },
      { 3, 1 }, { 4, 1 }, { 1, 2 }, { 1, 3 }, { 0, 6 }, { 0, 7 }, { 0, 8 }, { 0, 9 } }
M
Michael Niedermayer 已提交
131 132 133
};

static const uint32_t svq3_dequant_coeff[32] = {
D
Diego Biurrun 已提交
134 135 136 137
     3881,  4351,  4890,  5481,   6154,   6914,   7761,   8718,
     9781, 10987, 12339, 13828,  15523,  17435,  19561,  21873,
    24552, 27656, 30847, 34870,  38807,  43747,  49103,  54683,
    61694, 68745, 77615, 89113, 100253, 109366, 126635, 141533
M
Michael Niedermayer 已提交
138 139
};

D
Diego Biurrun 已提交
140
void ff_svq3_luma_dc_dequant_idct_c(int16_t *output, int16_t *input, int qp)
D
Diego Biurrun 已提交
141
{
142
    const int qmul = svq3_dequant_coeff[qp];
M
Michael Niedermayer 已提交
143 144 145
#define stride 16
    int i;
    int temp[16];
D
Diego Biurrun 已提交
146 147 148 149 150 151 152 153 154 155 156 157
    static const uint8_t x_offset[4] = { 0, 1 * stride, 4 * stride, 5 * stride };

    for (i = 0; i < 4; i++) {
        const int z0 = 13 * (input[4 * i + 0] +      input[4 * i + 2]);
        const int z1 = 13 * (input[4 * i + 0] -      input[4 * i + 2]);
        const int z2 =  7 *  input[4 * i + 1] - 17 * input[4 * i + 3];
        const int z3 = 17 *  input[4 * i + 1] +  7 * input[4 * i + 3];

        temp[4 * i + 0] = z0 + z3;
        temp[4 * i + 1] = z1 + z2;
        temp[4 * i + 2] = z1 - z2;
        temp[4 * i + 3] = z0 - z3;
M
Michael Niedermayer 已提交
158 159
    }

D
Diego Biurrun 已提交
160 161 162 163 164 165 166
    for (i = 0; i < 4; i++) {
        const int offset = x_offset[i];
        const int z0     = 13 * (temp[4 * 0 + i] +      temp[4 * 2 + i]);
        const int z1     = 13 * (temp[4 * 0 + i] -      temp[4 * 2 + i]);
        const int z2     =  7 *  temp[4 * 1 + i] - 17 * temp[4 * 3 + i];
        const int z3     = 17 *  temp[4 * 1 + i] +  7 * temp[4 * 3 + i];

167 168 169 170
        output[stride *  0 + offset] = (z0 + z3) * qmul + 0x80000 >> 20;
        output[stride *  2 + offset] = (z1 + z2) * qmul + 0x80000 >> 20;
        output[stride *  8 + offset] = (z1 - z2) * qmul + 0x80000 >> 20;
        output[stride * 10 + offset] = (z0 - z3) * qmul + 0x80000 >> 20;
M
Michael Niedermayer 已提交
171 172 173 174
    }
}
#undef stride

D
Diego Biurrun 已提交
175
void ff_svq3_add_idct_c(uint8_t *dst, int16_t *block,
D
Diego Biurrun 已提交
176
                        int stride, int qp, int dc)
177
{
178
    const int qmul = svq3_dequant_coeff[qp];
M
Michael Niedermayer 已提交
179 180 181
    int i;

    if (dc) {
182 183
        dc       = 13 * 13 * (dc == 1 ? 1538 * block[0]
                                      : qmul * (block[0] >> 3) / 2);
M
Michael Niedermayer 已提交
184 185 186
        block[0] = 0;
    }

187
    for (i = 0; i < 4; i++) {
D
Diego Biurrun 已提交
188 189 190 191 192 193 194 195 196
        const int z0 = 13 * (block[0 + 4 * i] +      block[2 + 4 * i]);
        const int z1 = 13 * (block[0 + 4 * i] -      block[2 + 4 * i]);
        const int z2 =  7 *  block[1 + 4 * i] - 17 * block[3 + 4 * i];
        const int z3 = 17 *  block[1 + 4 * i] +  7 * block[3 + 4 * i];

        block[0 + 4 * i] = z0 + z3;
        block[1 + 4 * i] = z1 + z2;
        block[2 + 4 * i] = z1 - z2;
        block[3 + 4 * i] = z0 - z3;
M
Michael Niedermayer 已提交
197 198
    }

199
    for (i = 0; i < 4; i++) {
D
Diego Biurrun 已提交
200 201 202 203
        const int z0 = 13 * (block[i + 4 * 0] +      block[i + 4 * 2]);
        const int z1 = 13 * (block[i + 4 * 0] -      block[i + 4 * 2]);
        const int z2 =  7 *  block[i + 4 * 1] - 17 * block[i + 4 * 3];
        const int z3 = 17 *  block[i + 4 * 1] +  7 * block[i + 4 * 3];
204 205
        const int rr = (dc + 0x80000);

206 207 208 209
        dst[i + stride * 0] = av_clip_uint8(dst[i + stride * 0] + ((z0 + z3) * qmul + rr >> 20));
        dst[i + stride * 1] = av_clip_uint8(dst[i + stride * 1] + ((z1 + z2) * qmul + rr >> 20));
        dst[i + stride * 2] = av_clip_uint8(dst[i + stride * 2] + ((z1 - z2) * qmul + rr >> 20));
        dst[i + stride * 3] = av_clip_uint8(dst[i + stride * 3] + ((z0 - z3) * qmul + rr >> 20));
M
Michael Niedermayer 已提交
210 211 212
    }
}

D
Diego Biurrun 已提交
213
static inline int svq3_decode_block(GetBitContext *gb, int16_t *block,
214 215
                                    int index, const int type)
{
216 217
    static const uint8_t *const scan_patterns[4] =
    { luma_dc_zigzag_scan, zigzag_scan, svq3_scan, chroma_dc_scan };
M
Michael Niedermayer 已提交
218

219 220
    int run, level, limit;
    unsigned vlc;
221
    const int intra           = 3 * type >> 2;
222
    const uint8_t *const scan = scan_patterns[type];
M
Michael Niedermayer 已提交
223

224 225
    for (limit = (16 >> intra); index < 16; index = limit, limit += 8) {
        for (; (vlc = svq3_get_ue_golomb(gb)) != 0; index++) {
226 227
            int sign = (vlc & 1) ? 0 : -1;
            vlc      = vlc + 1 >> 1;
D
Diego Biurrun 已提交
228 229 230 231 232 233 234 235 236

            if (type == 3) {
                if (vlc < 3) {
                    run   = 0;
                    level = vlc;
                } else if (vlc < 4) {
                    run   = 1;
                    level = 1;
                } else {
237 238
                    run   = vlc & 0x3;
                    level = (vlc + 9 >> 2) - run;
D
Diego Biurrun 已提交
239 240 241 242 243 244
                }
            } else {
                if (vlc < 16) {
                    run   = svq3_dct_tables[intra][vlc].run;
                    level = svq3_dct_tables[intra][vlc].level;
                } else if (intra) {
245
                    run   = vlc & 0x7;
D
Diego Biurrun 已提交
246 247 248
                    level = (vlc >> 3) +
                            ((run == 0) ? 8 : ((run < 2) ? 2 : ((run < 5) ? 0 : -1)));
                } else {
249
                    run   = vlc & 0xF;
D
Diego Biurrun 已提交
250 251 252 253
                    level = (vlc >> 4) +
                            ((run == 0) ? 4 : ((run < 3) ? 2 : ((run < 10) ? 1 : 0)));
                }
            }
M
Michael Niedermayer 已提交
254

D
Diego Biurrun 已提交
255 256 257 258
            if ((index += run) >= limit)
                return -1;

            block[scan[index]] = (level ^ sign) - sign;
259
        }
M
Michael Niedermayer 已提交
260

261 262 263
        if (type != 2) {
            break;
        }
M
Michael Niedermayer 已提交
264 265
    }

266
    return 0;
M
Michael Niedermayer 已提交
267 268
}

269 270 271 272 273
static inline void svq3_mc_dir_part(MpegEncContext *s,
                                    int x, int y, int width, int height,
                                    int mx, int my, int dxy,
                                    int thirdpel, int dir, int avg)
{
274 275 276
    const Picture *pic = (dir == 0) ? &s->last_picture : &s->next_picture;
    uint8_t *src, *dest;
    int i, emu = 0;
D
Diego Biurrun 已提交
277
    int blocksize = 2 - (width >> 3); // 16->0, 8->1, 4->2
278 279 280

    mx += x;
    my += y;
M
Michael Niedermayer 已提交
281

282 283
    if (mx < 0 || mx >= s->h_edge_pos - width  - 1 ||
        my < 0 || my >= s->v_edge_pos - height - 1) {
D
Diego Biurrun 已提交
284
        if ((s->flags & CODEC_FLAG_EMU_EDGE))
285
            emu = 1;
M
Michael Niedermayer 已提交
286

287 288
        mx = av_clip(mx, -16, s->h_edge_pos - width  + 15);
        my = av_clip(my, -16, s->v_edge_pos - height + 15);
M
Michael Niedermayer 已提交
289 290
    }

291
    /* form component predictions */
D
Diego Biurrun 已提交
292 293
    dest = s->current_picture.f.data[0] + x + y * s->linesize;
    src  = pic->f.data[0] + mx + my * s->linesize;
294 295

    if (emu) {
R
Ronald S. Bultje 已提交
296 297 298
        s->vdsp.emulated_edge_mc(s->edge_emu_buffer, src, s->linesize,
                                 width + 1, height + 1,
                                 mx, my, s->h_edge_pos, s->v_edge_pos);
M
Mike Melanson 已提交
299
        src = s->edge_emu_buffer;
M
Michael Niedermayer 已提交
300
    }
301
    if (thirdpel)
D
Diego Biurrun 已提交
302 303 304
        (avg ? s->dsp.avg_tpel_pixels_tab
             : s->dsp.put_tpel_pixels_tab)[dxy](dest, src, s->linesize,
                                                width, height);
305
    else
D
Diego Biurrun 已提交
306 307 308
        (avg ? s->dsp.avg_pixels_tab
             : s->dsp.put_pixels_tab)[blocksize][dxy](dest, src, s->linesize,
                                                      height);
309 310

    if (!(s->flags & CODEC_FLAG_GRAY)) {
311 312 313 314
        mx     = mx + (mx < (int) x) >> 1;
        my     = my + (my < (int) y) >> 1;
        width  = width  >> 1;
        height = height >> 1;
315 316 317
        blocksize++;

        for (i = 1; i < 3; i++) {
D
Diego Biurrun 已提交
318 319
            dest = s->current_picture.f.data[i] + (x >> 1) + (y >> 1) * s->uvlinesize;
            src  = pic->f.data[i] + mx + my * s->uvlinesize;
320 321

            if (emu) {
R
Ronald S. Bultje 已提交
322 323 324 325
                s->vdsp.emulated_edge_mc(s->edge_emu_buffer, src, s->uvlinesize,
                                         width + 1, height + 1,
                                         mx, my, (s->h_edge_pos >> 1),
                                         s->v_edge_pos >> 1);
326 327 328
                src = s->edge_emu_buffer;
            }
            if (thirdpel)
D
Diego Biurrun 已提交
329 330 331 332
                (avg ? s->dsp.avg_tpel_pixels_tab
                     : s->dsp.put_tpel_pixels_tab)[dxy](dest, src,
                                                        s->uvlinesize,
                                                        width, height);
333
            else
D
Diego Biurrun 已提交
334 335 336 337
                (avg ? s->dsp.avg_pixels_tab
                     : s->dsp.put_pixels_tab)[blocksize][dxy](dest, src,
                                                              s->uvlinesize,
                                                              height);
338 339
        }
    }
M
Michael Niedermayer 已提交
340 341
}

D
Diego Biurrun 已提交
342 343
static inline int svq3_mc_dir(H264Context *h, int size, int mode,
                              int dir, int avg)
344
{
345
    int i, j, k, mx, my, dx, dy, x, y;
D
Diego Biurrun 已提交
346 347 348 349 350 351 352 353
    MpegEncContext *const s = (MpegEncContext *)h;
    const int part_width    = ((size & 5) == 4) ? 4 : 16 >> (size & 1);
    const int part_height   = 16 >> ((unsigned)(size + 1) / 3);
    const int extra_width   = (mode == PREDICT_MODE) ? -16 * 6 : 0;
    const int h_edge_pos    = 6 * (s->h_edge_pos - part_width)  - extra_width;
    const int v_edge_pos    = 6 * (s->v_edge_pos - part_height) - extra_width;

    for (i = 0; i < 16; i += part_height)
354
        for (j = 0; j < 16; j += part_width) {
D
Diego Biurrun 已提交
355 356
            const int b_xy = (4 * s->mb_x + (j >> 2)) +
                             (4 * s->mb_y + (i >> 2)) * h->b_stride;
357
            int dxy;
D
Diego Biurrun 已提交
358 359
            x = 16 * s->mb_x + j;
            y = 16 * s->mb_y + i;
360 361
            k = (j >> 2 & 1) + (i >> 1 & 2) +
                (j >> 1 & 4) + (i      & 8);
362 363

            if (mode != PREDICT_MODE) {
364
                pred_motion(h, k, part_width >> 2, dir, 1, &mx, &my);
365
            } else {
D
Diego Biurrun 已提交
366 367
                mx = s->next_picture.f.motion_val[0][b_xy][0] << 1;
                my = s->next_picture.f.motion_val[0][b_xy][1] << 1;
368 369

                if (dir == 0) {
370 371 372 373
                    mx = mx * h->frame_num_offset /
                         h->prev_frame_num_offset + 1 >> 1;
                    my = my * h->frame_num_offset /
                         h->prev_frame_num_offset + 1 >> 1;
374
                } else {
375 376 377 378
                    mx = mx * (h->frame_num_offset - h->prev_frame_num_offset) /
                         h->prev_frame_num_offset + 1 >> 1;
                    my = my * (h->frame_num_offset - h->prev_frame_num_offset) /
                         h->prev_frame_num_offset + 1 >> 1;
379 380 381 382
                }
            }

            /* clip motion vector prediction to frame border */
D
Diego Biurrun 已提交
383 384
            mx = av_clip(mx, extra_width - 6 * x, h_edge_pos - 6 * x);
            my = av_clip(my, extra_width - 6 * y, v_edge_pos - 6 * y);
385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401

            /* get (optional) motion vector differential */
            if (mode == PREDICT_MODE) {
                dx = dy = 0;
            } else {
                dy = svq3_get_se_golomb(&s->gb);
                dx = svq3_get_se_golomb(&s->gb);

                if (dx == INVALID_VLC || dy == INVALID_VLC) {
                    av_log(h->s.avctx, AV_LOG_ERROR, "invalid MV vlc\n");
                    return -1;
                }
            }

            /* compute motion vector */
            if (mode == THIRDPEL_MODE) {
                int fx, fy;
402 403 404 405
                mx  = (mx + 1 >> 1) + dx;
                my  = (my + 1 >> 1) + dy;
                fx  = (unsigned)(mx + 0x3000) / 3 - 0x1000;
                fy  = (unsigned)(my + 0x3000) / 3 - 0x1000;
D
Diego Biurrun 已提交
406 407 408 409
                dxy = (mx - 3 * fx) + 4 * (my - 3 * fy);

                svq3_mc_dir_part(s, x, y, part_width, part_height,
                                 fx, fy, dxy, 1, dir, avg);
410 411 412
                mx += mx;
                my += my;
            } else if (mode == HALFPEL_MODE || mode == PREDICT_MODE) {
413 414
                mx  = (unsigned)(mx + 1 + 0x3000) / 3 + dx - 0x1000;
                my  = (unsigned)(my + 1 + 0x3000) / 3 + dy - 0x1000;
D
Diego Biurrun 已提交
415
                dxy = (mx & 1) + 2 * (my & 1);
416

D
Diego Biurrun 已提交
417 418
                svq3_mc_dir_part(s, x, y, part_width, part_height,
                                 mx >> 1, my >> 1, dxy, 0, dir, avg);
419 420 421
                mx *= 3;
                my *= 3;
            } else {
422 423
                mx = (unsigned)(mx + 3 + 0x6000) / 6 + dx - 0x1000;
                my = (unsigned)(my + 3 + 0x6000) / 6 + dy - 0x1000;
424

D
Diego Biurrun 已提交
425 426
                svq3_mc_dir_part(s, x, y, part_width, part_height,
                                 mx, my, 0, 0, dir, avg);
427 428 429 430 431 432
                mx *= 6;
                my *= 6;
            }

            /* update mv_cache */
            if (mode != PREDICT_MODE) {
D
Diego Biurrun 已提交
433
                int32_t mv = pack16to32(mx, my);
434 435

                if (part_height == 8 && i < 8) {
D
Diego Biurrun 已提交
436
                    AV_WN32A(h->mv_cache[dir][scan8[k] + 1 * 8], mv);
437

D
Diego Biurrun 已提交
438 439
                    if (part_width == 8 && j < 8)
                        AV_WN32A(h->mv_cache[dir][scan8[k] + 1 + 1 * 8], mv);
440
                }
D
Diego Biurrun 已提交
441
                if (part_width == 8 && j < 8)
442
                    AV_WN32A(h->mv_cache[dir][scan8[k] + 1], mv);
D
Diego Biurrun 已提交
443
                if (part_width == 4 || part_height == 4)
444
                    AV_WN32A(h->mv_cache[dir][scan8[k]], mv);
445 446 447
            }

            /* write back motion vectors */
D
Diego Biurrun 已提交
448 449 450
            fill_rectangle(s->current_picture.f.motion_val[dir][b_xy],
                           part_width >> 2, part_height >> 2, h->b_stride,
                           pack16to32(mx, my), 4);
451
        }
452

453
    return 0;
454 455
}

456
static int svq3_decode_mb(SVQ3Context *svq3, unsigned int mb_type)
457
{
458
    H264Context *h = &svq3->h;
459 460 461 462
    int i, j, k, m, dir, mode;
    int cbp = 0;
    uint32_t vlc;
    int8_t *top, *left;
D
Diego Biurrun 已提交
463 464 465
    MpegEncContext *const s = (MpegEncContext *)h;
    const int mb_xy         = h->mb_xy;
    const int b_xy          = 4 * s->mb_x + 4 * s->mb_y * h->b_stride;
466 467 468 469 470 471

    h->top_samples_available      = (s->mb_y == 0) ? 0x33FF : 0xFFFF;
    h->left_samples_available     = (s->mb_x == 0) ? 0x5F5F : 0xFFFF;
    h->topright_samples_available = 0xFFFF;

    if (mb_type == 0) {           /* SKIP */
D
Diego Biurrun 已提交
472 473 474 475
        if (s->pict_type == AV_PICTURE_TYPE_P ||
            s->next_picture.f.mb_type[mb_xy] == -1) {
            svq3_mc_dir_part(s, 16 * s->mb_x, 16 * s->mb_y, 16, 16,
                             0, 0, 0, 0, 0, 0);
476

D
Diego Biurrun 已提交
477 478 479
            if (s->pict_type == AV_PICTURE_TYPE_B)
                svq3_mc_dir_part(s, 16 * s->mb_x, 16 * s->mb_y, 16, 16,
                                 0, 0, 0, 0, 1, 1);
480 481 482

            mb_type = MB_TYPE_SKIP;
        } else {
D
Diego Biurrun 已提交
483
            mb_type = FFMIN(s->next_picture.f.mb_type[mb_xy], 6);
484 485 486 487
            if (svq3_mc_dir(h, mb_type, PREDICT_MODE, 0, 0) < 0)
                return -1;
            if (svq3_mc_dir(h, mb_type, PREDICT_MODE, 1, 1) < 0)
                return -1;
M
Michael Niedermayer 已提交
488

489
            mb_type = MB_TYPE_16x16;
490
        }
491
    } else if (mb_type < 8) {     /* INTER */
D
Diego Biurrun 已提交
492
        if (svq3->thirdpel_flag && svq3->halfpel_flag == !get_bits1(&s->gb))
493
            mode = THIRDPEL_MODE;
D
Diego Biurrun 已提交
494 495
        else if (svq3->halfpel_flag &&
                 svq3->thirdpel_flag == !get_bits1(&s->gb))
496
            mode = HALFPEL_MODE;
D
Diego Biurrun 已提交
497
        else
498
            mode = FULLPEL_MODE;
M
Michael Niedermayer 已提交
499

500 501
        /* fill caches */
        /* note ref_cache should contain here:
D
Diego Biurrun 已提交
502 503 504 505 506 507
         *  ????????
         *  ???11111
         *  N??11111
         *  N??11111
         *  N??11111
         */
508 509

        for (m = 0; m < 2; m++) {
D
Diego Biurrun 已提交
510 511 512 513
            if (s->mb_x > 0 && h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - 1] + 6] != -1) {
                for (i = 0; i < 4; i++)
                    AV_COPY32(h->mv_cache[m][scan8[0] - 1 + i * 8],
                              s->current_picture.f.motion_val[m][b_xy - 1 + i * h->b_stride]);
514
            } else {
D
Diego Biurrun 已提交
515 516
                for (i = 0; i < 4; i++)
                    AV_ZERO32(h->mv_cache[m][scan8[0] - 1 + i * 8]);
517 518
            }
            if (s->mb_y > 0) {
D
Diego Biurrun 已提交
519 520 521 522 523
                memcpy(h->mv_cache[m][scan8[0] - 1 * 8],
                       s->current_picture.f.motion_val[m][b_xy - h->b_stride],
                       4 * 2 * sizeof(int16_t));
                memset(&h->ref_cache[m][scan8[0] - 1 * 8],
                       (h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]] == -1) ? PART_NOT_AVAILABLE : 1, 4);
524

525
                if (s->mb_x < s->mb_width - 1) {
D
Diego Biurrun 已提交
526 527 528 529 530 531 532
                    AV_COPY32(h->mv_cache[m][scan8[0] + 4 - 1 * 8],
                              s->current_picture.f.motion_val[m][b_xy - h->b_stride + 4]);
                    h->ref_cache[m][scan8[0] + 4 - 1 * 8] =
                        (h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride + 1] + 6] == -1 ||
                         h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride]] == -1) ? PART_NOT_AVAILABLE : 1;
                } else
                    h->ref_cache[m][scan8[0] + 4 - 1 * 8] = PART_NOT_AVAILABLE;
533
                if (s->mb_x > 0) {
D
Diego Biurrun 已提交
534 535 536 537 538 539 540 541 542
                    AV_COPY32(h->mv_cache[m][scan8[0] - 1 - 1 * 8],
                              s->current_picture.f.motion_val[m][b_xy - h->b_stride - 1]);
                    h->ref_cache[m][scan8[0] - 1 - 1 * 8] =
                        (h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride - 1] + 3] == -1) ? PART_NOT_AVAILABLE : 1;
                } else
                    h->ref_cache[m][scan8[0] - 1 - 1 * 8] = PART_NOT_AVAILABLE;
            } else
                memset(&h->ref_cache[m][scan8[0] - 1 * 8 - 1],
                       PART_NOT_AVAILABLE, 8);
543

544
            if (s->pict_type != AV_PICTURE_TYPE_B)
545
                break;
546
        }
M
Michael Niedermayer 已提交
547

548
        /* decode motion vector(s) and form prediction(s) */
549
        if (s->pict_type == AV_PICTURE_TYPE_P) {
550
            if (svq3_mc_dir(h, mb_type - 1, mode, 0, 0) < 0)
551
                return -1;
552
        } else {        /* AV_PICTURE_TYPE_B */
D
Diego Biurrun 已提交
553
            if (mb_type != 2)
554 555
                if (svq3_mc_dir(h, 0, mode, 0, 0) < 0)
                    return -1;
D
Diego Biurrun 已提交
556 557 558 559 560
            else
                for (i = 0; i < 4; i++)
                    memset(s->current_picture.f.motion_val[0][b_xy + i * h->b_stride],
                           0, 4 * 2 * sizeof(int16_t));
            if (mb_type != 1)
561
                if (svq3_mc_dir(h, 0, mode, 1, mb_type == 3) < 0)
562
                    return -1;
D
Diego Biurrun 已提交
563 564 565 566
            else
                for (i = 0; i < 4; i++)
                    memset(s->current_picture.f.motion_val[1][b_xy + i * h->b_stride],
                           0, 4 * 2 * sizeof(int16_t));
567
        }
M
Michael Niedermayer 已提交
568

569 570
        mb_type = MB_TYPE_16x16;
    } else if (mb_type == 8 || mb_type == 33) {   /* INTRA4x4 */
D
Diego Biurrun 已提交
571
        memset(h->intra4x4_pred_mode_cache, -1, 8 * 5 * sizeof(int8_t));
572 573 574

        if (mb_type == 8) {
            if (s->mb_x > 0) {
D
Diego Biurrun 已提交
575 576 577
                for (i = 0; i < 4; i++)
                    h->intra4x4_pred_mode_cache[scan8[0] - 1 + i * 8] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - 1] + 6 - i];
                if (h->intra4x4_pred_mode_cache[scan8[0] - 1] == -1)
578 579 580
                    h->left_samples_available = 0x5F5F;
            }
            if (s->mb_y > 0) {
D
Diego Biurrun 已提交
581 582 583 584
                h->intra4x4_pred_mode_cache[4 + 8 * 0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride] + 0];
                h->intra4x4_pred_mode_cache[5 + 8 * 0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride] + 1];
                h->intra4x4_pred_mode_cache[6 + 8 * 0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride] + 2];
                h->intra4x4_pred_mode_cache[7 + 8 * 0] = h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride] + 3];
585

D
Diego Biurrun 已提交
586
                if (h->intra4x4_pred_mode_cache[4 + 8 * 0] == -1)
587 588 589 590
                    h->top_samples_available = 0x33FF;
            }

            /* decode prediction codes for luma blocks */
D
Diego Biurrun 已提交
591
            for (i = 0; i < 16; i += 2) {
592 593
                vlc = svq3_get_ue_golomb(&s->gb);

D
Diego Biurrun 已提交
594
                if (vlc >= 25) {
595 596 597 598
                    av_log(h->s.avctx, AV_LOG_ERROR, "luma prediction:%d\n", vlc);
                    return -1;
                }

D
Diego Biurrun 已提交
599 600
                left = &h->intra4x4_pred_mode_cache[scan8[i] - 1];
                top  = &h->intra4x4_pred_mode_cache[scan8[i] - 8];
601 602 603 604

                left[1] = svq3_pred_1[top[0] + 1][left[0] + 1][svq3_pred_0[vlc][0]];
                left[2] = svq3_pred_1[top[1] + 1][left[1] + 1][svq3_pred_0[vlc][1]];

D
Diego Biurrun 已提交
605
                if (left[1] == -1 || left[2] == -1) {
606 607 608 609 610
                    av_log(h->s.avctx, AV_LOG_ERROR, "weird prediction\n");
                    return -1;
                }
            }
        } else {    /* mb_type == 33, DC_128_PRED block type */
D
Diego Biurrun 已提交
611 612
            for (i = 0; i < 4; i++)
                memset(&h->intra4x4_pred_mode_cache[scan8[0] + 8 * i], DC_PRED, 4);
613
        }
M
Michael Niedermayer 已提交
614

615
        write_back_intra_pred_mode(h);
M
Michael Niedermayer 已提交
616

617
        if (mb_type == 8) {
618
            ff_h264_check_intra4x4_pred_mode(h);
619

620 621 622
            h->top_samples_available  = (s->mb_y == 0) ? 0x33FF : 0xFFFF;
            h->left_samples_available = (s->mb_x == 0) ? 0x5F5F : 0xFFFF;
        } else {
D
Diego Biurrun 已提交
623 624
            for (i = 0; i < 4; i++)
                memset(&h->intra4x4_pred_mode_cache[scan8[0] + 8 * i], DC_128_PRED, 4);
625

626 627 628
            h->top_samples_available  = 0x33FF;
            h->left_samples_available = 0x5F5F;
        }
629

630 631 632
        mb_type = MB_TYPE_INTRA4x4;
    } else {                      /* INTRA16x16 */
        dir = i_mb_type_info[mb_type - 8].pred_mode;
D
Diego Biurrun 已提交
633
        dir = (dir >> 1) ^ 3 * (dir & 1) ^ 1;
M
Michael Niedermayer 已提交
634

D
Diego Biurrun 已提交
635
        if ((h->intra16x16_pred_mode = ff_h264_check_intra_pred_mode(h, dir, 0)) == -1) {
636 637 638
            av_log(h->s.avctx, AV_LOG_ERROR, "check_intra_pred_mode = -1\n");
            return -1;
        }
M
Michael Niedermayer 已提交
639

D
Diego Biurrun 已提交
640
        cbp     = i_mb_type_info[mb_type - 8].cbp;
641
        mb_type = MB_TYPE_INTRA16x16;
642
    }
M
Michael Niedermayer 已提交
643

644
    if (!IS_INTER(mb_type) && s->pict_type != AV_PICTURE_TYPE_I) {
D
Diego Biurrun 已提交
645 646 647
        for (i = 0; i < 4; i++)
            memset(s->current_picture.f.motion_val[0][b_xy + i * h->b_stride],
                   0, 4 * 2 * sizeof(int16_t));
648
        if (s->pict_type == AV_PICTURE_TYPE_B) {
D
Diego Biurrun 已提交
649 650 651
            for (i = 0; i < 4; i++)
                memset(s->current_picture.f.motion_val[1][b_xy + i * h->b_stride],
                       0, 4 * 2 * sizeof(int16_t));
652
        }
M
Michael Niedermayer 已提交
653
    }
654
    if (!IS_INTRA4x4(mb_type)) {
D
Diego Biurrun 已提交
655
        memset(h->intra4x4_pred_mode + h->mb2br_xy[mb_xy], DC_PRED, 8);
656
    }
657
    if (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B) {
D
Diego Biurrun 已提交
658 659 660
        memset(h->non_zero_count_cache + 8, 0, 14 * 8 * sizeof(uint8_t));
        s->dsp.clear_blocks(h->mb +   0);
        s->dsp.clear_blocks(h->mb + 384);
661
    }
662

D
Diego Biurrun 已提交
663 664 665
    if (!IS_INTRA16x16(mb_type) &&
        (!IS_SKIP(mb_type) || s->pict_type == AV_PICTURE_TYPE_B)) {
        if ((vlc = svq3_get_ue_golomb(&s->gb)) >= 48) {
666 667 668
            av_log(h->s.avctx, AV_LOG_ERROR, "cbp_vlc=%d\n", vlc);
            return -1;
        }
M
Michael Niedermayer 已提交
669

D
Diego Biurrun 已提交
670 671
        cbp = IS_INTRA(mb_type) ? golomb_to_intra4x4_cbp[vlc]
                                : golomb_to_inter_cbp[vlc];
672
    }
D
Diego Biurrun 已提交
673 674
    if (IS_INTRA16x16(mb_type) ||
        (s->pict_type != AV_PICTURE_TYPE_I && s->adaptive_quant && cbp)) {
675
        s->qscale += svq3_get_se_golomb(&s->gb);
M
Michael Niedermayer 已提交
676

D
Diego Biurrun 已提交
677
        if (s->qscale > 31u) {
678
            av_log(h->s.avctx, AV_LOG_ERROR, "qscale:%d\n", s->qscale);
679 680
            return -1;
        }
M
Michael Niedermayer 已提交
681
    }
682
    if (IS_INTRA16x16(mb_type)) {
D
Diego Biurrun 已提交
683 684 685 686 687
        AV_ZERO128(h->mb_luma_dc[0] + 0);
        AV_ZERO128(h->mb_luma_dc[0] + 8);
        if (svq3_decode_block(&s->gb, h->mb_luma_dc[0], 0, 1)) {
            av_log(h->s.avctx, AV_LOG_ERROR,
                   "error while decoding intra luma dc\n");
688
            return -1;
689
        }
690
    }
M
Michael Niedermayer 已提交
691

692 693
    if (cbp) {
        const int index = IS_INTRA16x16(mb_type) ? 1 : 0;
D
Diego Biurrun 已提交
694
        const int type  = ((s->qscale < 24 && IS_INTRA4x4(mb_type)) ? 2 : 1);
695

D
Diego Biurrun 已提交
696
        for (i = 0; i < 4; i++)
697 698
            if ((cbp & (1 << i))) {
                for (j = 0; j < 4; j++) {
D
Diego Biurrun 已提交
699 700 701 702 703 704 705 706
                    k = index ? (1 * (j & 1) + 2 * (i & 1) +
                                 2 * (j & 2) + 4 * (i & 2))
                              : (4 * i + j);
                    h->non_zero_count_cache[scan8[k]] = 1;

                    if (svq3_decode_block(&s->gb, &h->mb[16 * k], index, type)) {
                        av_log(h->s.avctx, AV_LOG_ERROR,
                               "error while decoding block\n");
707 708 709 710
                        return -1;
                    }
                }
            }
M
Michael Niedermayer 已提交
711

712
        if ((cbp & 0x30)) {
D
Diego Biurrun 已提交
713 714 715 716 717 718
            for (i = 1; i < 3; ++i)
                if (svq3_decode_block(&s->gb, &h->mb[16 * 16 * i], 0, 3)) {
                    av_log(h->s.avctx, AV_LOG_ERROR,
                           "error while decoding chroma dc block\n");
                    return -1;
                }
719 720

            if ((cbp & 0x20)) {
721 722
                for (i = 1; i < 3; i++) {
                    for (j = 0; j < 4; j++) {
D
Diego Biurrun 已提交
723 724
                        k                                 = 16 * i + j;
                        h->non_zero_count_cache[scan8[k]] = 1;
725

D
Diego Biurrun 已提交
726 727 728
                        if (svq3_decode_block(&s->gb, &h->mb[16 * k], 1, 1)) {
                            av_log(h->s.avctx, AV_LOG_ERROR,
                                   "error while decoding chroma ac block\n");
729 730
                            return -1;
                        }
731 732 733
                    }
                }
            }
734
        }
M
Michael Niedermayer 已提交
735 736
    }

D
Diego Biurrun 已提交
737
    h->cbp                              = cbp;
D
Diego Biurrun 已提交
738
    s->current_picture.f.mb_type[mb_xy] = mb_type;
M
Michael Niedermayer 已提交
739

D
Diego Biurrun 已提交
740
    if (IS_INTRA(mb_type))
741
        h->chroma_pred_mode = ff_h264_check_intra_pred_mode(h, DC_PRED8x8, 1);
M
Michael Niedermayer 已提交
742

743
    return 0;
M
Michael Niedermayer 已提交
744 745
}

746
static int svq3_decode_slice_header(AVCodecContext *avctx)
747
{
748
    SVQ3Context *svq3 = avctx->priv_data;
D
Diego Biurrun 已提交
749
    H264Context *h    = &svq3->h;
750
    MpegEncContext *s = &h->s;
D
Diego Biurrun 已提交
751
    const int mb_xy   = h->mb_xy;
752
    int i, header;
753
    unsigned slice_id;
754

755
    header = get_bits(&s->gb, 8);
756

757 758
    if (((header & 0x9F) != 1 && (header & 0x9F) != 2) || (header & 0x60) == 0) {
        /* TODO: what? */
759
        av_log(avctx, AV_LOG_ERROR, "unsupported slice header (%02X)\n", header);
760 761
        return -1;
    } else {
762
        int length = header >> 5 & 3;
763

D
Diego Biurrun 已提交
764 765 766
        svq3->next_slice_index = get_bits_count(&s->gb) +
                                 8 * show_bits(&s->gb, 8 * length) +
                                 8 * length;
767

768 769
        if (svq3->next_slice_index > s->gb.size_in_bits) {
            av_log(avctx, AV_LOG_ERROR, "slice after bitstream end\n");
770
            return -1;
D
Diego Biurrun 已提交
771
        }
772

D
Diego Biurrun 已提交
773
        s->gb.size_in_bits = svq3->next_slice_index - 8 * (length - 1);
774
        skip_bits(&s->gb, 8);
775

776
        if (svq3->watermark_key) {
D
Diego Biurrun 已提交
777 778 779
            uint32_t header = AV_RL32(&s->gb.buffer[(get_bits_count(&s->gb) >> 3) + 1]);
            AV_WL32(&s->gb.buffer[(get_bits_count(&s->gb) >> 3) + 1],
                    header ^ svq3->watermark_key);
780 781 782
        }
        if (length > 0) {
            memcpy((uint8_t *) &s->gb.buffer[get_bits_count(&s->gb) >> 3],
783
                   &s->gb.buffer[s->gb.size_in_bits >> 3], length - 1);
784
        }
785
        skip_bits_long(&s->gb, 0);
786 787
    }

788 789
    if ((slice_id = svq3_get_ue_golomb(&s->gb)) >= 3) {
        av_log(h->s.avctx, AV_LOG_ERROR, "illegal slice type %d \n", slice_id);
790 791
        return -1;
    }
792

793
    h->slice_type = golomb_to_pict_type[slice_id];
794

795
    if ((header & 0x9F) == 2) {
D
Diego Biurrun 已提交
796 797
        i              = (s->mb_num < 64) ? 6 : (1 + av_log2(s->mb_num - 1));
        s->mb_skip_run = get_bits(&s->gb, i) -
798
                         (s->mb_y * s->mb_width + s->mb_x);
799 800 801 802
    } else {
        skip_bits1(&s->gb);
        s->mb_skip_run = 0;
    }
803

D
Diego Biurrun 已提交
804 805
    h->slice_num      = get_bits(&s->gb, 8);
    s->qscale         = get_bits(&s->gb, 5);
806
    s->adaptive_quant = get_bits1(&s->gb);
807

808 809
    /* unknown fields */
    skip_bits1(&s->gb);
810

D
Diego Biurrun 已提交
811
    if (svq3->unknown_flag)
812
        skip_bits1(&s->gb);
813

814 815
    skip_bits1(&s->gb);
    skip_bits(&s->gb, 2);
816

D
Diego Biurrun 已提交
817
    while (get_bits1(&s->gb))
818
        skip_bits(&s->gb, 8);
819

820
    /* reset intra predictors and invalidate motion vector references */
821
    if (s->mb_x > 0) {
D
Diego Biurrun 已提交
822 823 824 825
        memset(h->intra4x4_pred_mode + h->mb2br_xy[mb_xy - 1] + 3,
               -1, 4 * sizeof(int8_t));
        memset(h->intra4x4_pred_mode + h->mb2br_xy[mb_xy - s->mb_x],
               -1, 8 * sizeof(int8_t) * s->mb_x);
826 827
    }
    if (s->mb_y > 0) {
D
Diego Biurrun 已提交
828 829
        memset(h->intra4x4_pred_mode + h->mb2br_xy[mb_xy - s->mb_stride],
               -1, 8 * sizeof(int8_t) * (s->mb_width - s->mb_x));
830

D
Diego Biurrun 已提交
831 832
        if (s->mb_x > 0)
            h->intra4x4_pred_mode[h->mb2br_xy[mb_xy - s->mb_stride - 1] + 3] = -1;
833 834
    }

835
    return 0;
836 837
}

838
static av_cold int svq3_decode_init(AVCodecContext *avctx)
839
{
840
    SVQ3Context *svq3 = avctx->priv_data;
D
Diego Biurrun 已提交
841
    H264Context *h    = &svq3->h;
842
    MpegEncContext *s = &h->s;
843
    int m;
844
    unsigned char *extradata;
845
    unsigned char *extradata_end;
846
    unsigned int size;
847
    int marker_found = 0;
848

849
    if (ff_h264_decode_init(avctx) < 0)
850 851
        return -1;

D
Diego Biurrun 已提交
852 853
    s->flags           = avctx->flags;
    s->flags2          = avctx->flags2;
854
    s->unrestricted_mv = 1;
D
Diego Biurrun 已提交
855 856
    h->is_complex      = 1;
    avctx->pix_fmt     = avctx->codec->pix_fmts[0];
857 858

    if (!s->context_initialized) {
859 860 861 862 863
        h->chroma_qp[0] = h->chroma_qp[1] = 4;

        svq3->halfpel_flag  = 1;
        svq3->thirdpel_flag = 1;
        svq3->unknown_flag  = 0;
864 865

        /* prowl for the "SEQH" marker in the extradata */
D
Diego Biurrun 已提交
866
        extradata     = (unsigned char *)avctx->extradata;
867 868 869 870 871 872 873 874 875
        extradata_end = avctx->extradata + avctx->extradata_size;
        if (extradata) {
            for (m = 0; m + 8 < avctx->extradata_size; m++) {
                if (!memcmp(extradata, "SEQH", 4)) {
                    marker_found = 1;
                    break;
                }
                extradata++;
            }
876
        }
M
Michael Niedermayer 已提交
877

878
        /* if a match was found, parse the extra data */
879
        if (marker_found) {
880
            GetBitContext gb;
881
            int frame_size_code;
M
Michael Niedermayer 已提交
882

883
            size = AV_RB32(&extradata[4]);
884 885
            if (size > extradata_end - extradata - 8)
                return AVERROR_INVALIDDATA;
D
Diego Biurrun 已提交
886
            init_get_bits(&gb, extradata + 8, size * 8);
M
Michael Niedermayer 已提交
887

888
            /* 'frame size code' and optional 'width, height' */
889 890
            frame_size_code = get_bits(&gb, 3);
            switch (frame_size_code) {
D
Diego Biurrun 已提交
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
            case 0:
                avctx->width  = 160;
                avctx->height = 120;
                break;
            case 1:
                avctx->width  = 128;
                avctx->height =  96;
                break;
            case 2:
                avctx->width  = 176;
                avctx->height = 144;
                break;
            case 3:
                avctx->width  = 352;
                avctx->height = 288;
                break;
            case 4:
                avctx->width  = 704;
                avctx->height = 576;
                break;
            case 5:
                avctx->width  = 240;
                avctx->height = 180;
                break;
            case 6:
                avctx->width  = 320;
                avctx->height = 240;
                break;
            case 7:
                avctx->width  = get_bits(&gb, 12);
                avctx->height = get_bits(&gb, 12);
                break;
923
            }
M
Michael Niedermayer 已提交
924

925 926
            svq3->halfpel_flag  = get_bits1(&gb);
            svq3->thirdpel_flag = get_bits1(&gb);
M
Michael Niedermayer 已提交
927

928 929 930 931 932
            /* unknown fields */
            skip_bits1(&gb);
            skip_bits1(&gb);
            skip_bits1(&gb);
            skip_bits1(&gb);
M
Michael Niedermayer 已提交
933

934
            s->low_delay = get_bits1(&gb);
935

936 937 938
            /* unknown field */
            skip_bits1(&gb);

D
Diego Biurrun 已提交
939
            while (get_bits1(&gb))
940 941
                skip_bits(&gb, 8);

D
Diego Biurrun 已提交
942
            svq3->unknown_flag  = get_bits1(&gb);
943
            avctx->has_b_frames = !s->low_delay;
944
            if (svq3->unknown_flag) {
945
#if CONFIG_ZLIB
946 947
                unsigned watermark_width  = svq3_get_ue_golomb(&gb);
                unsigned watermark_height = svq3_get_ue_golomb(&gb);
D
Diego Biurrun 已提交
948 949 950 951 952 953
                int u1                    = svq3_get_ue_golomb(&gb);
                int u2                    = get_bits(&gb, 8);
                int u3                    = get_bits(&gb, 2);
                int u4                    = svq3_get_ue_golomb(&gb);
                unsigned long buf_len     = watermark_width *
                                            watermark_height * 4;
954
                int offset                = get_bits_count(&gb) + 7 >> 3;
955 956
                uint8_t *buf;

D
Diego Biurrun 已提交
957
                if ((uint64_t)watermark_width * 4 > UINT_MAX / watermark_height)
958 959 960
                    return -1;

                buf = av_malloc(buf_len);
D
Diego Biurrun 已提交
961 962 963 964 965 966 967 968 969
                av_log(avctx, AV_LOG_DEBUG, "watermark size: %dx%d\n",
                       watermark_width, watermark_height);
                av_log(avctx, AV_LOG_DEBUG,
                       "u1: %x u2: %x u3: %x compressed data size: %d offset: %d\n",
                       u1, u2, u3, u4, offset);
                if (uncompress(buf, &buf_len, extradata + 8 + offset,
                               size - offset) != Z_OK) {
                    av_log(avctx, AV_LOG_ERROR,
                           "could not uncompress watermark logo\n");
970 971 972
                    av_free(buf);
                    return -1;
                }
973
                svq3->watermark_key = ff_svq1_packet_checksum(buf, buf_len, 0);
D
Diego Biurrun 已提交
974 975 976 977
                svq3->watermark_key = svq3->watermark_key << 16 |
                                      svq3->watermark_key;
                av_log(avctx, AV_LOG_DEBUG,
                       "watermark key %#x\n", svq3->watermark_key);
978
                av_free(buf);
979
#else
D
Diego Biurrun 已提交
980 981
                av_log(avctx, AV_LOG_ERROR,
                       "this svq3 file contains watermark which need zlib support compiled in\n");
982
                return -1;
983
#endif
984 985
            }
        }
986 987 988 989

        s->width  = avctx->width;
        s->height = avctx->height;

990
        if (ff_MPV_common_init(s) < 0)
991 992
            return -1;

D
Diego Biurrun 已提交
993
        h->b_stride = 4 * s->mb_width;
994

995 996 997 998
        if (ff_h264_alloc_tables(h) < 0) {
            av_log(avctx, AV_LOG_ERROR, "svq3 memory allocation failed\n");
            return AVERROR(ENOMEM);
        }
999
    }
1000

1001 1002 1003
    return 0;
}

D
Diego Biurrun 已提交
1004
static int svq3_decode_frame(AVCodecContext *avctx, void *data,
1005
                             int *got_frame, AVPacket *avpkt)
1006
{
1007
    const uint8_t *buf = avpkt->data;
D
Diego Biurrun 已提交
1008 1009 1010 1011
    SVQ3Context *svq3  = avctx->priv_data;
    H264Context *h     = &svq3->h;
    MpegEncContext *s  = &h->s;
    int buf_size       = avpkt->size;
1012
    int m;
1013

1014 1015 1016
    /* special case for last picture */
    if (buf_size == 0) {
        if (s->next_picture_ptr && !s->low_delay) {
1017
            *(AVFrame *) data   = s->next_picture.f;
1018
            s->next_picture_ptr = NULL;
1019
            *got_frame          = 1;
1020 1021
        }
        return 0;
1022
    }
M
Michael Niedermayer 已提交
1023

D
Diego Biurrun 已提交
1024
    init_get_bits(&s->gb, buf, 8 * buf_size);
M
Michael Niedermayer 已提交
1025

1026
    s->mb_x = s->mb_y = h->mb_xy = 0;
M
Michael Niedermayer 已提交
1027

1028
    if (svq3_decode_slice_header(avctx))
1029
        return -1;
M
Michael Niedermayer 已提交
1030

D
Diego Biurrun 已提交
1031
    s->pict_type      = h->slice_type;
1032
    s->picture_number = h->slice_num;
M
Michael Niedermayer 已提交
1033

D
Diego Biurrun 已提交
1034 1035 1036 1037 1038
    if (avctx->debug & FF_DEBUG_PICT_INFO)
        av_log(h->s.avctx, AV_LOG_DEBUG,
               "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n",
               av_get_picture_type_char(s->pict_type),
               svq3->halfpel_flag, svq3->thirdpel_flag,
1039
               s->adaptive_quant, s->qscale, h->slice_num);
M
Michael Niedermayer 已提交
1040

1041
    /* for skipping the frame */
D
Diego Biurrun 已提交
1042 1043
    s->current_picture.f.pict_type = s->pict_type;
    s->current_picture.f.key_frame = (s->pict_type == AV_PICTURE_TYPE_I);
1044 1045

    /* Skip B-frames if we do not have reference frames. */
1046
    if (s->last_picture_ptr == NULL && s->pict_type == AV_PICTURE_TYPE_B)
1047
        return 0;
1048 1049 1050
    if (avctx->skip_frame >= AVDISCARD_NONREF && s->pict_type == AV_PICTURE_TYPE_B ||
        avctx->skip_frame >= AVDISCARD_NONKEY && s->pict_type != AV_PICTURE_TYPE_I ||
        avctx->skip_frame >= AVDISCARD_ALL)
1051 1052 1053
        return 0;

    if (s->next_p_frame_damaged) {
1054
        if (s->pict_type == AV_PICTURE_TYPE_B)
1055 1056 1057 1058
            return 0;
        else
            s->next_p_frame_damaged = 0;
    }
1059

1060
    if (ff_h264_frame_start(h) < 0)
1061
        return -1;
M
Michael Niedermayer 已提交
1062

1063
    if (s->pict_type == AV_PICTURE_TYPE_B) {
1064
        h->frame_num_offset = h->slice_num - h->prev_frame_num;
M
Michael Niedermayer 已提交
1065

D
Diego Biurrun 已提交
1066
        if (h->frame_num_offset < 0)
1067
            h->frame_num_offset += 256;
D
Diego Biurrun 已提交
1068 1069
        if (h->frame_num_offset == 0 ||
            h->frame_num_offset >= h->prev_frame_num_offset) {
1070 1071 1072 1073
            av_log(h->s.avctx, AV_LOG_ERROR, "error in B-frame picture id\n");
            return -1;
        }
    } else {
D
Diego Biurrun 已提交
1074 1075
        h->prev_frame_num        = h->frame_num;
        h->frame_num             = h->slice_num;
1076
        h->prev_frame_num_offset = h->frame_num - h->prev_frame_num;
1077

D
Diego Biurrun 已提交
1078
        if (h->prev_frame_num_offset < 0)
1079
            h->prev_frame_num_offset += 256;
1080 1081
    }

D
Diego Biurrun 已提交
1082
    for (m = 0; m < 2; m++) {
1083
        int i;
D
Diego Biurrun 已提交
1084
        for (i = 0; i < 4; i++) {
1085 1086
            int j;
            for (j = -1; j < 4; j++)
D
Diego Biurrun 已提交
1087
                h->ref_cache[m][scan8[0] + 8 * i + j] = 1;
1088
            if (i < 3)
D
Diego Biurrun 已提交
1089
                h->ref_cache[m][scan8[0] + 8 * i + j] = PART_NOT_AVAILABLE;
1090
        }
1091 1092
    }

1093 1094
    for (s->mb_y = 0; s->mb_y < s->mb_height; s->mb_y++) {
        for (s->mb_x = 0; s->mb_x < s->mb_width; s->mb_x++) {
1095
            unsigned mb_type;
D
Diego Biurrun 已提交
1096
            h->mb_xy = s->mb_x + s->mb_y * s->mb_stride;
1097

D
Diego Biurrun 已提交
1098 1099
            if ((get_bits_count(&s->gb) + 7) >= s->gb.size_in_bits &&
                ((get_bits_count(&s->gb) & 7) == 0 ||
1100
                 show_bits(&s->gb, -get_bits_count(&s->gb) & 7) == 0)) {
1101
                skip_bits(&s->gb, svq3->next_slice_index - get_bits_count(&s->gb));
D
Diego Biurrun 已提交
1102
                s->gb.size_in_bits = 8 * buf_size;
1103

1104
                if (svq3_decode_slice_header(avctx))
1105
                    return -1;
1106

1107 1108
                /* TODO: support s->mb_skip_run */
            }
1109

1110
            mb_type = svq3_get_ue_golomb(&s->gb);
1111

D
Diego Biurrun 已提交
1112
            if (s->pict_type == AV_PICTURE_TYPE_I)
1113
                mb_type += 8;
D
Diego Biurrun 已提交
1114
            else if (s->pict_type == AV_PICTURE_TYPE_B && mb_type >= 4)
1115
                mb_type += 4;
1116
            if (mb_type > 33 || svq3_decode_mb(svq3, mb_type)) {
D
Diego Biurrun 已提交
1117 1118
                av_log(h->s.avctx, AV_LOG_ERROR,
                       "error while decoding MB %d %d\n", s->mb_x, s->mb_y);
1119 1120
                return -1;
            }
M
Michael Niedermayer 已提交
1121

D
Diego Biurrun 已提交
1122 1123
            if (mb_type != 0)
                ff_h264_hl_decode_mb(h);
M
Michael Niedermayer 已提交
1124

D
Diego Biurrun 已提交
1125
            if (s->pict_type != AV_PICTURE_TYPE_B && !s->low_delay)
D
Diego Biurrun 已提交
1126
                s->current_picture.f.mb_type[s->mb_x + s->mb_y * s->mb_stride] =
1127
                    (s->pict_type == AV_PICTURE_TYPE_P && mb_type < 8) ? (mb_type - 1) : -1;
1128
        }
1129

D
Diego Biurrun 已提交
1130
        ff_draw_horiz_band(s, 16 * s->mb_y, 16);
M
Michael Niedermayer 已提交
1131
    }
M
Michael Niedermayer 已提交
1132

1133
    ff_MPV_frame_end(s);
M
Michael Niedermayer 已提交
1134

D
Diego Biurrun 已提交
1135 1136 1137 1138
    if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay)
        *(AVFrame *)data = s->current_picture.f;
    else
        *(AVFrame *)data = s->last_picture.f;
1139

1140
    /* Do not output the last pic after seeking. */
D
Diego Biurrun 已提交
1141
    if (s->last_picture_ptr || s->low_delay)
1142
        *got_frame = 1;
1143

1144
    return buf_size;
M
Michael Niedermayer 已提交
1145 1146
}

1147 1148 1149
static int svq3_decode_end(AVCodecContext *avctx)
{
    SVQ3Context *svq3 = avctx->priv_data;
D
Diego Biurrun 已提交
1150
    H264Context *h    = &svq3->h;
1151 1152 1153 1154
    MpegEncContext *s = &h->s;

    ff_h264_free_context(h);

1155
    ff_MPV_common_end(s);
1156 1157 1158

    return 0;
}
M
Michael Niedermayer 已提交
1159

1160
AVCodec ff_svq3_decoder = {
1161 1162
    .name           = "svq3",
    .type           = AVMEDIA_TYPE_VIDEO,
1163
    .id             = AV_CODEC_ID_SVQ3,
1164 1165 1166 1167
    .priv_data_size = sizeof(SVQ3Context),
    .init           = svq3_decode_init,
    .close          = svq3_decode_end,
    .decode         = svq3_decode_frame,
D
Diego Biurrun 已提交
1168 1169
    .capabilities   = CODEC_CAP_DRAW_HORIZ_BAND |
                      CODEC_CAP_DR1             |
1170 1171
                      CODEC_CAP_DELAY,
    .long_name      = NULL_IF_CONFIG_SMALL("Sorenson Vector Quantizer 3 / Sorenson Video 3 / SVQ3"),
D
Diego Biurrun 已提交
1172 1173
    .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUVJ420P,
                                                     AV_PIX_FMT_NONE},
M
Michael Niedermayer 已提交
1174
};