Lines Matching refs:mfx
277 avctx->width = param->mfx.FrameInfo.CropW; in qsv_decode_init_context()
278 avctx->height = param->mfx.FrameInfo.CropH; in qsv_decode_init_context()
279 avctx->coded_width = param->mfx.FrameInfo.Width; in qsv_decode_init_context()
280 avctx->coded_height = param->mfx.FrameInfo.Height; in qsv_decode_init_context()
281 avctx->level = param->mfx.CodecLevel; in qsv_decode_init_context()
282 avctx->profile = param->mfx.CodecProfile; in qsv_decode_init_context()
283 avctx->field_order = ff_qsv_map_picstruct(param->mfx.FrameInfo.PicStruct); in qsv_decode_init_context()
284 avctx->pix_fmt = ff_qsv_map_fourcc(param->mfx.FrameInfo.FourCC); in qsv_decode_init_context()
291 q->frame_info = param->mfx.FrameInfo; in qsv_decode_init_context()
328 param->mfx.CodecId = ret; in qsv_decode_header()
635 if (ret >= 0 && (q->orig_pix_fmt != ff_qsv_map_fourcc(param.mfx.FrameInfo.FourCC) || in qsv_process_data()
636 avctx->coded_width != param.mfx.FrameInfo.Width || in qsv_process_data()
637 avctx->coded_height != param.mfx.FrameInfo.Height)) { in qsv_process_data()
648 q->orig_pix_fmt = avctx->pix_fmt = pix_fmt = ff_qsv_map_fourcc(param.mfx.FrameInfo.FourCC); in qsv_process_data()
650 avctx->coded_width = param.mfx.FrameInfo.Width; in qsv_process_data()
651 avctx->coded_height = param.mfx.FrameInfo.Height; in qsv_process_data()