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

/frameworks/av/media/libstagefright/
H A DMPEG2TSWriter.cpp711 // PID = b0000000000000 (13 bits)
763 // PID = b0 0001 1110 0000 (13 bits) [0x1e0]
840 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
874 const unsigned PID = 0x1e0 + sourceIndex + 1; local
902 *ptr++ = 0x40 | (PID >> 8);
903 *ptr++ = PID & 0xff;
946 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
959 *ptr++ = 0x00 | (PID >> 8);
960 *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.cpp361 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
368 ALOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType);
535 ALOGV("new stream PID 0x%02x, type 0x%02x", elementaryPID, streamType);
915 ALOGV("Stream PID 0x%08x of type 0x%02x now has data.",
974 mPSISections.add(0 /* PID */, new PSISection);
1091 ABitReader *br, unsigned PID,
1094 ssize_t sectionIndex = mPSISections.indexOfKey(PID);
1121 if (PID == 0) {
1128 PID, &sectionBits, &err)) {
1141 mPSISections.removeItem(PID);
1090 parsePID( ABitReader *br, unsigned PID, unsigned continuity_counter, unsigned payload_unit_start_indicator) argument
1175 parseAdaptationField(ABitReader *br, unsigned PID) argument
1246 unsigned PID = br->getBits(13); local
[all...]

Completed in 1422 milliseconds