h264_ps.c 23.5 KB
Newer Older
1 2 3 4
/*
 * H.26L/H.264/AVC/JVT/14496-10/... parameter set decoding
 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
 *
5
 * This file is part of Libav.
6
 *
7
 * Libav is free software; you can redistribute it and/or
8 9 10 11
 * 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.
 *
12
 * Libav is distributed in the hope that it will be useful,
13 14 15 16 17
 * 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
18
 * License along with Libav; if not, write to the Free Software
19 20 21 22
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

/**
23
 * @file
24 25 26 27
 * H.264 / AVC / MPEG4 part10 parameter set decoding.
 * @author Michael Niedermayer <michaelni@gmx.at>
 */

28
#include "libavutil/imgutils.h"
29 30 31 32 33 34 35 36 37 38
#include "internal.h"
#include "avcodec.h"
#include "h264.h"
#include "h264data.h" //FIXME FIXME FIXME (just for zigzag_scan)
#include "golomb.h"


//#undef NDEBUG
#include <assert.h>

39 40 41
#define MAX_LOG2_MAX_FRAME_NUM    (12 + 4)
#define MIN_LOG2_MAX_FRAME_NUM    4

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
static const AVRational pixel_aspect[17]={
 {0, 1},
 {1, 1},
 {12, 11},
 {10, 11},
 {16, 11},
 {40, 33},
 {24, 11},
 {20, 11},
 {32, 11},
 {80, 33},
 {18, 11},
 {15, 11},
 {64, 33},
 {160,99},
 {4, 3},
 {3, 2},
 {2, 1},
};

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
#define QP(qP,depth) ( (qP)+6*((depth)-8) )

#define CHROMA_QP_TABLE_END(d) \
     QP(0,d),  QP(1,d),  QP(2,d),  QP(3,d),  QP(4,d),  QP(5,d),\
     QP(6,d),  QP(7,d),  QP(8,d),  QP(9,d), QP(10,d), QP(11,d),\
    QP(12,d), QP(13,d), QP(14,d), QP(15,d), QP(16,d), QP(17,d),\
    QP(18,d), QP(19,d), QP(20,d), QP(21,d), QP(22,d), QP(23,d),\
    QP(24,d), QP(25,d), QP(26,d), QP(27,d), QP(28,d), QP(29,d),\
    QP(29,d), QP(30,d), QP(31,d), QP(32,d), QP(32,d), QP(33,d),\
    QP(34,d), QP(34,d), QP(35,d), QP(35,d), QP(36,d), QP(36,d),\
    QP(37,d), QP(37,d), QP(37,d), QP(38,d), QP(38,d), QP(38,d),\
    QP(39,d), QP(39,d), QP(39,d), QP(39,d)

const uint8_t ff_h264_chroma_qp[3][QP_MAX_NUM+1] = {
    {
        CHROMA_QP_TABLE_END(8)
    },
    {
        0, 1, 2, 3, 4, 5,
        CHROMA_QP_TABLE_END(9)
    },
    {
        0, 1, 2, 3,  4,  5,
        6, 7, 8, 9, 10, 11,
        CHROMA_QP_TABLE_END(10)
    },
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
};

static const uint8_t default_scaling4[2][16]={
{   6,13,20,28,
   13,20,28,32,
   20,28,32,37,
   28,32,37,42
},{
   10,14,20,24,
   14,20,24,27,
   20,24,27,30,
   24,27,30,34
}};

static const uint8_t default_scaling8[2][64]={
{   6,10,13,16,18,23,25,27,
   10,11,16,18,23,25,27,29,
   13,16,18,23,25,27,29,31,
   16,18,23,25,27,29,31,33,
   18,23,25,27,29,31,33,36,
   23,25,27,29,31,33,36,38,
   25,27,29,31,33,36,38,40,
   27,29,31,33,36,38,40,42
},{
    9,13,15,17,19,21,22,24,
   13,13,17,19,21,22,24,25,
   15,17,19,21,22,24,25,27,
   17,19,21,22,24,25,27,28,
   19,21,22,24,25,27,28,30,
   21,22,24,25,27,28,30,32,
   22,24,25,27,28,30,32,33,
   24,25,27,28,30,32,33,35
}};

static inline int decode_hrd_parameters(H264Context *h, SPS *sps){
    int cpb_count, i;
A
Anton Khirnov 已提交
124
    cpb_count = get_ue_golomb_31(&h->gb) + 1;
125 126

    if(cpb_count > 32U){
A
Anton Khirnov 已提交
127
        av_log(h->avctx, AV_LOG_ERROR, "cpb_count %d invalid\n", cpb_count);
128 129 130
        return -1;
    }

A
Anton Khirnov 已提交
131 132
    get_bits(&h->gb, 4); /* bit_rate_scale */
    get_bits(&h->gb, 4); /* cpb_size_scale */
133
    for(i=0; i<cpb_count; i++){
A
Anton Khirnov 已提交
134 135 136
        get_ue_golomb_long(&h->gb); /* bit_rate_value_minus1 */
        get_ue_golomb_long(&h->gb); /* cpb_size_value_minus1 */
        get_bits1(&h->gb);     /* cbr_flag */
137
    }
A
Anton Khirnov 已提交
138 139 140 141
    sps->initial_cpb_removal_delay_length = get_bits(&h->gb, 5) + 1;
    sps->cpb_removal_delay_length = get_bits(&h->gb, 5) + 1;
    sps->dpb_output_delay_length = get_bits(&h->gb, 5) + 1;
    sps->time_offset_length = get_bits(&h->gb, 5);
142 143 144 145 146 147 148 149
    sps->cpb_cnt = cpb_count;
    return 0;
}

static inline int decode_vui_parameters(H264Context *h, SPS *sps){
    int aspect_ratio_info_present_flag;
    unsigned int aspect_ratio_idc;

A
Anton Khirnov 已提交
150
    aspect_ratio_info_present_flag= get_bits1(&h->gb);
151 152

    if( aspect_ratio_info_present_flag ) {
A
Anton Khirnov 已提交
153
        aspect_ratio_idc= get_bits(&h->gb, 8);
154
        if( aspect_ratio_idc == EXTENDED_SAR ) {
A
Anton Khirnov 已提交
155 156
            sps->sar.num= get_bits(&h->gb, 16);
            sps->sar.den= get_bits(&h->gb, 16);
157 158 159
        }else if(aspect_ratio_idc < FF_ARRAY_ELEMS(pixel_aspect)){
            sps->sar=  pixel_aspect[aspect_ratio_idc];
        }else{
A
Anton Khirnov 已提交
160
            av_log(h->avctx, AV_LOG_ERROR, "illegal aspect ratio\n");
161 162 163 164 165 166 167 168
            return -1;
        }
    }else{
        sps->sar.num=
        sps->sar.den= 0;
    }
//            s->avctx->aspect_ratio= sar_width*s->width / (float)(s->height*sar_height);

A
Anton Khirnov 已提交
169 170
    if(get_bits1(&h->gb)){      /* overscan_info_present_flag */
        get_bits1(&h->gb);      /* overscan_appropriate_flag */
171 172
    }

A
Anton Khirnov 已提交
173
    sps->video_signal_type_present_flag = get_bits1(&h->gb);
174
    if(sps->video_signal_type_present_flag){
A
Anton Khirnov 已提交
175 176
        get_bits(&h->gb, 3);    /* video_format */
        sps->full_range = get_bits1(&h->gb); /* video_full_range_flag */
177

A
Anton Khirnov 已提交
178
        sps->colour_description_present_flag = get_bits1(&h->gb);
179
        if(sps->colour_description_present_flag){
A
Anton Khirnov 已提交
180 181 182
            sps->color_primaries = get_bits(&h->gb, 8); /* colour_primaries */
            sps->color_trc       = get_bits(&h->gb, 8); /* transfer_characteristics */
            sps->colorspace      = get_bits(&h->gb, 8); /* matrix_coefficients */
183 184 185 186 187 188 189 190 191
            if (sps->color_primaries >= AVCOL_PRI_NB)
                sps->color_primaries  = AVCOL_PRI_UNSPECIFIED;
            if (sps->color_trc >= AVCOL_TRC_NB)
                sps->color_trc  = AVCOL_TRC_UNSPECIFIED;
            if (sps->colorspace >= AVCOL_SPC_NB)
                sps->colorspace  = AVCOL_SPC_UNSPECIFIED;
        }
    }

A
Anton Khirnov 已提交
192 193 194
    if(get_bits1(&h->gb)){      /* chroma_location_info_present_flag */
        h->avctx->chroma_sample_location = get_ue_golomb(&h->gb)+1;  /* chroma_sample_location_type_top_field */
        get_ue_golomb(&h->gb);  /* chroma_sample_location_type_bottom_field */
195 196
    }

A
Anton Khirnov 已提交
197
    sps->timing_info_present_flag = get_bits1(&h->gb);
198
    if(sps->timing_info_present_flag){
A
Anton Khirnov 已提交
199 200
        sps->num_units_in_tick = get_bits_long(&h->gb, 32);
        sps->time_scale = get_bits_long(&h->gb, 32);
M
Michael Niedermayer 已提交
201
        if(!sps->num_units_in_tick || !sps->time_scale){
A
Anton Khirnov 已提交
202
            av_log(h->avctx, AV_LOG_ERROR, "time_scale/num_units_in_tick invalid or unsupported (%d/%d)\n", sps->time_scale, sps->num_units_in_tick);
203 204
            return -1;
        }
A
Anton Khirnov 已提交
205
        sps->fixed_frame_rate_flag = get_bits1(&h->gb);
206 207
    }

A
Anton Khirnov 已提交
208
    sps->nal_hrd_parameters_present_flag = get_bits1(&h->gb);
209 210 211
    if(sps->nal_hrd_parameters_present_flag)
        if(decode_hrd_parameters(h, sps) < 0)
            return -1;
A
Anton Khirnov 已提交
212
    sps->vcl_hrd_parameters_present_flag = get_bits1(&h->gb);
213 214 215 216
    if(sps->vcl_hrd_parameters_present_flag)
        if(decode_hrd_parameters(h, sps) < 0)
            return -1;
    if(sps->nal_hrd_parameters_present_flag || sps->vcl_hrd_parameters_present_flag)
A
Anton Khirnov 已提交
217 218
        get_bits1(&h->gb);     /* low_delay_hrd_flag */
    sps->pic_struct_present_flag = get_bits1(&h->gb);
219

A
Anton Khirnov 已提交
220
    sps->bitstream_restriction_flag = get_bits1(&h->gb);
221
    if(sps->bitstream_restriction_flag){
A
Anton Khirnov 已提交
222 223 224 225 226 227 228 229 230
        get_bits1(&h->gb);     /* motion_vectors_over_pic_boundaries_flag */
        get_ue_golomb(&h->gb); /* max_bytes_per_pic_denom */
        get_ue_golomb(&h->gb); /* max_bits_per_mb_denom */
        get_ue_golomb(&h->gb); /* log2_max_mv_length_horizontal */
        get_ue_golomb(&h->gb); /* log2_max_mv_length_vertical */
        sps->num_reorder_frames= get_ue_golomb(&h->gb);
        get_ue_golomb(&h->gb); /*max_dec_frame_buffering*/

        if (get_bits_left(&h->gb) < 0) {
231 232 233 234
            sps->num_reorder_frames=0;
            sps->bitstream_restriction_flag= 0;
        }

235
        if(sps->num_reorder_frames > 16U /*max_dec_frame_buffering || max_dec_frame_buffering > 16*/){
A
Anton Khirnov 已提交
236
            av_log(h->avctx, AV_LOG_ERROR, "illegal num_reorder_frames %d\n", sps->num_reorder_frames);
237 238 239
            return -1;
        }
    }
A
Anton Khirnov 已提交
240 241
    if (get_bits_left(&h->gb) < 0) {
        av_log(h->avctx, AV_LOG_ERROR, "Overread VUI by %d bits\n", -get_bits_left(&h->gb));
242 243
        return AVERROR_INVALIDDATA;
    }
244 245 246 247 248 249 250 251

    return 0;
}

static void decode_scaling_list(H264Context *h, uint8_t *factors, int size,
                                const uint8_t *jvt_list, const uint8_t *fallback_list){
    int i, last = 8, next = 8;
    const uint8_t *scan = size == 16 ? zigzag_scan : ff_zigzag_direct;
A
Anton Khirnov 已提交
252
    if(!get_bits1(&h->gb)) /* matrix not written, we use the predicted one */
253 254 255 256
        memcpy(factors, fallback_list, size*sizeof(uint8_t));
    else
    for(i=0;i<size;i++){
        if(next)
A
Anton Khirnov 已提交
257
            next = (last + get_se_golomb(&h->gb)) & 0xff;
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
        if(!i && !next){ /* matrix not written, we use the preset one */
            memcpy(factors, jvt_list, size*sizeof(uint8_t));
            break;
        }
        last = factors[scan[i]] = next ? next : last;
    }
}

static void decode_scaling_matrices(H264Context *h, SPS *sps, PPS *pps, int is_sps,
                                   uint8_t (*scaling_matrix4)[16], uint8_t (*scaling_matrix8)[64]){
    int fallback_sps = !is_sps && sps->scaling_matrix_present;
    const uint8_t *fallback[4] = {
        fallback_sps ? sps->scaling_matrix4[0] : default_scaling4[0],
        fallback_sps ? sps->scaling_matrix4[3] : default_scaling4[1],
        fallback_sps ? sps->scaling_matrix8[0] : default_scaling8[0],
273
        fallback_sps ? sps->scaling_matrix8[3] : default_scaling8[1]
274
    };
A
Anton Khirnov 已提交
275
    if(get_bits1(&h->gb)){
276 277 278 279 280 281 282 283 284
        sps->scaling_matrix_present |= is_sps;
        decode_scaling_list(h,scaling_matrix4[0],16,default_scaling4[0],fallback[0]); // Intra, Y
        decode_scaling_list(h,scaling_matrix4[1],16,default_scaling4[0],scaling_matrix4[0]); // Intra, Cr
        decode_scaling_list(h,scaling_matrix4[2],16,default_scaling4[0],scaling_matrix4[1]); // Intra, Cb
        decode_scaling_list(h,scaling_matrix4[3],16,default_scaling4[1],fallback[1]); // Inter, Y
        decode_scaling_list(h,scaling_matrix4[4],16,default_scaling4[1],scaling_matrix4[3]); // Inter, Cr
        decode_scaling_list(h,scaling_matrix4[5],16,default_scaling4[1],scaling_matrix4[4]); // Inter, Cb
        if(is_sps || pps->transform_8x8_mode){
            decode_scaling_list(h,scaling_matrix8[0],64,default_scaling8[0],fallback[2]);  // Intra, Y
285
            if(sps->chroma_format_idc == 3){
286 287 288 289
                decode_scaling_list(h,scaling_matrix8[1],64,default_scaling8[0],scaling_matrix8[0]);  // Intra, Cr
                decode_scaling_list(h,scaling_matrix8[2],64,default_scaling8[0],scaling_matrix8[1]);  // Intra, Cb
            }
            decode_scaling_list(h,scaling_matrix8[3],64,default_scaling8[1],fallback[3]);  // Inter, Y
290
            if(sps->chroma_format_idc == 3){
291 292 293
                decode_scaling_list(h,scaling_matrix8[4],64,default_scaling8[1],scaling_matrix8[3]);  // Inter, Cr
                decode_scaling_list(h,scaling_matrix8[5],64,default_scaling8[1],scaling_matrix8[4]);  // Inter, Cb
            }
294 295 296 297 298
        }
    }
}

int ff_h264_decode_seq_parameter_set(H264Context *h){
299
    int profile_idc, level_idc, constraint_set_flags = 0;
300
    unsigned int sps_id;
301
    int i, log2_max_frame_num_minus4;
302 303
    SPS *sps;

A
Anton Khirnov 已提交
304 305 306 307 308 309 310 311
    profile_idc= get_bits(&h->gb, 8);
    constraint_set_flags |= get_bits1(&h->gb) << 0;   //constraint_set0_flag
    constraint_set_flags |= get_bits1(&h->gb) << 1;   //constraint_set1_flag
    constraint_set_flags |= get_bits1(&h->gb) << 2;   //constraint_set2_flag
    constraint_set_flags |= get_bits1(&h->gb) << 3;   //constraint_set3_flag
    get_bits(&h->gb, 4); // reserved
    level_idc= get_bits(&h->gb, 8);
    sps_id= get_ue_golomb_31(&h->gb);
312 313

    if(sps_id >= MAX_SPS_COUNT) {
A
Anton Khirnov 已提交
314
        av_log(h->avctx, AV_LOG_ERROR, "sps_id (%d) out of range\n", sps_id);
315 316 317 318 319 320
        return -1;
    }
    sps= av_mallocz(sizeof(SPS));
    if(sps == NULL)
        return -1;

321
    sps->time_offset_length = 24;
322
    sps->profile_idc= profile_idc;
323
    sps->constraint_set_flags = constraint_set_flags;
324 325 326 327 328 329
    sps->level_idc= level_idc;

    memset(sps->scaling_matrix4, 16, sizeof(sps->scaling_matrix4));
    memset(sps->scaling_matrix8, 16, sizeof(sps->scaling_matrix8));
    sps->scaling_matrix_present = 0;

330 331 332 333 334
    if (sps->profile_idc == 100 || sps->profile_idc == 110 ||
        sps->profile_idc == 122 || sps->profile_idc == 244 ||
        sps->profile_idc ==  44 || sps->profile_idc ==  83 ||
        sps->profile_idc ==  86 || sps->profile_idc == 118 ||
        sps->profile_idc == 128 || sps->profile_idc == 144) {
A
Anton Khirnov 已提交
335
        sps->chroma_format_idc= get_ue_golomb_31(&h->gb);
336
        if(sps->chroma_format_idc > 3) {
A
Anton Khirnov 已提交
337
            av_log(h->avctx, AV_LOG_ERROR, "chroma_format_idc (%u) out of range\n", sps->chroma_format_idc);
338
            goto fail;
339
        } else if(sps->chroma_format_idc == 3) {
A
Anton Khirnov 已提交
340
            sps->residual_color_transform_flag = get_bits1(&h->gb);
341
        }
A
Anton Khirnov 已提交
342 343 344
        sps->bit_depth_luma   = get_ue_golomb(&h->gb) + 8;
        sps->bit_depth_chroma = get_ue_golomb(&h->gb) + 8;
        sps->transform_bypass = get_bits1(&h->gb);
345 346 347 348 349 350 351
        decode_scaling_matrices(h, sps, NULL, 1, sps->scaling_matrix4, sps->scaling_matrix8);
    }else{
        sps->chroma_format_idc= 1;
        sps->bit_depth_luma   = 8;
        sps->bit_depth_chroma = 8;
    }

A
Anton Khirnov 已提交
352
    log2_max_frame_num_minus4 = get_ue_golomb(&h->gb);
353 354
    if (log2_max_frame_num_minus4 < MIN_LOG2_MAX_FRAME_NUM - 4 ||
        log2_max_frame_num_minus4 > MAX_LOG2_MAX_FRAME_NUM - 4) {
A
Anton Khirnov 已提交
355
        av_log(h->avctx, AV_LOG_ERROR,
356 357
               "log2_max_frame_num_minus4 out of range (0-12): %d\n",
               log2_max_frame_num_minus4);
358
        goto fail;
359 360 361
    }
    sps->log2_max_frame_num = log2_max_frame_num_minus4 + 4;

A
Anton Khirnov 已提交
362
    sps->poc_type= get_ue_golomb_31(&h->gb);
363 364

    if(sps->poc_type == 0){ //FIXME #define
A
Anton Khirnov 已提交
365
        sps->log2_max_poc_lsb= get_ue_golomb(&h->gb) + 4;
366
    } else if(sps->poc_type == 1){//FIXME #define
A
Anton Khirnov 已提交
367 368 369 370
        sps->delta_pic_order_always_zero_flag= get_bits1(&h->gb);
        sps->offset_for_non_ref_pic= get_se_golomb(&h->gb);
        sps->offset_for_top_to_bottom_field= get_se_golomb(&h->gb);
        sps->poc_cycle_length                = get_ue_golomb(&h->gb);
371 372

        if((unsigned)sps->poc_cycle_length >= FF_ARRAY_ELEMS(sps->offset_for_ref_frame)){
A
Anton Khirnov 已提交
373
            av_log(h->avctx, AV_LOG_ERROR, "poc_cycle_length overflow %u\n", sps->poc_cycle_length);
374 375 376 377
            goto fail;
        }

        for(i=0; i<sps->poc_cycle_length; i++)
A
Anton Khirnov 已提交
378
            sps->offset_for_ref_frame[i]= get_se_golomb(&h->gb);
379
    }else if(sps->poc_type != 2){
A
Anton Khirnov 已提交
380
        av_log(h->avctx, AV_LOG_ERROR, "illegal POC type %d\n", sps->poc_type);
381 382 383
        goto fail;
    }

A
Anton Khirnov 已提交
384
    sps->ref_frame_count= get_ue_golomb_31(&h->gb);
385
    if(sps->ref_frame_count > MAX_PICTURE_COUNT-2 || sps->ref_frame_count >= 32U){
A
Anton Khirnov 已提交
386
        av_log(h->avctx, AV_LOG_ERROR, "too many reference frames\n");
387 388
        goto fail;
    }
A
Anton Khirnov 已提交
389 390 391
    sps->gaps_in_frame_num_allowed_flag= get_bits1(&h->gb);
    sps->mb_width = get_ue_golomb(&h->gb) + 1;
    sps->mb_height= get_ue_golomb(&h->gb) + 1;
392
    if((unsigned)sps->mb_width >= INT_MAX/16 || (unsigned)sps->mb_height >= INT_MAX/16 ||
A
Anton Khirnov 已提交
393 394
       av_image_check_size(16*sps->mb_width, 16*sps->mb_height, 0, h->avctx)){
        av_log(h->avctx, AV_LOG_ERROR, "mb_width/height overflow\n");
395 396 397
        goto fail;
    }

A
Anton Khirnov 已提交
398
    sps->frame_mbs_only_flag= get_bits1(&h->gb);
399
    if(!sps->frame_mbs_only_flag)
A
Anton Khirnov 已提交
400
        sps->mb_aff= get_bits1(&h->gb);
401 402 403
    else
        sps->mb_aff= 0;

A
Anton Khirnov 已提交
404
    sps->direct_8x8_inference_flag= get_bits1(&h->gb);
405
    if(!sps->frame_mbs_only_flag && !sps->direct_8x8_inference_flag){
A
Anton Khirnov 已提交
406
        av_log(h->avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n");
407 408
        goto fail;
    }
409 410 411

#ifndef ALLOW_INTERLACE
    if(sps->mb_aff)
A
Anton Khirnov 已提交
412
        av_log(h->avctx, AV_LOG_ERROR, "MBAFF support not included; enable it at compile-time.\n");
413
#endif
A
Anton Khirnov 已提交
414
    sps->crop= get_bits1(&h->gb);
415
    if(sps->crop){
416 417
        int crop_vertical_limit   = sps->chroma_format_idc  & 2 ? 16 : 8;
        int crop_horizontal_limit = sps->chroma_format_idc == 3 ? 16 : 8;
A
Anton Khirnov 已提交
418 419 420 421 422 423
        sps->crop_left  = get_ue_golomb(&h->gb);
        sps->crop_right = get_ue_golomb(&h->gb);
        sps->crop_top   = get_ue_golomb(&h->gb);
        sps->crop_bottom= get_ue_golomb(&h->gb);
        if (h->avctx->flags2 & CODEC_FLAG2_IGNORE_CROP) {
            av_log(h->avctx, AV_LOG_DEBUG,
424 425 426 427 428 429 430 431 432 433 434 435
                   "discarding sps cropping, "
                   "original values are l:%u r:%u t:%u b:%u\n",
                   sps->crop_left,
                   sps->crop_right,
                   sps->crop_top,
                   sps->crop_bottom);

            sps->crop_left   =
            sps->crop_right  =
            sps->crop_top    =
            sps->crop_bottom = 0;
        }
436
        if(sps->crop_left || sps->crop_top){
A
Anton Khirnov 已提交
437
            av_log(h->avctx, AV_LOG_ERROR, "insane cropping not completely supported, this could look slightly wrong ...\n");
438
        }
439
        if(sps->crop_right >= crop_horizontal_limit || sps->crop_bottom >= crop_vertical_limit){
A
Anton Khirnov 已提交
440
            av_log(h->avctx, AV_LOG_ERROR, "brainfart cropping not supported, this could look slightly wrong ...\n");
441 442 443 444 445 446 447 448
        }
    }else{
        sps->crop_left  =
        sps->crop_right =
        sps->crop_top   =
        sps->crop_bottom= 0;
    }

A
Anton Khirnov 已提交
449
    sps->vui_parameters_present_flag= get_bits1(&h->gb);
450 451 452 453
    if( sps->vui_parameters_present_flag )
        if (decode_vui_parameters(h, sps) < 0)
            goto fail;

454 455 456
    if(!sps->sar.den)
        sps->sar.den= 1;

A
Anton Khirnov 已提交
457
    if(h->avctx->debug&FF_DEBUG_PICT_INFO){
458
        static const char csp[4][5] = { "Gray", "420", "422", "444" };
A
Anton Khirnov 已提交
459
        av_log(h->avctx, AV_LOG_DEBUG, "sps:%u profile:%d/%d poc:%d ref:%d %dx%d %s %s crop:%d/%d/%d/%d %s %s %d/%d\n",
460 461 462 463 464 465 466 467 468
               sps_id, sps->profile_idc, sps->level_idc,
               sps->poc_type,
               sps->ref_frame_count,
               sps->mb_width, sps->mb_height,
               sps->frame_mbs_only_flag ? "FRM" : (sps->mb_aff ? "MB-AFF" : "PIC-AFF"),
               sps->direct_8x8_inference_flag ? "8B8" : "",
               sps->crop_left, sps->crop_right,
               sps->crop_top, sps->crop_bottom,
               sps->vui_parameters_present_flag ? "VUI" : "",
469
               csp[sps->chroma_format_idc],
470 471 472 473
               sps->timing_info_present_flag ? sps->num_units_in_tick : 0,
               sps->timing_info_present_flag ? sps->time_scale : 0
               );
    }
474
    sps->new = 1;
475 476

    av_free(h->sps_buffers[sps_id]);
477 478 479 480
    h->sps_buffers[sps_id] = sps;
    h->sps                 = *sps;
    h->current_sps_id      = sps_id;

481 482 483 484 485 486 487
    return 0;
fail:
    av_free(sps);
    return -1;
}

static void
488
build_qp_table(PPS *pps, int t, int index, const int depth)
489 490
{
    int i;
491 492 493
    const int max_qp = 51 + 6*(depth-8);
    for(i = 0; i < max_qp+1; i++)
        pps->chroma_qp_table[t][i] = ff_h264_chroma_qp[depth-8][av_clip(i + index, 0, max_qp)];
494 495 496
}

int ff_h264_decode_picture_parameter_set(H264Context *h, int bit_length){
A
Anton Khirnov 已提交
497
    unsigned int pps_id= get_ue_golomb(&h->gb);
498
    PPS *pps;
499
    const int qp_bd_offset = 6*(h->sps.bit_depth_luma-8);
500
    int bits_left;
501 502

    if(pps_id >= MAX_PPS_COUNT) {
A
Anton Khirnov 已提交
503
        av_log(h->avctx, AV_LOG_ERROR, "pps_id (%d) out of range\n", pps_id);
504
        return -1;
505
    } else if (h->sps.bit_depth_luma > 10) {
A
Anton Khirnov 已提交
506
        av_log(h->avctx, AV_LOG_ERROR, "Unimplemented luma bit depth=%d (max=10)\n", h->sps.bit_depth_luma);
507
        return AVERROR_PATCHWELCOME;
508 509 510 511 512
    }

    pps= av_mallocz(sizeof(PPS));
    if(pps == NULL)
        return -1;
A
Anton Khirnov 已提交
513
    pps->sps_id= get_ue_golomb_31(&h->gb);
514
    if((unsigned)pps->sps_id>=MAX_SPS_COUNT || h->sps_buffers[pps->sps_id] == NULL){
A
Anton Khirnov 已提交
515
        av_log(h->avctx, AV_LOG_ERROR, "sps_id out of range\n");
516 517 518
        goto fail;
    }

A
Anton Khirnov 已提交
519 520 521
    pps->cabac= get_bits1(&h->gb);
    pps->pic_order_present= get_bits1(&h->gb);
    pps->slice_group_count= get_ue_golomb(&h->gb) + 1;
522
    if(pps->slice_group_count > 1 ){
A
Anton Khirnov 已提交
523 524
        pps->mb_slice_group_map_type= get_ue_golomb(&h->gb);
        av_log(h->avctx, AV_LOG_ERROR, "FMO not supported\n");
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
        switch(pps->mb_slice_group_map_type){
        case 0:
#if 0
|   for( i = 0; i <= num_slice_groups_minus1; i++ ) |   |        |
|    run_length[ i ]                                |1  |ue(v)   |
#endif
            break;
        case 2:
#if 0
|   for( i = 0; i < num_slice_groups_minus1; i++ )  |   |        |
|{                                                  |   |        |
|    top_left_mb[ i ]                               |1  |ue(v)   |
|    bottom_right_mb[ i ]                           |1  |ue(v)   |
|   }                                               |   |        |
#endif
            break;
        case 3:
        case 4:
        case 5:
#if 0
|   slice_group_change_direction_flag               |1  |u(1)    |
|   slice_group_change_rate_minus1                  |1  |ue(v)   |
#endif
            break;
        case 6:
#if 0
|   slice_group_id_cnt_minus1                       |1  |ue(v)   |
|   for( i = 0; i <= slice_group_id_cnt_minus1; i++ |   |        |
|)                                                  |   |        |
|    slice_group_id[ i ]                            |1  |u(v)    |
#endif
            break;
        }
    }
A
Anton Khirnov 已提交
559 560
    pps->ref_count[0]= get_ue_golomb(&h->gb) + 1;
    pps->ref_count[1]= get_ue_golomb(&h->gb) + 1;
561
    if(pps->ref_count[0]-1 > 32-1 || pps->ref_count[1]-1 > 32-1){
A
Anton Khirnov 已提交
562
        av_log(h->avctx, AV_LOG_ERROR, "reference overflow (pps)\n");
563 564 565
        goto fail;
    }

A
Anton Khirnov 已提交
566 567 568 569 570 571 572 573
    pps->weighted_pred= get_bits1(&h->gb);
    pps->weighted_bipred_idc= get_bits(&h->gb, 2);
    pps->init_qp= get_se_golomb(&h->gb) + 26 + qp_bd_offset;
    pps->init_qs= get_se_golomb(&h->gb) + 26 + qp_bd_offset;
    pps->chroma_qp_index_offset[0]= get_se_golomb(&h->gb);
    pps->deblocking_filter_parameters_present= get_bits1(&h->gb);
    pps->constrained_intra_pred= get_bits1(&h->gb);
    pps->redundant_pic_cnt_present = get_bits1(&h->gb);
574 575 576 577 578 579

    pps->transform_8x8_mode= 0;
    h->dequant_coeff_pps= -1; //contents of sps/pps can change even if id doesn't, so reinit
    memcpy(pps->scaling_matrix4, h->sps_buffers[pps->sps_id]->scaling_matrix4, sizeof(pps->scaling_matrix4));
    memcpy(pps->scaling_matrix8, h->sps_buffers[pps->sps_id]->scaling_matrix8, sizeof(pps->scaling_matrix8));

A
Anton Khirnov 已提交
580
    bits_left = bit_length - get_bits_count(&h->gb);
581
    if (bits_left && (bits_left > 8 ||
A
Anton Khirnov 已提交
582 583
                      show_bits(&h->gb, bits_left) != 1 << (bits_left - 1))) {
        pps->transform_8x8_mode= get_bits1(&h->gb);
584
        decode_scaling_matrices(h, h->sps_buffers[pps->sps_id], pps, 0, pps->scaling_matrix4, pps->scaling_matrix8);
A
Anton Khirnov 已提交
585
        pps->chroma_qp_index_offset[1]= get_se_golomb(&h->gb); //second_chroma_qp_index_offset
586 587 588 589
    } else {
        pps->chroma_qp_index_offset[1]= pps->chroma_qp_index_offset[0];
    }

590 591
    build_qp_table(pps, 0, pps->chroma_qp_index_offset[0], h->sps.bit_depth_luma);
    build_qp_table(pps, 1, pps->chroma_qp_index_offset[1], h->sps.bit_depth_luma);
592
    if(pps->chroma_qp_index_offset[0] != pps->chroma_qp_index_offset[1])
593
        pps->chroma_qp_diff= 1;
594

A
Anton Khirnov 已提交
595 596
    if(h->avctx->debug&FF_DEBUG_PICT_INFO){
        av_log(h->avctx, AV_LOG_DEBUG, "pps:%u sps:%u %s slice_groups:%d ref:%d/%d %s qp:%d/%d/%d/%d %s %s %s %s\n",
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616
               pps_id, pps->sps_id,
               pps->cabac ? "CABAC" : "CAVLC",
               pps->slice_group_count,
               pps->ref_count[0], pps->ref_count[1],
               pps->weighted_pred ? "weighted" : "",
               pps->init_qp, pps->init_qs, pps->chroma_qp_index_offset[0], pps->chroma_qp_index_offset[1],
               pps->deblocking_filter_parameters_present ? "LPAR" : "",
               pps->constrained_intra_pred ? "CONSTR" : "",
               pps->redundant_pic_cnt_present ? "REDU" : "",
               pps->transform_8x8_mode ? "8x8DCT" : ""
               );
    }

    av_free(h->pps_buffers[pps_id]);
    h->pps_buffers[pps_id]= pps;
    return 0;
fail:
    av_free(pps);
    return -1;
}