diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-20 22:15:28 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-20 22:15:28 -0800 |
commit | 93af2734ee609133eaeca28329d7f13241dd411f (patch) | |
tree | c7925f1064ffd5445527911aec8ecb17e1562630 /libavcodec/bfin/dsputil_bfin.c | |
parent | e6bc38fd49c94726b45d5d5cc2b756ad8ec49ee0 (diff) | |
download | ffmpeg-93af2734ee609133eaeca28329d7f13241dd411f.tar.gz |
lavc: put FF_IDCT_{VP3,H264,CAVS,BINK,EA,WMV2} under FF_API_IDCT.
This allows us to get rid of them on the next major bump. All of the
above are functionally irrelevant, and most of them are unused, except
the vp3 one, which is used wrongly in the bfin arch optimizations.
Diffstat (limited to 'libavcodec/bfin/dsputil_bfin.c')
-rw-r--r-- | libavcodec/bfin/dsputil_bfin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/bfin/dsputil_bfin.c b/libavcodec/bfin/dsputil_bfin.c index 8597ec14f4..52860c6bb9 100644 --- a/libavcodec/bfin/dsputil_bfin.c +++ b/libavcodec/bfin/dsputil_bfin.c @@ -257,7 +257,8 @@ void ff_dsputil_init_bfin( DSPContext* c, AVCodecContext *avctx ) if (avctx->dct_algo == FF_DCT_AUTO) c->fdct = ff_bfin_fdct; - if (avctx->idct_algo == FF_IDCT_VP3) { + // FIXME convert to VP3DSPContext + if (0) { // avctx->idct_algo == FF_IDCT_VP3) { c->idct_permutation_type = FF_NO_IDCT_PERM; c->idct = ff_bfin_vp3_idct; c->idct_add = ff_bfin_vp3_idct_add; |