diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-12-07 08:18:41 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-03-23 10:09:14 +0100 |
commit | dcc39ee10e82833ce24aa57926c00ffeb1948198 (patch) | |
tree | 7b7b69884477c4e2e70f4a5f7babc1c6ad056cf1 /libavcodec/dnxhddec.c | |
parent | 0871e2337777d9161e7f3554bcad19dabc9e15e1 (diff) | |
download | ffmpeg-dcc39ee10e82833ce24aa57926c00ffeb1948198.tar.gz |
lavc: Remove deprecated XvMC support hacks
Deprecated in 11/2013.
Diffstat (limited to 'libavcodec/dnxhddec.c')
-rw-r--r-- | libavcodec/dnxhddec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhddec.c b/libavcodec/dnxhddec.c index 75247eaff4..fd58795de3 100644 --- a/libavcodec/dnxhddec.c +++ b/libavcodec/dnxhddec.c @@ -162,7 +162,7 @@ static int dnxhd_decode_header(DNXHDContext *ctx, AVFrame *frame, return AVERROR_INVALIDDATA; } if (ctx->bit_depth != old_bit_depth) { - ff_blockdsp_init(&ctx->bdsp, ctx->avctx); + ff_blockdsp_init(&ctx->bdsp); ff_idctdsp_init(&ctx->idsp, ctx->avctx); } |