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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * set.h: h264 encoder
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *          Laurent Aimar <fenrir@via.ecp.fr>
  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. #ifndef X264_SET_H
  24. #define X264_SET_H
  25. enum profile_e
  26. {
  27.     PROFILE_BASELINE = 66,
  28.     PROFILE_MAIN     = 77,
  29.     PROFILE_EXTENTED = 88,
  30.     PROFILE_HIGH    = 100,
  31.     PROFILE_HIGH10  = 110,
  32.     PROFILE_HIGH422 = 122,
  33.     PROFILE_HIGH444 = 144
  34. };
  35. enum cqm4_e
  36. {
  37.     CQM_4IY = 0,
  38.     CQM_4PY = 1,
  39.     CQM_4IC = 2,
  40.     CQM_4PC = 3
  41. };
  42. enum cqm8_e
  43. {
  44.     CQM_8IY = 0,
  45.     CQM_8PY = 1
  46. };
  47. typedef struct
  48. {
  49.     int i_id;
  50.     int i_profile_idc;
  51.     int i_level_idc;
  52.     int b_constraint_set0;
  53.     int b_constraint_set1;
  54.     int b_constraint_set2;
  55.     int i_log2_max_frame_num;
  56.     int i_poc_type;
  57.     /* poc 0 */
  58.     int i_log2_max_poc_lsb;
  59.     /* poc 1 */
  60.     int b_delta_pic_order_always_zero;
  61.     int i_offset_for_non_ref_pic;
  62.     int i_offset_for_top_to_bottom_field;
  63.     int i_num_ref_frames_in_poc_cycle;
  64.     int i_offset_for_ref_frame[256];
  65.     int i_num_ref_frames;
  66.     int b_gaps_in_frame_num_value_allowed;
  67.     int i_mb_width;
  68.     int i_mb_height;
  69.     int b_frame_mbs_only;
  70.     int b_mb_adaptive_frame_field;
  71.     int b_direct8x8_inference;
  72.     int b_crop;
  73.     struct
  74.     {
  75.         int i_left;
  76.         int i_right;
  77.         int i_top;
  78.         int i_bottom;
  79.     } crop;
  80.     int b_vui;
  81.     struct
  82.     {
  83.         int b_aspect_ratio_info_present;
  84.         int i_sar_width;
  85.         int i_sar_height;
  86.         int b_overscan_info_present;
  87.         int b_overscan_info;
  88.         int b_signal_type_present;
  89.         int i_vidformat;
  90.         int b_fullrange;
  91.         int b_color_description_present;
  92.         int i_colorprim;
  93.         int i_transfer;
  94.         int i_colmatrix;
  95.         int b_chroma_loc_info_present;
  96.         int i_chroma_loc_top;
  97.         int i_chroma_loc_bottom;
  98.         int b_timing_info_present;
  99.         int i_num_units_in_tick;
  100.         int i_time_scale;
  101.         int b_fixed_frame_rate;
  102.         int b_bitstream_restriction;
  103.         int b_motion_vectors_over_pic_boundaries;
  104.         int i_max_bytes_per_pic_denom;
  105.         int i_max_bits_per_mb_denom;
  106.         int i_log2_max_mv_length_horizontal;
  107.         int i_log2_max_mv_length_vertical;
  108.         int i_num_reorder_frames;
  109.         int i_max_dec_frame_buffering;
  110.         /* FIXME to complete */
  111.     } vui;
  112.     int b_qpprime_y_zero_transform_bypass;
  113. } x264_sps_t;
  114. typedef struct
  115. {
  116.     int i_id;
  117.     int i_sps_id;
  118.     int b_cabac;
  119.     int b_pic_order;
  120.     int i_num_slice_groups;
  121.     int i_num_ref_idx_l0_active;
  122.     int i_num_ref_idx_l1_active;
  123.     int b_weighted_pred;
  124.     int b_weighted_bipred;
  125.     int i_pic_init_qp;
  126.     int i_pic_init_qs;
  127.     int i_chroma_qp_index_offset;
  128.     int b_deblocking_filter_control;
  129.     int b_constrained_intra_pred;
  130.     int b_redundant_pic_cnt;
  131.     int b_transform_8x8_mode;
  132.     int i_cqm_preset;
  133.     const uint8_t *scaling_list[6]; /* could be 8, but we don't allow separate Cb/Cr lists */
  134. } x264_pps_t;
  135. /* default quant matrices */
  136. static const uint8_t x264_cqm_jvt4i[16] =
  137. {
  138.       6,13,20,28,
  139.      13,20,28,32,
  140.      20,28,32,37,
  141.      28,32,37,42
  142. };
  143. static const uint8_t x264_cqm_jvt4p[16] =
  144. {
  145.     10,14,20,24,
  146.     14,20,24,27,
  147.     20,24,27,30,
  148.     24,27,30,34
  149. };
  150. static const uint8_t x264_cqm_jvt8i[64] =
  151. {
  152.      6,10,13,16,18,23,25,27,
  153.     10,11,16,18,23,25,27,29,
  154.     13,16,18,23,25,27,29,31,
  155.     16,18,23,25,27,29,31,33,
  156.     18,23,25,27,29,31,33,36,
  157.     23,25,27,29,31,33,36,38,
  158.     25,27,29,31,33,36,38,40,
  159.     27,29,31,33,36,38,40,42
  160. };
  161. static const uint8_t x264_cqm_jvt8p[64] =
  162. {
  163.      9,13,15,17,19,21,22,24,
  164.     13,13,17,19,21,22,24,25,
  165.     15,17,19,21,22,24,25,27,
  166.     17,19,21,22,24,25,27,28,
  167.     19,21,22,24,25,27,28,30,
  168.     21,22,24,25,27,28,30,32,
  169.     22,24,25,27,28,30,32,33,
  170.     24,25,27,28,30,32,33,35
  171. };
  172. static const uint8_t x264_cqm_flat16[64] =
  173. {
  174.     16,16,16,16,16,16,16,16,
  175.     16,16,16,16,16,16,16,16,
  176.     16,16,16,16,16,16,16,16,
  177.     16,16,16,16,16,16,16,16,
  178.     16,16,16,16,16,16,16,16,
  179.     16,16,16,16,16,16,16,16,
  180.     16,16,16,16,16,16,16,16,
  181.     16,16,16,16,16,16,16,16
  182. };
  183. static const uint8_t * const x264_cqm_jvt[6] =
  184. {
  185.     x264_cqm_jvt4i, x264_cqm_jvt4p,
  186.     x264_cqm_jvt4i, x264_cqm_jvt4p,
  187.     x264_cqm_jvt8i, x264_cqm_jvt8p
  188. };
  189. int  x264_cqm_init( x264_t *h );
  190. void x264_cqm_delete( x264_t *h );
  191. int  x264_cqm_parse_file( x264_t *h, const char *filename );
  192. #endif