Lines Matching refs:par_in
72 bsf->par_in->width = bytestream2_get_le32(&gbc);
73 bsf->par_in->height = bytestream2_get_le32(&gbc);
74 bsf->par_in->bit_rate = bytestream2_get_le64(&gbc);
75 bsf->par_in->bits_per_coded_sample = bytestream2_get_le32(&gbc);
81 bsf->par_in->codec_id = id;
82 bsf->par_in->codec_tag = bytestream2_get_le32(&gbc);
87 bsf->par_in->sample_rate = bytestream2_get_le32(&gbc);
88 bsf->par_in->ch_layout.nb_channels = (unsigned)bytestream2_get_le32(&gbc) % FF_SANE_NB_CHANNELS;
89 bsf->par_in->block_align = bytestream2_get_le32(&gbc);
104 bsf->par_in->extradata = av_mallocz(extradata_size + AV_INPUT_BUFFER_PADDING_SIZE);
105 if (bsf->par_in->extradata) {
106 bsf->par_in->extradata_size = extradata_size;
107 size -= bsf->par_in->extradata_size;
108 memcpy(bsf->par_in->extradata, data + size, bsf->par_in->extradata_size);
111 if (av_image_check_size(bsf->par_in->width, bsf->par_in->height, 0, bsf))
112 bsf->par_in->width = bsf->par_in->height = 0;