Lines Matching refs:pkt
29 while (const vpx_codec_cx_pkt_t *pkt = iter.Next()) { in EncodeFrame() local
30 if (pkt->kind != VPX_CODEC_STATS_PKT) in EncodeFrame()
33 stats_->Append(*pkt); in EncodeFrame()
174 while (const vpx_codec_cx_pkt_t *pkt = iter.Next()) { in RunLoop() local
175 pkt = MutateEncoderOutputHook(pkt); in RunLoop()
177 switch (pkt->kind) { in RunLoop()
182 (const uint8_t*)pkt->data.frame.buf, pkt->data.frame.sz); in RunLoop()
189 ASSERT_GE(pkt->data.frame.pts, last_pts_); in RunLoop()
190 last_pts_ = pkt->data.frame.pts; in RunLoop()
191 FramePktHook(pkt); in RunLoop()
195 PSNRPktHook(pkt); in RunLoop()