set.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:21k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * set: h264 encoder (SPS and PPS init and write)
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  7.  *          Loren Merritt <lorenm@u.washington.edu>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include <math.h>
  24. #include "common/common.h"
  25. #ifndef _MSC_VER
  26. #include "config.h"
  27. #endif
  28. #include "set.h"
  29. #define bs_write_ue bs_write_ue_big
  30. static void transpose( uint8_t *buf, int w )
  31. {
  32.     int i, j;
  33.     for( i = 0; i < w; i++ )
  34.         for( j = 0; j < i; j++ )
  35.             XCHG( uint8_t, buf[w*i+j], buf[w*j+i] );
  36. }
  37. static void scaling_list_write( bs_t *s, x264_pps_t *pps, int idx )
  38. {
  39.     const int len = idx<4 ? 16 : 64;
  40.     const uint8_t *zigzag = idx<4 ? x264_zigzag_scan4[0] : x264_zigzag_scan8[0];
  41.     const uint8_t *list = pps->scaling_list[idx];
  42.     const uint8_t *def_list = (idx==CQM_4IC) ? pps->scaling_list[CQM_4IY]
  43.                             : (idx==CQM_4PC) ? pps->scaling_list[CQM_4PY]
  44.                             : x264_cqm_jvt[idx];
  45.     if( !memcmp( list, def_list, len ) )
  46.         bs_write( s, 1, 0 ); // scaling_list_present_flag
  47.     else if( !memcmp( list, x264_cqm_jvt[idx], len ) )
  48.     {
  49.         bs_write( s, 1, 1 ); // scaling_list_present_flag
  50.         bs_write_se( s, -8 ); // use jvt list
  51.     }
  52.     else
  53.     {
  54.         int j, run;
  55.         bs_write( s, 1, 1 ); // scaling_list_present_flag
  56.         // try run-length compression of trailing values
  57.         for( run = len; run > 1; run-- )
  58.             if( list[zigzag[run-1]] != list[zigzag[run-2]] )
  59.                 break;
  60.         if( run < len && len - run < bs_size_se( (int8_t)-list[zigzag[run]] ) )
  61.             run = len;
  62.         for( j = 0; j < run; j++ )
  63.             bs_write_se( s, (int8_t)(list[zigzag[j]] - (j>0 ? list[zigzag[j-1]] : 8)) ); // delta
  64.         if( run < len )
  65.             bs_write_se( s, (int8_t)-list[zigzag[run]] );
  66.     }
  67. }
  68. void x264_sps_init( x264_sps_t *sps, int i_id, x264_param_t *param )
  69. {
  70.     sps->i_id = i_id;
  71.     sps->b_qpprime_y_zero_transform_bypass = param->rc.i_rc_method == X264_RC_CQP && param->rc.i_qp_constant == 0;
  72.     if( sps->b_qpprime_y_zero_transform_bypass )
  73.         sps->i_profile_idc  = PROFILE_HIGH444;
  74.     else if( param->analyse.b_transform_8x8 || param->i_cqm_preset != X264_CQM_FLAT )
  75.         sps->i_profile_idc  = PROFILE_HIGH;
  76.     else if( param->b_cabac || param->i_bframe > 0 )
  77.         sps->i_profile_idc  = PROFILE_MAIN;
  78.     else
  79.         sps->i_profile_idc  = PROFILE_BASELINE;
  80.     sps->i_level_idc = param->i_level_idc;
  81.     sps->b_constraint_set0  = sps->i_profile_idc == PROFILE_BASELINE;
  82.     /* x264 doesn't support the features that are in Baseline and not in Main,
  83.      * namely arbitrary_slice_order and slice_groups. */
  84.     sps->b_constraint_set1  = sps->i_profile_idc <= PROFILE_MAIN;
  85.     /* Never set constraint_set2, it is not necessary and not used in real world. */
  86.     sps->b_constraint_set2  = 0;
  87.     sps->i_log2_max_frame_num = 4;  /* at least 4 */
  88.     while( (1 << sps->i_log2_max_frame_num) <= param->i_keyint_max )
  89.     {
  90.         sps->i_log2_max_frame_num++;
  91.     }
  92.     sps->i_log2_max_frame_num++;    /* just in case */
  93.     sps->i_poc_type = 0;
  94.     if( sps->i_poc_type == 0 )
  95.     {
  96.         sps->i_log2_max_poc_lsb = sps->i_log2_max_frame_num + 1;    /* max poc = 2*frame_num */
  97.     }
  98.     else if( sps->i_poc_type == 1 )
  99.     {
  100.         int i;
  101.         /* FIXME */
  102.         sps->b_delta_pic_order_always_zero = 1;
  103.         sps->i_offset_for_non_ref_pic = 0;
  104.         sps->i_offset_for_top_to_bottom_field = 0;
  105.         sps->i_num_ref_frames_in_poc_cycle = 0;
  106.         for( i = 0; i < sps->i_num_ref_frames_in_poc_cycle; i++ )
  107.         {
  108.             sps->i_offset_for_ref_frame[i] = 0;
  109.         }
  110.     }
  111.     sps->b_vui = 1;
  112.     sps->b_gaps_in_frame_num_value_allowed = 0;
  113.     sps->i_mb_width = ( param->i_width + 15 ) / 16;
  114.     sps->i_mb_height= ( param->i_height + 15 ) / 16;
  115.     if( param->b_interlaced )
  116.         sps->i_mb_height = ( sps->i_mb_height + 1 ) & ~1;
  117.     sps->b_frame_mbs_only = ! param->b_interlaced;
  118.     sps->b_mb_adaptive_frame_field = param->b_interlaced;
  119.     sps->b_direct8x8_inference = param->analyse.i_direct_8x8_inference
  120.                               || ! sps->b_frame_mbs_only
  121.                               || !(param->analyse.inter & X264_ANALYSE_PSUB8x8);
  122.     sps->crop.i_left   = 0;
  123.     sps->crop.i_top    = 0;
  124.     sps->crop.i_right  = sps->i_mb_width*16 - param->i_width;
  125.     sps->crop.i_bottom = (sps->i_mb_height*16 - param->i_height) >> param->b_interlaced;
  126.     sps->b_crop = sps->crop.i_left  || sps->crop.i_top ||
  127.                   sps->crop.i_right || sps->crop.i_bottom;
  128.     sps->vui.b_aspect_ratio_info_present = 0;
  129.     if( param->vui.i_sar_width > 0 && param->vui.i_sar_height > 0 )
  130.     {
  131.         sps->vui.b_aspect_ratio_info_present = 1;
  132.         sps->vui.i_sar_width = param->vui.i_sar_width;
  133.         sps->vui.i_sar_height= param->vui.i_sar_height;
  134.     }
  135.     sps->vui.b_overscan_info_present = ( param->vui.i_overscan ? 1 : 0 );
  136.     if( sps->vui.b_overscan_info_present )
  137.         sps->vui.b_overscan_info = ( param->vui.i_overscan == 2 ? 1 : 0 );
  138.     sps->vui.b_signal_type_present = 0;
  139.     sps->vui.i_vidformat = ( param->vui.i_vidformat <= 5 ? param->vui.i_vidformat : 5 );
  140.     sps->vui.b_fullrange = ( param->vui.b_fullrange ? 1 : 0 );
  141.     sps->vui.b_color_description_present = 0;
  142.     sps->vui.i_colorprim = ( param->vui.i_colorprim <=  9 ? param->vui.i_colorprim : 2 );
  143.     sps->vui.i_transfer  = ( param->vui.i_transfer  <= 11 ? param->vui.i_transfer  : 2 );
  144.     sps->vui.i_colmatrix = ( param->vui.i_colmatrix <=  9 ? param->vui.i_colmatrix : 2 );
  145.     if( sps->vui.i_colorprim != 2 ||
  146.         sps->vui.i_transfer  != 2 ||
  147.         sps->vui.i_colmatrix != 2 )
  148.     {
  149.         sps->vui.b_color_description_present = 1;
  150.     }
  151.     if( sps->vui.i_vidformat != 5 ||
  152.         sps->vui.b_fullrange ||
  153.         sps->vui.b_color_description_present )
  154.     {
  155.         sps->vui.b_signal_type_present = 1;
  156.     }
  157.     /* FIXME: not sufficient for interlaced video */
  158.     sps->vui.b_chroma_loc_info_present = ( param->vui.i_chroma_loc ? 1 : 0 );
  159.     if( sps->vui.b_chroma_loc_info_present )
  160.     {
  161.         sps->vui.i_chroma_loc_top = param->vui.i_chroma_loc;
  162.         sps->vui.i_chroma_loc_bottom = param->vui.i_chroma_loc;
  163.     }
  164.     sps->vui.b_timing_info_present = 0;
  165.     if( param->i_fps_num > 0 && param->i_fps_den > 0)
  166.     {
  167.         sps->vui.b_timing_info_present = 1;
  168.         sps->vui.i_num_units_in_tick = param->i_fps_den;
  169.         sps->vui.i_time_scale = param->i_fps_num * 2;
  170.         sps->vui.b_fixed_frame_rate = 1;
  171.     }
  172.     sps->vui.i_num_reorder_frames = param->b_bframe_pyramid ? 2 : param->i_bframe ? 1 : 0;
  173.     /* extra slot with pyramid so that we don't have to override the
  174.      * order of forgetting old pictures */
  175.     sps->vui.i_max_dec_frame_buffering =
  176.     sps->i_num_ref_frames = X264_MIN(16, X264_MAX(param->i_frame_reference, 1 + sps->vui.i_num_reorder_frames));
  177.     sps->vui.b_bitstream_restriction = 1;
  178.     if( sps->vui.b_bitstream_restriction )
  179.     {
  180.         sps->vui.b_motion_vectors_over_pic_boundaries = 1;
  181.         sps->vui.i_max_bytes_per_pic_denom = 0;
  182.         sps->vui.i_max_bits_per_mb_denom = 0;
  183.         sps->vui.i_log2_max_mv_length_horizontal =
  184.         sps->vui.i_log2_max_mv_length_vertical = (int)(log(param->analyse.i_mv_range*4-1)/log(2)) + 1;
  185.     }
  186. }
  187. void x264_sps_write( bs_t *s, x264_sps_t *sps )
  188. {
  189.     bs_write( s, 8, sps->i_profile_idc );
  190.     bs_write( s, 1, sps->b_constraint_set0 );
  191.     bs_write( s, 1, sps->b_constraint_set1 );
  192.     bs_write( s, 1, sps->b_constraint_set2 );
  193.     bs_write( s, 5, 0 );    /* reserved */
  194.     bs_write( s, 8, sps->i_level_idc );
  195.     bs_write_ue( s, sps->i_id );
  196.     if( sps->i_profile_idc >= PROFILE_HIGH )
  197.     {
  198.         bs_write_ue( s, 1 ); // chroma_format_idc = 4:2:0
  199.         bs_write_ue( s, 0 ); // bit_depth_luma_minus8
  200.         bs_write_ue( s, 0 ); // bit_depth_chroma_minus8
  201.         bs_write( s, 1, sps->b_qpprime_y_zero_transform_bypass );
  202.         bs_write( s, 1, 0 ); // seq_scaling_matrix_present_flag
  203.     }
  204.     bs_write_ue( s, sps->i_log2_max_frame_num - 4 );
  205.     bs_write_ue( s, sps->i_poc_type );
  206.     if( sps->i_poc_type == 0 )
  207.     {
  208.         bs_write_ue( s, sps->i_log2_max_poc_lsb - 4 );
  209.     }
  210.     else if( sps->i_poc_type == 1 )
  211.     {
  212.         int i;
  213.         bs_write( s, 1, sps->b_delta_pic_order_always_zero );
  214.         bs_write_se( s, sps->i_offset_for_non_ref_pic );
  215.         bs_write_se( s, sps->i_offset_for_top_to_bottom_field );
  216.         bs_write_ue( s, sps->i_num_ref_frames_in_poc_cycle );
  217.         for( i = 0; i < sps->i_num_ref_frames_in_poc_cycle; i++ )
  218.         {
  219.             bs_write_se( s, sps->i_offset_for_ref_frame[i] );
  220.         }
  221.     }
  222.     bs_write_ue( s, sps->i_num_ref_frames );
  223.     bs_write( s, 1, sps->b_gaps_in_frame_num_value_allowed );
  224.     bs_write_ue( s, sps->i_mb_width - 1 );
  225.     if (sps->b_frame_mbs_only)
  226.     {
  227.         bs_write_ue( s, sps->i_mb_height - 1);
  228.     }
  229.     else // interlaced
  230.     {
  231.         bs_write_ue( s, sps->i_mb_height/2 - 1);
  232.     }
  233.     bs_write( s, 1, sps->b_frame_mbs_only );
  234.     if( !sps->b_frame_mbs_only )
  235.     {
  236.         bs_write( s, 1, sps->b_mb_adaptive_frame_field );
  237.     }
  238.     bs_write( s, 1, sps->b_direct8x8_inference );
  239.     bs_write( s, 1, sps->b_crop );
  240.     if( sps->b_crop )
  241.     {
  242.         bs_write_ue( s, sps->crop.i_left   / 2 );
  243.         bs_write_ue( s, sps->crop.i_right  / 2 );
  244.         bs_write_ue( s, sps->crop.i_top    / 2 );
  245.         bs_write_ue( s, sps->crop.i_bottom / 2 );
  246.     }
  247.     bs_write( s, 1, sps->b_vui );
  248.     if( sps->b_vui )
  249.     {
  250.         bs_write1( s, sps->vui.b_aspect_ratio_info_present );
  251.         if( sps->vui.b_aspect_ratio_info_present )
  252.         {
  253.             int i;
  254.             static const struct { int w, h; int sar; } sar[] =
  255.             {
  256.                 { 1,   1, 1 }, { 12, 11, 2 }, { 10, 11, 3 }, { 16, 11, 4 },
  257.                 { 40, 33, 5 }, { 24, 11, 6 }, { 20, 11, 7 }, { 32, 11, 8 },
  258.                 { 80, 33, 9 }, { 18, 11, 10}, { 15, 11, 11}, { 64, 33, 12},
  259.                 { 160,99, 13}, { 0, 0, -1 }
  260.             };
  261.             for( i = 0; sar[i].sar != -1; i++ )
  262.             {
  263.                 if( sar[i].w == sps->vui.i_sar_width &&
  264.                     sar[i].h == sps->vui.i_sar_height )
  265.                     break;
  266.             }
  267.             if( sar[i].sar != -1 )
  268.             {
  269.                 bs_write( s, 8, sar[i].sar );
  270.             }
  271.             else
  272.             {
  273.                 bs_write( s, 8, 255);   /* aspect_ratio_idc (extended) */
  274.                 bs_write( s, 16, sps->vui.i_sar_width );
  275.                 bs_write( s, 16, sps->vui.i_sar_height );
  276.             }
  277.         }
  278.         bs_write1( s, sps->vui.b_overscan_info_present );
  279.         if( sps->vui.b_overscan_info_present )
  280.             bs_write1( s, sps->vui.b_overscan_info );
  281.         bs_write1( s, sps->vui.b_signal_type_present );
  282.         if( sps->vui.b_signal_type_present )
  283.         {
  284.             bs_write( s, 3, sps->vui.i_vidformat );
  285.             bs_write1( s, sps->vui.b_fullrange );
  286.             bs_write1( s, sps->vui.b_color_description_present );
  287.             if( sps->vui.b_color_description_present )
  288.             {
  289.                 bs_write( s, 8, sps->vui.i_colorprim );
  290.                 bs_write( s, 8, sps->vui.i_transfer );
  291.                 bs_write( s, 8, sps->vui.i_colmatrix );
  292.             }
  293.         }
  294.         bs_write1( s, sps->vui.b_chroma_loc_info_present );
  295.         if( sps->vui.b_chroma_loc_info_present )
  296.         {
  297.             bs_write_ue( s, sps->vui.i_chroma_loc_top );
  298.             bs_write_ue( s, sps->vui.i_chroma_loc_bottom );
  299.         }
  300.         bs_write1( s, sps->vui.b_timing_info_present );
  301.         if( sps->vui.b_timing_info_present )
  302.         {
  303.             bs_write32( s, sps->vui.i_num_units_in_tick );
  304.             bs_write32( s, sps->vui.i_time_scale );
  305.             bs_write1( s, sps->vui.b_fixed_frame_rate );
  306.         }
  307.         bs_write1( s, 0 );      /* nal_hrd_parameters_present_flag */
  308.         bs_write1( s, 0 );      /* vcl_hrd_parameters_present_flag */
  309.         bs_write1( s, 0 );      /* pic_struct_present_flag */
  310.         bs_write1( s, sps->vui.b_bitstream_restriction );
  311.         if( sps->vui.b_bitstream_restriction )
  312.         {
  313.             bs_write1( s, sps->vui.b_motion_vectors_over_pic_boundaries );
  314.             bs_write_ue( s, sps->vui.i_max_bytes_per_pic_denom );
  315.             bs_write_ue( s, sps->vui.i_max_bits_per_mb_denom );
  316.             bs_write_ue( s, sps->vui.i_log2_max_mv_length_horizontal );
  317.             bs_write_ue( s, sps->vui.i_log2_max_mv_length_vertical );
  318.             bs_write_ue( s, sps->vui.i_num_reorder_frames );
  319.             bs_write_ue( s, sps->vui.i_max_dec_frame_buffering );
  320.         }
  321.     }
  322.     bs_rbsp_trailing( s );
  323. }
  324. void x264_pps_init( x264_pps_t *pps, int i_id, x264_param_t *param, x264_sps_t *sps )
  325. {
  326.     int i, j;
  327.     pps->i_id = i_id;
  328.     pps->i_sps_id = sps->i_id;
  329.     pps->b_cabac = param->b_cabac;
  330.     pps->b_pic_order = 0;
  331.     pps->i_num_slice_groups = 1;
  332.     pps->i_num_ref_idx_l0_active = 1;
  333.     pps->i_num_ref_idx_l1_active = 1;
  334.     pps->b_weighted_pred = 0;
  335.     pps->b_weighted_bipred = param->analyse.b_weighted_bipred ? 2 : 0;
  336.     pps->i_pic_init_qp = param->rc.i_rc_method == X264_RC_ABR ? 26 : param->rc.i_qp_constant;
  337.     pps->i_pic_init_qs = 26;
  338.     pps->i_chroma_qp_index_offset = param->analyse.i_chroma_qp_offset;
  339.     pps->b_deblocking_filter_control = 1;
  340.     pps->b_constrained_intra_pred = 0;
  341.     pps->b_redundant_pic_cnt = 0;
  342.     pps->b_transform_8x8_mode = param->analyse.b_transform_8x8 ? 1 : 0;
  343.     pps->i_cqm_preset = param->i_cqm_preset;
  344.     switch( pps->i_cqm_preset )
  345.     {
  346.     case X264_CQM_FLAT:
  347.         for( i = 0; i < 6; i++ )
  348.             pps->scaling_list[i] = x264_cqm_flat16;
  349.         break;
  350.     case X264_CQM_JVT:
  351.         for( i = 0; i < 6; i++ )
  352.             pps->scaling_list[i] = x264_cqm_jvt[i];
  353.         break;
  354.     case X264_CQM_CUSTOM:
  355.         /* match the transposed DCT & zigzag */
  356.         transpose( param->cqm_4iy, 4 );
  357.         transpose( param->cqm_4ic, 4 );
  358.         transpose( param->cqm_4py, 4 );
  359.         transpose( param->cqm_4pc, 4 );
  360.         transpose( param->cqm_8iy, 8 );
  361.         transpose( param->cqm_8py, 8 );
  362.         pps->scaling_list[CQM_4IY] = param->cqm_4iy;
  363.         pps->scaling_list[CQM_4IC] = param->cqm_4ic;
  364.         pps->scaling_list[CQM_4PY] = param->cqm_4py;
  365.         pps->scaling_list[CQM_4PC] = param->cqm_4pc;
  366.         pps->scaling_list[CQM_8IY+4] = param->cqm_8iy;
  367.         pps->scaling_list[CQM_8PY+4] = param->cqm_8py;
  368.         for( i = 0; i < 6; i++ )
  369.             for( j = 0; j < (i<4?16:64); j++ )
  370.                 if( pps->scaling_list[i][j] == 0 )
  371.                     pps->scaling_list[i] = x264_cqm_jvt[i];
  372.         break;
  373.     }
  374. }
  375. void x264_pps_write( bs_t *s, x264_pps_t *pps )
  376. {
  377.     bs_write_ue( s, pps->i_id );
  378.     bs_write_ue( s, pps->i_sps_id );
  379.     bs_write( s, 1, pps->b_cabac );
  380.     bs_write( s, 1, pps->b_pic_order );
  381.     bs_write_ue( s, pps->i_num_slice_groups - 1 );
  382.     bs_write_ue( s, pps->i_num_ref_idx_l0_active - 1 );
  383.     bs_write_ue( s, pps->i_num_ref_idx_l1_active - 1 );
  384.     bs_write( s, 1, pps->b_weighted_pred );
  385.     bs_write( s, 2, pps->b_weighted_bipred );
  386.     bs_write_se( s, pps->i_pic_init_qp - 26 );
  387.     bs_write_se( s, pps->i_pic_init_qs - 26 );
  388.     bs_write_se( s, pps->i_chroma_qp_index_offset );
  389.     bs_write( s, 1, pps->b_deblocking_filter_control );
  390.     bs_write( s, 1, pps->b_constrained_intra_pred );
  391.     bs_write( s, 1, pps->b_redundant_pic_cnt );
  392.     if( pps->b_transform_8x8_mode || pps->i_cqm_preset != X264_CQM_FLAT )
  393.     {
  394.         bs_write( s, 1, pps->b_transform_8x8_mode );
  395.         bs_write( s, 1, (pps->i_cqm_preset != X264_CQM_FLAT) );
  396.         if( pps->i_cqm_preset != X264_CQM_FLAT )
  397.         {
  398.             scaling_list_write( s, pps, CQM_4IY );
  399.             scaling_list_write( s, pps, CQM_4IC );
  400.             bs_write( s, 1, 0 ); // Cr = Cb
  401.             scaling_list_write( s, pps, CQM_4PY );
  402.             scaling_list_write( s, pps, CQM_4PC );
  403.             bs_write( s, 1, 0 ); // Cr = Cb
  404.             if( pps->b_transform_8x8_mode )
  405.             {
  406.                 scaling_list_write( s, pps, CQM_8IY+4 );
  407.                 scaling_list_write( s, pps, CQM_8PY+4 );
  408.             }
  409.         }
  410.         bs_write_se( s, pps->i_chroma_qp_index_offset );
  411.     }
  412.     bs_rbsp_trailing( s );
  413. }
  414. void x264_sei_version_write( x264_t *h, bs_t *s )
  415. {
  416.     int i;
  417.     // random ID number generated according to ISO-11578
  418.     const uint8_t uuid[16] = {
  419.         0xdc, 0x45, 0xe9, 0xbd, 0xe6, 0xd9, 0x48, 0xb7,
  420.         0x96, 0x2c, 0xd8, 0x20, 0xd9, 0x23, 0xee, 0xef
  421.     };
  422.     char *opts = x264_param2string( &h->param, 0 );
  423.     char *version = x264_malloc( 200 + strlen(opts) );
  424.     int length;
  425.     sprintf( version, "x264 - core %d%s - H.264/MPEG-4 AVC codec - "
  426.              "Copyleft 2003-2008 - http://www.videolan.org/x264.html - options: %s",
  427.              X264_BUILD, X264_VERSION, opts );
  428.     length = strlen(version)+1+16;
  429.     bs_write( s, 8, 0x5 ); // payload_type = user_data_unregistered
  430.     // payload_size
  431.     for( i = 0; i <= length-255; i += 255 )
  432.         bs_write( s, 8, 255 );
  433.     bs_write( s, 8, length-i );
  434.     for( i = 0; i < 16; i++ )
  435.         bs_write( s, 8, uuid[i] );
  436.     for( i = 0; i < length-16; i++ )
  437.         bs_write( s, 8, version[i] );
  438.     bs_rbsp_trailing( s );
  439.     x264_free( opts );
  440.     x264_free( version );
  441. }
  442. const x264_level_t x264_levels[] =
  443. {
  444.     { 10,   1485,    99,   152064,     64,    175,  64, 64,  0, 0, 0, 1 },
  445. //  {"1b",  1485,    99,   152064,    128,    350,  64, 64,  0, 0, 0, 1 },
  446.     { 11,   3000,   396,   345600,    192,    500, 128, 64,  0, 0, 0, 1 },
  447.     { 12,   6000,   396,   912384,    384,   1000, 128, 64,  0, 0, 0, 1 },
  448.     { 13,  11880,   396,   912384,    768,   2000, 128, 64,  0, 0, 0, 1 },
  449.     { 20,  11880,   396,   912384,   2000,   2000, 128, 64,  0, 0, 0, 1 },
  450.     { 21,  19800,   792,  1824768,   4000,   4000, 256, 64,  0, 0, 0, 0 },
  451.     { 22,  20250,  1620,  3110400,   4000,   4000, 256, 64,  0, 0, 0, 0 },
  452.     { 30,  40500,  1620,  3110400,  10000,  10000, 256, 32, 22, 0, 1, 0 },
  453.     { 31, 108000,  3600,  6912000,  14000,  14000, 512, 16, 60, 1, 1, 0 },
  454.     { 32, 216000,  5120,  7864320,  20000,  20000, 512, 16, 60, 1, 1, 0 },
  455.     { 40, 245760,  8192, 12582912,  20000,  25000, 512, 16, 60, 1, 1, 0 },
  456.     { 41, 245760,  8192, 12582912,  50000,  62500, 512, 16, 24, 1, 1, 0 },
  457.     { 42, 522240,  8704, 13369344,  50000,  62500, 512, 16, 24, 1, 1, 1 },
  458.     { 50, 589824, 22080, 42393600, 135000, 135000, 512, 16, 24, 1, 1, 1 },
  459.     { 51, 983040, 36864, 70778880, 240000, 240000, 512, 16, 24, 1, 1, 1 },
  460.     { 0 }
  461. };
  462. #define ERROR(...)
  463. {
  464.     if( verbose )
  465.         x264_log( h, X264_LOG_WARNING, __VA_ARGS__ );
  466.     ret = 1;
  467. }
  468. int x264_validate_levels( x264_t *h, int verbose )
  469. {
  470.     int ret = 0;
  471.     int mbs = h->sps->i_mb_width * h->sps->i_mb_height;
  472.     int dpb = mbs * 384 * h->sps->i_num_ref_frames;
  473.     const x264_level_t *l = x264_levels;
  474.     while( l->level_idc != 0 && l->level_idc != h->param.i_level_idc )
  475.         l++;
  476.     if( l->frame_size < mbs
  477.         || l->frame_size*8 < h->sps->i_mb_width * h->sps->i_mb_width
  478.         || l->frame_size*8 < h->sps->i_mb_height * h->sps->i_mb_height )
  479.         ERROR( "frame MB size (%dx%d) > level limit (%d)n",
  480.                h->sps->i_mb_width, h->sps->i_mb_height, l->frame_size );
  481.     if( dpb > l->dpb )
  482.         ERROR( "DPB size (%d frames, %d bytes) > level limit (%d frames, %d bytes)n",
  483.                 h->sps->i_num_ref_frames, dpb, (int)(l->dpb / (384*mbs)), l->dpb );
  484. #define CHECK( name, limit, val ) 
  485.     if( (val) > (limit) ) 
  486.         ERROR( name " (%d) > level limit (%d)n", (int)(val), (limit) );
  487.     CHECK( "VBV bitrate", l->bitrate, h->param.rc.i_vbv_max_bitrate );
  488.     CHECK( "VBV buffer", l->cpb, h->param.rc.i_vbv_buffer_size );
  489.     CHECK( "MV range", l->mv_range, h->param.analyse.i_mv_range );
  490.     CHECK( "interlaced", !l->frame_only, h->param.b_interlaced );
  491.     if( h->param.i_fps_den > 0 )
  492.         CHECK( "MB rate", l->mbps, (int64_t)mbs * h->param.i_fps_num / h->param.i_fps_den );
  493.     if( h->sps->b_direct8x8_inference < l->direct8x8 )
  494.         ERROR( "direct 8x8 inference (0) < level requirement (1)n" );
  495.     /* TODO check the rest of the limits */
  496.     return ret;
  497. }