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

/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp710 // PID = b0000000000000 (13 bits)
762 // PID = b0 0001 1110 0000 (13 bits) [0x1e0]
839 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
873 const unsigned PID = 0x1e0 + sourceIndex + 1; local
901 *ptr++ = 0x40 | (PID >> 8);
902 *ptr++ = PID & 0xff;
945 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
958 *ptr++ = 0x00 | (PID >> 8);
959 *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.cpp353 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
360 ALOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType);
513 ALOGV("new stream PID 0x%02x, type 0x%02x", elementaryPID, streamType);
888 ALOGV("Stream PID 0x%08x of type 0x%02x now has data.",
941 mPSISections.add(0 /* PID */, new PSISection);
1056 ABitReader *br, unsigned PID,
1059 ssize_t sectionIndex = mPSISections.indexOfKey(PID);
1084 if (PID == 0) {
1091 PID, &sectionBits, &err)) {
1104 mPSISections.removeItem(PID);
1055 parsePID( ABitReader *br, unsigned PID, unsigned continuity_counter, unsigned payload_unit_start_indicator) argument
1138 parseAdaptationField(ABitReader *br, unsigned PID) argument
1206 unsigned PID = br->getBits(13); local
1263 updatePCR( unsigned PID, uint64_t PCR, size_t byteOffsetFromStart) argument
[all...]

Completed in 86 milliseconds