Home
last modified time | relevance | path

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

/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/chromium_org/content/common/gpu/media/
Dh264_parser.cc579 READ_BITS_OR_RETURN(8, &sps->profile_idc); in ParseSPS()
586 if (sps->profile_idc == 100 || sps->profile_idc == 110 || in ParseSPS()
587 sps->profile_idc == 122 || sps->profile_idc == 244 || in ParseSPS()
588 sps->profile_idc == 44 || sps->profile_idc == 83 || in ParseSPS()
589 sps->profile_idc == 86 || sps->profile_idc == 118 || in ParseSPS()
590 sps->profile_idc == 128) { in ParseSPS()
Dh264_parser.h51 int profile_idc; member
/external/chromium_org/media/mp2t/
Des_parser_h264.cc362 int profile_idc; in ProcessSPS() local
368 RCHECK(bit_reader.ReadBits(8, &profile_idc)); in ProcessSPS()
490 DVLOG(1) << "Profile IDC: " << profile_idc; in ProcessSPS()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DH264TrackImpl.java111 avcConfigurationBox.setAvcProfileIndication(seqParameterSet.profile_idc); in parse()