Lines Matching defs:frame_size
95 int frame_size; ///< frame size in bytes
1820 audio_frame_size = sc->frame_size;
2035 sc->frame_size = pkt->size;
2107 sc->frame_size = pkt->size;
2194 sc->frame_size = pkt->size;
2201 int frame_size;
2244 int i, frame_size, slice_type, has_sps = 0, intra_only = 0, ret;
2312 frame_size = pkt->size + extra_size;
2315 if (frame_size == mxf_h264_codec_uls[i].frame_size && sc->interlaced == mxf_h264_codec_uls[i].interlaced) {
2322 sc->frame_size = pkt->size;
2326 } else if (has_sps && mxf_h264_codec_uls[i].frame_size == 0 &&
2626 sc->frame_size = (int64_t)sc->video_bit_rate *
2649 sc->frame_size = 4 + 8 * av_rescale_rnd(st->codecpar->sample_rate, mxf->time_base.num, mxf->time_base.den, AV_ROUND_UP) * 4;
2671 sc->frame_size = st->codecpar->ch_layout.nb_channels *
2808 int frame_size = pkt->size / st->codecpar->block_align;
2813 klv_encode_ber4_length(pb, 4 + frame_size*4*8);
2815 avio_w8(pb, (frame_size == 1920 ? 0 : (mxf->edit_units_count-1) % 5 + 1));
2816 avio_wl16(pb, frame_size);
2893 mxf->edit_unit_byte_count = sc->frame_size;
2902 mxf->edit_unit_byte_count += 16 + 4 + sc->frame_size;
2960 if (pkt->size != sc->frame_size && st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
2962 st->index, pkt->size, sc->frame_size);