diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-08 21:53:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-08 21:53:20 +0200 |
commit | 5ff2b33401ec0ac6a238d02e56100b7bce8afefe (patch) | |
tree | 37a98751e994f14b5588ca66dfd4d85db0b15028 | |
parent | eb2def0ff2c40033e871e7be8a37a53cd4ac45b8 (diff) | |
parent | 6f1960ab71b4f18551243ce22d01913108265233 (diff) | |
download | ffmpeg-5ff2b33401ec0ac6a238d02e56100b7bce8afefe.tar.gz |
Merge commit '6f1960ab71b4f18551243ce22d01913108265233'
* commit '6f1960ab71b4f18551243ce22d01913108265233':
idct: cosmetics: Drop one unnecessary if-block level
Conflicts:
libavcodec/idctdsp.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/idctdsp.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/libavcodec/idctdsp.c b/libavcodec/idctdsp.c index 1c7a2aab74..6e238bbca5 100644 --- a/libavcodec/idctdsp.c +++ b/libavcodec/idctdsp.c @@ -277,22 +277,22 @@ av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx) c->idct = ff_simple_idct_12; c->perm_type = FF_IDCT_PERM_NONE; } else { - if (avctx->idct_algo == FF_IDCT_INT) { - c->idct_put = jref_idct_put; - c->idct_add = jref_idct_add; - c->idct = ff_j_rev_dct; - c->perm_type = FF_IDCT_PERM_LIBMPEG2; - } else if (avctx->idct_algo == FF_IDCT_FAAN) { - c->idct_put = ff_faanidct_put; - c->idct_add = ff_faanidct_add; - c->idct = ff_faanidct; - c->perm_type = FF_IDCT_PERM_NONE; - } else { // accurate/default - c->idct_put = ff_simple_idct_put_8; - c->idct_add = ff_simple_idct_add_8; - c->idct = ff_simple_idct_8; - c->perm_type = FF_IDCT_PERM_NONE; - } + if (avctx->idct_algo == FF_IDCT_INT) { + c->idct_put = jref_idct_put; + c->idct_add = jref_idct_add; + c->idct = ff_j_rev_dct; + c->perm_type = FF_IDCT_PERM_LIBMPEG2; + } else if (avctx->idct_algo == FF_IDCT_FAAN) { + c->idct_put = ff_faanidct_put; + c->idct_add = ff_faanidct_add; + c->idct = ff_faanidct; + c->perm_type = FF_IDCT_PERM_NONE; + } else { // accurate/default + c->idct_put = ff_simple_idct_put_8; + c->idct_add = ff_simple_idct_add_8; + c->idct = ff_simple_idct_8; + c->perm_type = FF_IDCT_PERM_NONE; + } } } |