Home
last modified time | relevance | path

Searched refs:profile_idc (Results 1 – 4 of 4) 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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DH264TrackImpl.java111 avcConfigurationBox.setAvcProfileIndication(seqParameterSet.profile_idc); in parse()