Home | History | Annotate | Download | only in mpeg2ts

Lines Matching defs:PID

62             unsigned pid, ABitReader *br, status_t *err);
64 // Pass to appropriate stream according to pid, and set event if it's a PES
68 unsigned pid, unsigned continuity_counter,
147 unsigned pid() const { return mElementaryPID; }
148 void setPID(unsigned pid) { mElementaryPID = pid; }
303 unsigned pid, ABitReader *br, status_t *err) {
306 if (pid != mProgramMapPID) {
316 unsigned pid, unsigned continuity_counter,
323 ssize_t index = mStreams.indexOfKey(pid);
371 oldType2PIDs.editValueFor(mStreams[i]->type()).push_back(mStreams[i]->pid());
414 // get the next PID for temp[i]->type() in the new PID map
417 // change the PID of the stream, and add it back
419 mStreams.add(temp[i]->pid(), temp.editValueAt(i));
421 // removed the used PID
567 ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type());
574 ALOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType);
703 if (mParser->mCasManager->getCasInfo(mProgramNumber, stream->pid(),
735 ALOGV("new stream PID 0x%02x, type 0x%02x, scrambled %d, SampleEncrypted: %d",
783 ALOGE("stream PID 0x%02x has invalid stream type 0x%02x",
893 ALOGI("discontinuity on stream pid 0x%04x", mElementaryPID);
1551 ALOGV("Stream PID 0x%08x of type 0x%02x now has data.",
1564 ALOGV("onPayloadData: created AnotherPacketSource PID 0x%08x of type 0x%02x",
1664 mPSISections.add(0 /* PID */, new PSISection);
1819 ABitReader *br, unsigned PID,
1825 ssize_t sectionIndex = mPSISections.indexOfKey(PID);
1859 if (PID == 0) {
1866 PID, &sectionBits, &err)) {
1879 mPSISections.removeItem(PID);
1895 PID, continuity_counter,
1910 handled = mCasManager->parsePID(br, PID);
1914 ALOGV("PID 0x%04x not handled.", PID);
1921 ABitReader *br, unsigned PID, unsigned *random_access_indicator) {
1934 ALOGV("PID 0x%04x: discontinuity_indicator = 1 (!!!)", PID);
1939 ALOGV("PID 0x%04x: random_access_indicator = 1", PID);
1944 ALOGV("PID 0x%04x: elementary_stream_priority_indicator = 1", PID);
1970 ALOGV("PID 0x%04x: PCR = 0x%016" PRIx64 " (%.2f)",
1971 PID, PCR, PCR / 27E6);
1979 updatePCR(PID, PCR, byteOffsetFromStart);
2009 unsigned PID = br->getBits(13);
2010 ALOGV("PID = 0x%04x", PID);
2019 ALOGV("PID = 0x%04x, continuity_counter = %u", PID, continuity_counter);
2021 // ALOGI("PID = 0x%04x, continuity_counter = %u", PID, continuity_counter);
2027 err = parseAdaptationField(br, PID, &random_access_indicator);
2031 err = parsePID(br, PID, continuity_counter,
2110 unsigned /* PID */, uint64_t PCR, uint64_t byteOffsetFromStart) {