set.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:21k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

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