diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2013-03-13 13:20:43 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-13 15:59:35 +0100 |
commit | 9ae6ba288368be42dbd77613e07255d38bbba40e (patch) | |
tree | d966203b467c69212fd99fdaf0d1e9f1a7bd6559 | |
parent | c3bb2f729633898b1eecad130b2181f984fec222 (diff) | |
download | ffmpeg-streaming-9ae6ba288368be42dbd77613e07255d38bbba40e.zip ffmpeg-streaming-9ae6ba288368be42dbd77613e07255d38bbba40e.tar.gz |
dsputil: remove deprecated dsp_mask usage
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ppc/dsputil_ppc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/ppc/dsputil_ppc.c b/libavcodec/ppc/dsputil_ppc.c index 4b2bd60..6112b0c 100644 --- a/libavcodec/ppc/dsputil_ppc.c +++ b/libavcodec/ppc/dsputil_ppc.c @@ -142,13 +142,6 @@ av_cold void ff_dsputil_init_ppc(DSPContext *c, AVCodecContext *avctx) const int high_bit_depth = avctx->bits_per_raw_sample > 8; int mm_flags = av_get_cpu_flags(); - if (avctx->dsp_mask) { - if (avctx->dsp_mask & AV_CPU_FLAG_FORCE) - mm_flags |= (avctx->dsp_mask & 0xffff); - else - mm_flags &= ~(avctx->dsp_mask & 0xffff); - } - // Common optimizations whether AltiVec is available or not if (!high_bit_depth) { switch (check_dcbzl_effect()) { |