]> git.sesse.net Git - vlc/commit
. merged the YUV plugins in the same directory to avoid too much code
authorSam Hocevar <sam@videolan.org>
Tue, 16 Jan 2001 02:16:38 +0000 (02:16 +0000)
committerSam Hocevar <sam@videolan.org>
Tue, 16 Jan 2001 02:16:38 +0000 (02:16 +0000)
commitf56c4db12e0f8cacd9bc23cafc3be0b63498b145
tree1b2cb64a9760dcd08c10e94c1af04eac882274d7
parent2f64eb29986f997401e92ce1cab52ff35c13ff51
 . merged the YUV plugins in the same directory to avoid too much code
   duplication
 . YUV transformations now use the new module API ; now only the vout
   and interface still depend on the old plugin API
 . changed TestMMX to TestCPU because we will be able to test for other
   specific extensions (3DNow, SSE) for the forthcoming IDCT we'll
   borrow to mpeg2dec (as usual :P)
 . don't show "hiding module" messages anymore except in debug mode
 . swapped C IDCT and Classic IDCT scores since the classic one seems
   to be faster ; anyway you should use the MMX one
 . fixed a Makefile bug under BeOS
 . tried to fix the cpuid code so that it compiles under BeOS (Polux, can
   you test it when you have time ?)
38 files changed:
Makefile.in
include/modules.h
include/tests.h
include/video_output.h
plugins/alsa/alsa.c
plugins/dsp/dsp.c
plugins/esd/esd.c
plugins/idct/idct.c
plugins/idct/idctclassic.c
plugins/idct/idctmmx.c
plugins/null/null.c
plugins/yuv/transforms_common.h [moved from plugins/yuv/video_yuv_macros.h with 99% similarity]
plugins/yuv/transforms_yuv.c [new file with mode: 0644]
plugins/yuv/transforms_yuv.h [moved from plugins/yuv/video_yuv_macros_8bpp.h with 99% similarity]
plugins/yuv/transforms_yuvmmx.c [moved from plugins/yuv/video_yuv16.c with 53% similarity]
plugins/yuv/transforms_yuvmmx.h [moved from plugins/yuvmmx/video_yuv_asm.h with 99% similarity]
plugins/yuv/video_common.h [moved from plugins/yuv/video_yuv.h with 89% similarity]
plugins/yuv/video_yuv.c
plugins/yuv/video_yuv15.c [deleted file]
plugins/yuv/video_yuv24.c [deleted file]
plugins/yuv/video_yuv32.c [deleted file]
plugins/yuv/video_yuv8.c [deleted file]
plugins/yuv/video_yuvmmx.c [moved from plugins/yuvmmx/video_yuv.c with 85% similarity]
plugins/yuv/yuv.c
plugins/yuv/yuvmmx.c [new file with mode: 0644]
plugins/yuvmmx/video_yuv.h [deleted file]
plugins/yuvmmx/video_yuv15.c [deleted file]
plugins/yuvmmx/video_yuv16.c [deleted file]
plugins/yuvmmx/video_yuv24.c [deleted file]
plugins/yuvmmx/video_yuv32.c [deleted file]
plugins/yuvmmx/video_yuv8.c [deleted file]
plugins/yuvmmx/video_yuv_macros.h [deleted file]
plugins/yuvmmx/yuvmmx.c [deleted file]
src/interface/main.c
src/misc/modules.c
src/misc/plugins.c
src/misc/tests.c
src/video_output/video_yuv.c