diff options
author | James Almer <jamrial@gmail.com> | 2017-10-23 15:04:19 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-23 15:05:12 -0300 |
commit | c381f6a483e00ab8bfa4f777284b89acdad6dd94 (patch) | |
tree | 4ee201d57d46594c02093659d9173039eb12c3a0 /libavcodec/alpha/idctdsp_alpha.c | |
parent | b13e61d6296e4f91f1f495ff436c61ad5de323fb (diff) | |
parent | 0871e2337777d9161e7f3554bcad19dabc9e15e1 (diff) | |
download | ffmpeg-c381f6a483e00ab8bfa4f777284b89acdad6dd94.tar.gz |
Merge commit '0871e2337777d9161e7f3554bcad19dabc9e15e1'
* commit '0871e2337777d9161e7f3554bcad19dabc9e15e1':
lavc: Drop deprecated architectures symbols
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/alpha/idctdsp_alpha.c')
-rw-r--r-- | libavcodec/alpha/idctdsp_alpha.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/alpha/idctdsp_alpha.c b/libavcodec/alpha/idctdsp_alpha.c index 1923ebbc5f..bd43842535 100644 --- a/libavcodec/alpha/idctdsp_alpha.c +++ b/libavcodec/alpha/idctdsp_alpha.c @@ -118,8 +118,7 @@ av_cold void ff_idctdsp_init_alpha(IDCTDSPContext *c, AVCodecContext *avctx, add_pixels_clamped_axp_p = c->add_pixels_clamped; if (!high_bit_depth && !avctx->lowres && - (avctx->idct_algo == FF_IDCT_AUTO || - avctx->idct_algo == FF_IDCT_SIMPLEALPHA)) { + (avctx->idct_algo == FF_IDCT_AUTO)) { c->idct_put = ff_simple_idct_put_axp; c->idct_add = ff_simple_idct_add_axp; c->idct = ff_simple_idct_axp; |