Lines Matching defs:pkt
435 VkParserBitstreamPacket pkt;
436 pkt.pByteStream = pData; // Ptr to byte stream data decode/display event
437 pkt.nDataLength = size; // Data length for this packet
438 pkt.llPTS = 0; // Presentation Time Stamp for this packet (clock rate specified at initialization)
439 pkt.bEOS = !demuxerSuccess; // true if this is an End-Of-Stream packet (flush everything)
440 pkt.bPTSValid = false; // true if llPTS is valid (also used to detect frame boundaries for VC1 SP/MP)
441 pkt.bDiscontinuity = false; // true if DecMFT is signalling a discontinuity
442 pkt.bPartialParsing = 0; // 0: parse entire packet, 1: parse until next
443 pkt.bEOP = false; // true if the packet in pByteStream is exactly one frame
444 pkt.pbSideData = nullptr; // Auxiliary encryption information
445 pkt.nSideDataLength = 0; // Auxiliary encrypton information length
448 const bool parserSuccess = m_parser->ParseByteStream(&pkt, &parsedBytes);