HomeSort by relevance Sort by last modified time
    Searched defs:profile_idc (Results 1 - 17 of 17) sorted by null

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_sps_parser.cc 78 // profile_idc: u(8). We need it to determine if we need to read/skip chroma
80 uint8_t profile_idc; local
81 RETURN_FALSE_ON_FAIL(parser.ReadUInt8(&profile_idc));
89 // See if profile_idc has chroma format information.
90 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 ||
91 profile_idc == 244 || profile_idc == 44 || profile_idc == 83 |
    [all...]
h264_bitstream_parser.cc 115 // profile_idc: u(8).
116 uint8_t profile_idc; local
117 RETURN_FALSE_ON_FAIL(sps_parser.ReadUInt8(&profile_idc));
126 // See if profile_idc has chroma format information.
127 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 ||
128 profile_idc == 244 || profile_idc == 44 || profile_idc == 83 |
    [all...]
  /hardware/intel/common/libmix/videoencoder/
bitstream.h 175 int profile_idc = 0; local
179 profile_idc = PROFILE_IDC_HIGH;
183 profile_idc = PROFILE_IDC_MAIN;
186 profile_idc = PROFILE_IDC_BASELINE;
190 bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */
199 if ( profile_idc == PROFILE_IDC_HIGH) {
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_video_config_parser.cpp 109 int32 profile_idc, level_idc = 0; local
145 (int*) & profile_idc,
153 aOutputs->profile = (uint32)profile_idc;
  /hardware/intel/img/psb_video/src/
vsp_VPP.h 43 uint32_t profile_idc; // BE_PROFILEIDC member in struct:context_VPP_s
pnw_H264.c 126 uint32_t profile_idc; // BE_PROFILEIDC member in struct:context_H264_s
438 ctx->profile_idc = 0;
443 ctx->profile_idc = 1;
449 ctx->profile_idc = 3;
739 REGIO_WRITE_FIELD_LITE(ctx->reg_SPS0, MSVDX_VEC_H264, CR_VEC_H264_BE_SPS0, BE_PROFILEIDC, ctx->profile_idc);
    [all...]
pnw_hostcode.h 299 uint8_t profile_idc; member in struct:context_ENC_s
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
SeqParameterSet.java 54 public int profile_idc; field in class:SeqParameterSet
81 sps.profile_idc = (int) reader.readNBit(8, "SPS: profile_idc");
94 if (sps.profile_idc == 100 || sps.profile_idc == 110
95 || sps.profile_idc == 122 || sps.profile_idc == 144) {
313 writer.writeNBit(profile_idc, 8, "SPS: profile_idc");
322 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 12
    [all...]
  /frameworks/av/media/libstagefright/
avc_utils.cpp 97 unsigned profile_idc = br.getBits(8); local
103 if (profile_idc == 100 || profile_idc == 110
104 || profile_idc == 122 || profile_idc == 244
105 || profile_idc == 44 || profile_idc == 83 || profile_idc == 86) {
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_loader.h 84 uint8 profile_idc; member in struct:_vbp_codec_data_h264
  /hardware/intel/common/libva/test/encode/
avcenc.c 883 int profile_idc = PROFILE_IDC_BASELINE; local
886 profile_idc = PROFILE_IDC_HIGH;
888 profile_idc = PROFILE_IDC_MAIN;
890 bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */
899 if ( profile_idc == PROFILE_IDC_HIGH) {
    [all...]
h264encode.c 300 int profile_idc = PROFILE_IDC_BASELINE; local
303 profile_idc = PROFILE_IDC_HIGH;
305 profile_idc = PROFILE_IDC_MAIN;
307 bitstream_put_ui(bs, profile_idc, 8); /* profile_idc */
316 if ( profile_idc == PROFILE_IDC_HIGH) {
    [all...]
  /hardware/intel/common/libva/test/transcode/
mpeg2transcode.cpp 2590 int profile_idc = PROFILE_IDC_BASELINE; local
    [all...]
  /hardware/intel/img/psb_headers/libmediaparser/mixvbp/vbp_manager/include/
vbp_loader.h 207 uint8 profile_idc; member in struct:_vbp_codec_data_h264
  /hardware/intel/img/psb_video/src/mrst/
psb_H264.c 111 uint32_t profile_idc; // BE_PROFILEIDC member in struct:context_H264_s
427 ctx->profile_idc = 0;
432 ctx->profile_idc = 1;
437 ctx->profile_idc = 3;
723 REGIO_WRITE_FIELD_LITE(ctx->reg_SPS0, MSVDX_VEC_H264, CR_VEC_H264_BE_SPS0, BE_PROFILEIDC, ctx->profile_idc);
    [all...]
lnc_hostcode.h 233 uint8_t profile_idc; member in struct:context_ENC_s
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/include/
h264.h 804 uint8_t profile_idc; // u(8), 0x77 for MP member in struct:_SPS_PAR_USED

Completed in 583 milliseconds