Browse Source

x86: dsputil: cosmetics: Remove two pointless variable indirections

tags/n2.0
Diego Biurrun 12 years ago
parent
commit
2004c7c8f7
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavcodec/x86/dsputil_mmx.c

+ 2
- 4
libavcodec/x86/dsputil_mmx.c View File

@@ -1438,8 +1438,7 @@ static av_cold void dsputil_init_mmx(DSPContext *c, AVCodecContext *avctx,
static av_cold void dsputil_init_mmxext(DSPContext *c, AVCodecContext *avctx,
int mm_flags)
{
const int bit_depth = avctx->bits_per_raw_sample;
const int high_bit_depth = bit_depth > 8;
const int high_bit_depth = avctx->bits_per_raw_sample > 8;

#if HAVE_YASM
SET_QPEL_FUNCS(avg_qpel, 0, 16, mmxext, );
@@ -1570,8 +1569,7 @@ static av_cold void dsputil_init_sse(DSPContext *c, AVCodecContext *avctx,
static av_cold void dsputil_init_sse2(DSPContext *c, AVCodecContext *avctx,
int mm_flags)
{
const int bit_depth = avctx->bits_per_raw_sample;
const int high_bit_depth = bit_depth > 8;
const int high_bit_depth = avctx->bits_per_raw_sample > 8;

#if HAVE_SSE2_INLINE
if (!high_bit_depth && avctx->idct_algo == FF_IDCT_XVIDMMX) {


Loading…
Cancel
Save