Searched defs:PID (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp698 // PID = b0000000000000 (13 bits)
750 // PID = b0 0001 1110 0000 (13 bits) [0x1e0]
827 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
861 const unsigned PID = 0x1e0 + sourceIndex + 1; local
889 *ptr++ = 0x40 | (PID >> 8);
890 *ptr++ = PID & 0xff;
933 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
946 *ptr++ = 0x00 | (PID >> 8);
947 *ptr++ = PID & 0xff;
/frameworks/av/media/libstagefright/wifi-display/source/
H A DTSPacketizer.cpp37 unsigned PID, unsigned streamType, unsigned streamID);
39 unsigned PID() const;
88 unsigned PID, unsigned streamType, unsigned streamID)
90 mPID(PID),
130 unsigned TSPacketizer::Track::PID() const { function in class:android::TSPacketizer::Track
419 unsigned PID = PIDStart; local
429 ++PID;
438 sp<Track> track = new Track(format, PID, streamType, streamID);
486 // PID
651 // PID
86 Track( const sp<AMessage> &format, unsigned PID, unsigned streamType, unsigned streamID) argument
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp338 // get the next PID for temp[i]->type() in the new PID map
341 // change the PID of the stream, and add it back
345 // removed the used PID
464 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
471 ALOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType);
641 ALOGV("new stream PID 0x%02x, type 0x%02x", elementaryPID, streamType);
1082 ALOGV("Stream PID 0x%08x of type 0x%02x now has data.",
1161 mPSISections.add(0 /* PID */, new PSISection);
1301 ABitReader *br, unsigned PID,
1300 parsePID( ABitReader *br, unsigned PID, unsigned continuity_counter, unsigned payload_unit_start_indicator, SyncEvent *event) argument
1393 parseAdaptationField(ABitReader *br, unsigned PID) argument
1471 unsigned PID = br->getBits(13); local
[all...]

Completed in 469 milliseconds