diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-25 17:45:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-25 18:10:11 +0200 |
commit | 71d6eb2208b0ef15e4bd7cf899a8223cdb0460ad (patch) | |
tree | 4a3cbd5dd2393b86cf4af9f22ec9fc563b3dbbd6 /libavcodec/dnxhdenc.c | |
parent | 8deddc696139433d2de0dc44e4f3a2a33717ea12 (diff) | |
download | ffmpeg-71d6eb2208b0ef15e4bd7cf899a8223cdb0460ad.tar.gz |
dnxhdenc: remove redundant call to ff_dsputil_init()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dnxhdenc.c')
-rw-r--r-- | libavcodec/dnxhdenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index 58fd97e339..7644a07f8f 100644 --- a/libavcodec/dnxhdenc.c +++ b/libavcodec/dnxhdenc.c @@ -280,7 +280,6 @@ static int dnxhd_encode_init(AVCodecContext *avctx) avctx->bits_per_raw_sample = ctx->cid_table->bit_depth; - ff_dsputil_init(&ctx->m.dsp, avctx); ff_dct_common_init(&ctx->m); if (!ctx->m.dct_quantize) ctx->m.dct_quantize = ff_dct_quantize_c; |