Lines Matching defs:avpkt
1091 static int vorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
1139 if ((ret = ff_alloc_packet(avctx, avpkt, 8192)) < 0)
1142 init_put_bits(&pb, avpkt->data, avpkt->size);
1189 avpkt->size = put_bytes_output(&pb);
1191 ff_af_queue_remove(&venc->afq, frame_size, &avpkt->pts, &avpkt->duration);
1193 if (frame_size > avpkt->duration) {
1194 uint8_t *side = av_packet_new_side_data(avpkt, AV_PKT_DATA_SKIP_SAMPLES, 10);
1197 AV_WL32(&side[4], frame_size - avpkt->duration);