summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-07-15 20:34:49 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2002-07-15 20:34:49 +0000
commitfbb014bfa86dd9183d53d9f2e81ac5abfa75246c (patch)
treefb236f6a20ff6c4ae5c260cdab30bbe10adfd475 /src/libffmpeg/libavcodec/dsputil.c
parenta7a1b5d1c14b3a0badd915faa2ecf35b930ffcc5 (diff)
downloadxine-lib-fbb014bfa86dd9183d53d9f2e81ac5abfa75246c.tar.gz
xine-lib-fbb014bfa86dd9183d53d9f2e81ac5abfa75246c.tar.bz2
fix ffmpeg's default options
CVS patchset: 2281 CVS date: 2002/07/15 20:34:49
Diffstat (limited to 'src/libffmpeg/libavcodec/dsputil.c')
-rw-r--r--src/libffmpeg/libavcodec/dsputil.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libffmpeg/libavcodec/dsputil.c b/src/libffmpeg/libavcodec/dsputil.c
index 2d2378f3f..c832939cc 100644
--- a/src/libffmpeg/libavcodec/dsputil.c
+++ b/src/libffmpeg/libavcodec/dsputil.c
@@ -1289,7 +1289,7 @@ void dsputil_init(void)
use_permuted_idct = 0;
#endif
-//#ifdef SIMPLE_IDCT
+#ifdef SIMPLE_IDCT
if (ff_idct == NULL) {
ff_idct_put = simple_idct_put;
ff_idct_add = simple_idct_add;
@@ -1298,7 +1298,7 @@ void dsputil_init(void)
ff_idct_put = gen_idct_put;
ff_idct_add = gen_idct_add;
}
-//#endif
+#endif
if(use_permuted_idct)
#ifdef SIMPLE_IDCT