]> git.sesse.net Git - vlc/commit
* ./BUGS: added a list of known bugs. Please add your findings!
authorSam Hocevar <sam@videolan.org>
Fri, 4 Jan 2002 14:01:35 +0000 (14:01 +0000)
committerSam Hocevar <sam@videolan.org>
Fri, 4 Jan 2002 14:01:35 +0000 (14:01 +0000)
commit53b978f8650fd329bf5298a05c9f8a055ac56fe4
tree11e262d9edbbf8b2e53eaa926a36e2cba965fc24
parentbf7ee74f8f7420cf471784a53f391abbee97a91d
  * ./BUGS: added a list of known bugs. Please add your findings!
  * ./MODULES: added a short description of each module. Maybe we should
    add more details to make this file really useful.
  * ./doc/bugreport-howto.txt: wishful thinking...
  * ./Makefile: added a workaround for the fact that .c files don't depend
    on <videolan/vlc.h>.
  * ./plugins/memcpy/memcpy.c: all memcpy modules are now built from the same
    single file.
  * ./src/interface/main.c: added the --nommx, --no3dnow, --nommxext, --nosse
    and --noaltivec options to vlc.
  * ./configure.in: removed the --disable-mmx option, now useless because
    of the vlc --no* options.
  * ./src/interface/main.c: fixed a crash caused by the memcpy module
    being released too early.
  * ./include/video.h: more vout4 changes, including margin support, more
    FOURCC formats recognized, transparent support of identical or almost
    identical FOURCC formats.
  * ./include/video_output.h: added a vout_Render function to video output
    modules which is to be executed before vout_Display.
  * ./include/common.h: this header is back.
  * ./plugins/chroma/i420_rgb.c: planar YUV 4:2:0 to packed RGB conversion
    functions, mostly taken from vout3's yuv functions, but heavily modified
    to use FAST_MEMCPY and to handle image dimensions which are not multiples
    of 16. Not all functions have been written yet, though.
  * ./plugins/chroma/i420_yuy2.c: planar YUV 4:2:0 to packed YUV conversion
    functions, various targets such as 4:2:2 YUYV, YVYU, UYVY, or 2:1:1 YUYV,
    with accelerated MMX versions.
  * ./plugins/chroma/i422_yuy2.c: same as i420_yuy2.c but takes planar YUV
    4:2:2 pictures in input. With accelerated MMX versions as well. This plugin
    makes it possible to display 4:2:2 files on most video cards without the
    quality loss of 4:2:0 downsampling.
  * ./plugins/filter/*: thanks to the vout_Render function, all filters now
    output their data perfectly in sync.
  * ./plugins/dvdread/Makefile: fix to prevent unnecessary target rebuilds.
  * ./plugins/sdl/vout_sdl.c: support for YV12, UYVY, YUY2 and YVYU overlays.
  * ./plugins/x11/xcommon.c: support for I420, YV12, YUY2 and Y211 overlays.
73 files changed:
BUGS [new file with mode: 0644]
ChangeLog
MODULES [new file with mode: 0644]
Makefile
Makefile.modules
configure
configure.in
doc/bugreport-howto.txt [new file with mode: 0644]
doc/vlc.1
extras/libdvdcss/css.c
include/common.h [new file with mode: 0644]
include/config.h
include/modules.h
include/threads.h
include/vdec_ext-plugins.h
include/video.h
include/video_output.h
include/videolan/vlc.h
plugins/beos/MsgVals.h
plugins/chroma/Makefile
plugins/chroma/common.c [deleted file]
plugins/chroma/i420_rgb.c [new file with mode: 0644]
plugins/chroma/i420_rgb.h [moved from plugins/chroma/transforms.h with 82% similarity]
plugins/chroma/i420_rgb16.c [new file with mode: 0644]
plugins/chroma/i420_rgb8.c [new file with mode: 0644]
plugins/chroma/i420_rgb_c.h [moved from plugins/chroma/chroma_common.h with 85% similarity]
plugins/chroma/i420_rgb_mmx.h [new file with mode: 0644]
plugins/chroma/i420_yuy2.c [new file with mode: 0644]
plugins/chroma/i420_yuy2.h [new file with mode: 0644]
plugins/chroma/i422_yuy2.c [new file with mode: 0644]
plugins/chroma/i422_yuy2.h [new file with mode: 0644]
plugins/chroma/yv12_rgb16.c [deleted file]
plugins/chroma/yv12_rgb8.c [deleted file]
plugins/directx/vout_directx.c
plugins/dummy/input_dummy.c
plugins/dummy/vout_dummy.c
plugins/dvdread/Makefile
plugins/dvdread/dvdread.c
plugins/dvdread/input_dvdread.c
plugins/filter/deinterlace.c
plugins/filter/distort.c
plugins/filter/filter_common.h
plugins/filter/invert.c
plugins/filter/transform.c
plugins/filter/wall.c
plugins/gtk/gtk_playlist.c
plugins/kde/kde_disc.cpp
plugins/kde/kde_disc.h
plugins/kde/kde_menu.h
plugins/kde/kde_net.cpp
plugins/kde/kde_net.h
plugins/kde/kde_slider.h
plugins/memcpy/Makefile
plugins/memcpy/memcpy.c
plugins/memcpy/memcpy3dn.c [deleted file]
plugins/memcpy/memcpymmx.c [deleted file]
plugins/memcpy/memcpymmxext.c [deleted file]
plugins/mpeg_vdec/vpar_blocks.c
plugins/mpeg_vdec/vpar_blocks.h
plugins/sdl/aout_sdl.c
plugins/sdl/vout_sdl.c
plugins/spudec/spu_decoder.c
plugins/text/ncurses.c
plugins/text/rc.c
plugins/x11/xcommon.c
src/input/mpeg_system.c
src/interface/intf_msg.c
src/interface/main.c
src/misc/beos_specific.cpp
src/misc/modules_plugin.h
src/video_output/video_output.c
src/video_output/vout_pictures.c
src/video_output/vout_subpictures.c