Home | History | Annotate | Download | only in source

Lines Matching defs:PID

37           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 {
419 unsigned PID = PIDStart;
429 ++PID;
438 sp<Track> track = new Track(format, PID, streamType, streamID);
486 // PID
651 // PID = b0000000000000 (13 bits)
714 // PID = kPID_PMT (13 bits)
791 *ptr++ = 0xe0 | (track->PID() >> 8);
792 *ptr++ = track->PID() & 0xff;
831 // PID = kPCR_PID (13 bits)
902 *ptr++ = 0x40 | (track->PID() >> 8);
903 *ptr++ = track->PID() & 0xff;
962 // PID = b0 0001 1110 ???? (13 bits) [0x1e0 + 1 + sourceIndex]
984 *ptr++ = 0x00 | (track->PID() >> 8);
985 *ptr++ = track->PID() & 0xff;