Commit e61767c4 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavfi/scale_qsv: Fix a format specifier for a variable of type int.

parent d46a91b7
......@@ -410,7 +410,7 @@ static int init_out_session(AVFilterContext *ctx)
s->scale_conf.Header.BufferSz = sizeof(mfxExtVPPScaling);
s->scale_conf.ScalingMode = s->mode;
s->ext_buffers[s->num_ext_buf++] = (mfxExtBuffer*)&s->scale_conf;
av_log(ctx, AV_LOG_VERBOSE, "Scaling mode: %"PRIu16"\n", s->mode);
av_log(ctx, AV_LOG_VERBOSE, "Scaling mode: %d\n", s->mode);
#endif
par.ExtParam = s->ext_buffers;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment