⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 umc_h264_pub.cpp

📁 audio-video-codecs.rar语音编解码器
💻 CPP
字号:
//
//               INTEL CORPORATION PROPRIETARY INFORMATION
//  This software is supplied under the terms of a license agreement or
//  nondisclosure agreement with Intel Corporation and may not be copied
//  or disclosed except in accordance with the terms of that agreement.
//        Copyright (c) 2004 - 2007 Intel Corporation. All Rights Reserved.
//

#include <string.h>
#include "umc_h264_pub.h"
#include "umc_h264_config.h"
#include <stdlib.h>

namespace UMC_H264_ENCODER
{

const H264MotionVector null_mv = {0};

H264VUIParams::H264VUIParams()
: aspect_ratio_info_present_flag(0),
  aspect_ratio_idc(0),
  sar_width(0),
  sar_height(0),
  overscan_info_present_flag(0),
  overscan_appropriate_flag(0),
  video_signal_type_present_flag(0),
  video_format(0),
  video_full_range_flag(0),
  colour_description_present_flag(0),
  colour_primaries(0),
  transfer_characteristics(0),
  matrix_coefficients(0),
  chroma_loc_info_present_flag(0),
  chroma_sample_loc_type_top_field(0),
  chroma_sample_loc_type_bottom_field(0),
  timing_info_present_flag(0),
  num_units_in_tick(0),
  time_scale(0),
  fixed_frame_rate_flag(0),
  nal_hrd_parameters_present_flag(0),
  vcl_hrd_parameters_present_flag(0),
  low_delay_hrd_flag(0),
  pic_struct_present_flag(0),
  bitstream_restriction_flag(0),
  motion_vectors_over_pic_boundaries_flag(0),
  max_bytes_per_pic_denom(0),
  max_bits_per_mb_denom(0),
  log2_max_mv_length_horizontal(0),
  log2_max_mv_length_vertical(0),
  num_reorder_frames(0),
  max_dec_frame_buffering(0)
{
}

H264VUIParams::~H264VUIParams()
{
}

} //namespace UMC_H264_ENCODER


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -