]> git.sesse.net Git - vlc/commit
. the IDCT functions are now located in modules : the classic IDCT,
authorSam Hocevar <sam@videolan.org>
Sat, 13 Jan 2001 12:57:21 +0000 (12:57 +0000)
committerSam Hocevar <sam@videolan.org>
Sat, 13 Jan 2001 12:57:21 +0000 (12:57 +0000)
commit26ee312a6f7584df6ebd66404ef674192400a869
tree1d3d66492fb4d61dc620b477277e0aaecc4d1a2f
parenta558a9bb47f6212da40eb8798243d08107865f7d
 . the IDCT functions are now located in modules : the classic IDCT,
   our optimized IDCT, and MMX IDCT.
 . cosmetic changes for modules (pf_* instead of p_*)
 . fixes to the BeOS and dummy modules

   WARNING: a new directory has been added, which means you have to
   use `cvs update -dP' to update ; files have been removed , which means
   you either have to run `make distclean' or remove the .deps directory,
   and the configure script has changed, which means you have to run it
   again. Don't complain before having checked this :)

   Note about the IDCT modules: there is no way to choose the one we
   use, but you may remove the module in lib/ to prevent it from being
   loaded. The preference order is : MMX, Optimized, Classic.
28 files changed:
Makefile.in
configure
configure.in
include/audio_output.h
include/common.h
include/input_ext-dec.h
include/modules.h
include/video_decoder.h [moved from src/video_decoder/video_decoder.h with 98% similarity]
plugins/alsa/aout_alsa.c
plugins/beos/aout_beos.cpp
plugins/dsp/aout_dsp.c
plugins/dummy/aout_dummy.c
plugins/dummy/dummy.c
plugins/esd/aout_esd.c
plugins/idct/idct.c [moved from src/video_decoder/vdec_idct.c with 79% similarity]
plugins/idct/idct.h [moved from src/video_decoder/vdec_idct.h with 83% similarity]
plugins/idct/idct_common.c [new file with mode: 0644]
plugins/idct/idctclassic.c [new file with mode: 0644]
plugins/idct/idctmmx.c [new file with mode: 0644]
plugins/idct/idctmmx_asm.S [moved from src/video_decoder/vdec_idctmmx.S with 99% similarity]
src/audio_output/audio_output.c
src/misc/modules.c
src/video_decoder/video_parser.h
src/video_parser/video_fifo.c
src/video_parser/video_parser.c
src/video_parser/vpar_blocks.c
src/video_parser/vpar_headers.c
src/video_parser/vpar_synchro.c