Lines Matching defs:format_in
357 MMAL_ES_FORMAT_T *format_in;
380 format_in = decoder->input[0]->format;
381 format_in->type = MMAL_ES_TYPE_VIDEO;
384 format_in->encoding = MMAL_ENCODING_MP2V;
387 format_in->encoding = MMAL_ENCODING_MP4V;
390 format_in->encoding = MMAL_ENCODING_WVC1;
394 format_in->encoding = MMAL_ENCODING_H264;
397 format_in->es->video.width = FFALIGN(avctx->width, 32);
398 format_in->es->video.height = FFALIGN(avctx->height, 16);
399 format_in->es->video.crop.width = avctx->width;
400 format_in->es->video.crop.height = avctx->height;
401 format_in->es->video.frame_rate.num = 24000;
402 format_in->es->video.frame_rate.den = 1001;
403 format_in->es->video.par.num = avctx->sample_aspect_ratio.num;
404 format_in->es->video.par.den = avctx->sample_aspect_ratio.den;
405 format_in->flags = MMAL_ES_FORMAT_FLAG_FRAMED;
408 av_fourcc2str(format_in->encoding));