Home
last modified time | relevance | path

Searched refs:profile_idc (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/
Dh264_sps_parser.cc80 uint8_t profile_idc; in Parse() local
81 RETURN_FALSE_ON_FAIL(parser.ReadUInt8(&profile_idc)); in Parse()
90 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 || in Parse()
91 profile_idc == 244 || profile_idc == 44 || profile_idc == 83 || in Parse()
92 profile_idc == 86 || profile_idc == 118 || profile_idc == 128 || in Parse()
93 profile_idc == 138 || profile_idc == 139 || profile_idc == 134) { in Parse()
Dh264_bitstream_parser.cc116 uint8_t profile_idc; in ParseSpsNalu() local
117 RETURN_FALSE_ON_FAIL(sps_parser.ReadUInt8(&profile_idc)); in ParseSpsNalu()
127 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 || in ParseSpsNalu()
128 profile_idc == 244 || profile_idc == 44 || profile_idc == 83 || in ParseSpsNalu()
129 profile_idc == 86 || profile_idc == 118 || profile_idc == 128 || in ParseSpsNalu()
130 profile_idc == 138 || profile_idc == 139 || profile_idc == 134) { in ParseSpsNalu()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
DSeqParameterSet.java54 public int profile_idc; field in SeqParameterSet
81 sps.profile_idc = (int) reader.readNBit(8, "SPS: profile_idc"); in read()
94 if (sps.profile_idc == 100 || sps.profile_idc == 110 in read()
95 || sps.profile_idc == 122 || sps.profile_idc == 144) { in read()
313 writer.writeNBit(profile_idc, 8, "SPS: profile_idc"); in write()
322 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 in write()
323 || profile_idc == 144) { in write()
532 ", \n profile_idc=" + profile_idc + in toString()
/external/mesa3d/src/gallium/state_trackers/omx_bellagio/
Dvid_dec_h264.c262 unsigned profile_idc, level_idc; in seq_parameter_set() local
266 profile_idc = vl_rbsp_u(rbsp, 8); in seq_parameter_set()
302 if (profile_idc == 100 || profile_idc == 110 || profile_idc == 122 || profile_idc == 244 || in seq_parameter_set()
303 profile_idc == 44 || profile_idc == 83 || profile_idc == 86 || profile_idc == 118 || in seq_parameter_set()
304 profile_idc == 128 || profile_idc == 138) { in seq_parameter_set()
337 } else if (profile_idc == 183) in seq_parameter_set()
/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_vcn_enc_1_2.c272 …enc->enc_pic.spec_misc.profile_idc = profiles[enc->base.profile - PIPE_VIDEO_PROFILE_MPEG4_AVC_BAS… in radeon_enc_spec_misc()
281 RADEON_ENC_CS(enc->enc_pic.spec_misc.profile_idc); in radeon_enc_spec_misc()
376 radeon_enc_code_fixed_bits(enc, enc->enc_pic.spec_misc.profile_idc, 8); in radeon_enc_nalu_sps()
381 …if(enc->enc_pic.spec_misc.profile_idc == 100 || enc->enc_pic.spec_misc.profile_idc == 110 || enc->… in radeon_enc_nalu_sps()
382 …enc->enc_pic.spec_misc.profile_idc == 244 || enc->enc_pic.spec_misc.profile_idc == 44 || enc->enc_… in radeon_enc_nalu_sps()
383 …enc->enc_pic.spec_misc.profile_idc == 86 || enc->enc_pic.spec_misc.profile_idc == 118 || enc->enc_… in radeon_enc_nalu_sps()
384 enc->enc_pic.spec_misc.profile_idc == 138) { in radeon_enc_nalu_sps()
Dradeon_vcn_enc.h191 uint32_t profile_idc; member
/external/v4l2_codec2/vda/
Dh264_parser.cc902 READ_BITS_OR_RETURN(8, &sps->profile_idc); in ParseSPS()
914 if (sps->profile_idc == 100 || sps->profile_idc == 110 || in ParseSPS()
915 sps->profile_idc == 122 || sps->profile_idc == 244 || in ParseSPS()
916 sps->profile_idc == 44 || sps->profile_idc == 83 || in ParseSPS()
917 sps->profile_idc == 86 || sps->profile_idc == 118 || in ParseSPS()
918 sps->profile_idc == 128) { in ParseSPS()
Dh264_parser.h104 int profile_idc; member
Dh264_decoder.cc1059 switch (sps->profile_idc) { in UpdateMaxNumReorderFrames()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DH264TrackImpl.java111 avcConfigurationBox.setAvcProfileIndication(seqParameterSet.profile_idc); in parse()