Lines Matching defs:par
112 AVCodecParameters *par = s->streams[0]->codecpar;
115 || par->codec_type != AVMEDIA_TYPE_VIDEO
116 || (par->codec_id != AV_CODEC_ID_WRAPPED_AVFRAME && par->codec_id != AV_CODEC_ID_RAWVIDEO)) {
121 if (!(tag = xv_get_tag_from_format(par->format))) {
124 av_get_pix_fmt_name(par->format));
127 xv->image_format = par->format;
135 xv->image_width = par->width;
136 xv->image_height = par->height;
138 AVRational sar = par->sample_aspect_ratio;
139 xv->window_width = par->width;
140 xv->window_height = par->height;
192 av_get_pix_fmt_name(par->format));
198 xv->image_width = par->width;
199 xv->image_height = par->height;
231 AVCodecParameters *par = st->codecpar;
235 dar = av_mul_q(sar, (AVRational){ par->width, par->height });
324 AVCodecParameters *par = s->streams[0]->codecpar;
326 if (par->codec_id == AV_CODEC_ID_WRAPPED_AVFRAME) {
333 av_image_fill_arrays(data, linesize, pkt->data, par->format,
334 par->width, par->height, 1);