summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/idct_mlib.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-12-27 21:06:08 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2001-12-27 21:06:08 +0000
commit7fec2e354c27250be1207159ab946e7fa10aaf7b (patch)
treeab8a8c9a6fd076dcd59552f99f86c02117c64147 /src/libffmpeg/libavcodec/idct_mlib.c
parentc811e61c80f28552251d296eb205f21175fcef93 (diff)
downloadxine-lib-7fec2e354c27250be1207159ab946e7fa10aaf7b.tar.gz
xine-lib-7fec2e354c27250be1207159ab946e7fa10aaf7b.tar.bz2
updating ffmpeg to cvs version as 26-12-2001
CVS patchset: 1315 CVS date: 2001/12/27 21:06:08
Diffstat (limited to 'src/libffmpeg/libavcodec/idct_mlib.c')
-rw-r--r--src/libffmpeg/libavcodec/idct_mlib.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/libffmpeg/libavcodec/idct_mlib.c b/src/libffmpeg/libavcodec/idct_mlib.c
deleted file mode 100644
index 63421273f..000000000
--- a/src/libffmpeg/libavcodec/idct_mlib.c
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Sun mediaLib optimized DSP utils
- * Copyright (c) 2001 Juergen Keil.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-
-#include "dsputil.h"
-
-#include <mlib_types.h>
-#include <mlib_status.h>
-#include <mlib_sys.h>
-#include <mlib_video.h>
-
-
-void ff_idct_mlib(DCTELEM *data)
-{
- mlib_VideoIDCT8x8_S16_S16 (data, data);
-}
-
-
-void ff_fdct_mlib(DCTELEM *data)
-{
- mlib_VideoDCT8x8_S16_S16 (data, data);
-}