Searched defs:nal_unit_type (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/media/filters/
H A Dh264_to_annex_b_bitstream_converter.cc18 static bool IsAccessUnitBoundaryNal(int nal_unit_type) { argument
21 if (nal_unit_type == 6 || // Supplemental enhancement information
22 nal_unit_type == 7 || // Picture parameter set
23 nal_unit_type == 8 || // Sequence parameter set
24 nal_unit_type == 9 || // Access unit delimiter
25 (nal_unit_type >= 14 && nal_unit_type <= 18)) { // Reserved types
115 // five least significant bits of first NAL unit byte signify nal_unit_type
116 int nal_unit_type = *input & 0x1F; local
118 IsAccessUnitBoundaryNal(nal_unit_type)) {
197 int nal_unit_type = *inscan & 0x1F; local
[all...]
H A Dh264_parser.h59 int nal_unit_type; member in struct:media::H264NALU
/external/chromium_org/media/formats/mp2t/
H A Des_parser_h264_unittest.cc95 int nal_unit_type = stream_[offset] & 0x1f; local
98 if (nal_unit_type == H264NALU::kIDRSlice ||
99 nal_unit_type == H264NALU::kNonIDRSlice) {
/external/chromium_org/media/formats/mp4/
H A Davc_unittest.cc114 const std::string& nal_unit_type) {
119 buffer->push_back(StringToNALUType(nal_unit_type));
173 ss << NALUTypeToString(nalu.nal_unit_type);
113 WriteStartCodeAndNALUType(std::vector<uint8>* buffer, const std::string& nal_unit_type) argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DH264TrackImpl.java250 int nal_unit_type = type & 0x1f;
251 LOG.fine("Found startcode at " + (pos -4) + " Type: " + nal_unit_type + " ref idc: " + nal_ref_idc + " (size " + size + ")");
252 NALActions action = handleNALUnit(nal_ref_idc, nal_unit_type, data);
267 if (nal_unit_type == 5) {
280 if (nal_unit_type == 5) { // IDR Picture
344 private NALActions handleNALUnit(int nal_ref_idc, int nal_unit_type, byte[] data) throws IOException { argument
346 switch (nal_unit_type) {
395 System.err.println("Unknown NAL unit type: " + nal_unit_type);
/external/chromium_org/media/base/
H A Dcontainer_names.cc576 // Extract nal_ref_idc and nal_unit_type.
578 int nal_unit_type = ReadBits(&reader, 5); local
580 switch (nal_unit_type) {

Completed in 256 milliseconds