diff options
author | Moritz Barsnick | 2016-09-27 14:21:49 +0200 |
---|---|---|
committer | Michael Niedermayer | 2016-09-29 01:23:52 +0200 |
commit | 1846a3eac854799fbffc9669dcf4de558b917957 (patch) | |
tree | f65e4d55e07bb4da8f41ec35086853fbb13fd7c8 /ffmpeg_vaapi.c | |
parent | 95f2dcafe1895f67803afcb8cce33425e818639f (diff) |
ffmpeg_vaapi: fix choice of decoder_format
The check could previously never evaluate to true, probably due to
a typo.
Reported-By: Mihai Chindea <mihai.chindea@uti.eu.com>
Signed-off-by: Moritz Barsnick <barsnick@gmx.net>
Tested-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'ffmpeg_vaapi.c')
-rw-r--r-- | ffmpeg_vaapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg_vaapi.c b/ffmpeg_vaapi.c index 809059778d..f1e7c76f38 100644 --- a/ffmpeg_vaapi.c +++ b/ffmpeg_vaapi.c @@ -302,7 +302,7 @@ static int vaapi_build_decoder_config(VAAPIDecoderContext *ctx, if (ctx->output_format != AV_PIX_FMT_NONE && ctx->output_format != AV_PIX_FMT_VAAPI) { for (i = 0; constraints->valid_sw_formats[i] != AV_PIX_FMT_NONE; i++) { - if (constraints->valid_sw_formats[i] == ctx->decode_format) { + if (constraints->valid_sw_formats[i] == ctx->output_format) { ctx->decode_format = ctx->output_format; av_log(ctx, AV_LOG_DEBUG, "Using decode format %s (output " "format).\n", av_get_pix_fmt_name(ctx->decode_format)); |