Lines Matching defs:packet_size
46 int packet_size;
98 packet_size = s->width * s->height * pgroup / xinc;
104 packet_size = GET_PACKET_SIZE(s->width, s->height);
106 packet_size = av_image_get_buffer_size(pix_fmt, s->width, s->height, 1);
107 if (packet_size < 0)
108 return packet_size;
110 if (packet_size == 0)
114 ctx->packet_size = packet_size;
115 st->codecpar->bit_rate = av_rescale_q(ctx->packet_size,
126 ret = av_get_packet(s->pb, pkt, s->packet_size);
127 pkt->pts = pkt->dts = pkt->pos / s->packet_size;