Commit dcc4cf2f authored by Gildas Bazin's avatar Gildas Bazin

* configure.ac, NEWS: added mod and pva plugins.
parent 4caee403
$Id: NEWS,v 1.82 2004/02/08 21:36:39 gbazin Exp $ $Id: NEWS,v 1.83 2004/02/10 17:36:45 gbazin Exp $
Changes between 0.7.0 and 0.7.1: Changes between 0.7.0 and 0.7.1:
--------------------------------- ---------------------------------
...@@ -21,16 +21,18 @@ Input: ...@@ -21,16 +21,18 @@ Input:
container formars. container formars.
* New demux module that uses libavformat from ffmpeg. Adds support for many * New demux module that uses libavformat from ffmpeg. Adds support for many
small and strange formats. small and strange formats.
* Support for DTS wav files * New PVA demux.
* Support for DTS audio CD * New MOD audio demux.
* Support for DTS wav files.
* Support for DTS audio CD.
* New and experimental DVD input plugin with menus support (using libdvdnav). * New and experimental DVD input plugin with menus support (using libdvdnav).
Stream output: Stream output:
* MP4/MOV muxer improvements (fast-start, aac in mov, etc...) * MP4/MOV muxer improvements (fast-start, aac in mov, etc...).
* Fixed a nasty bug in the mpeg video packetizer * Fixed a nasty bug in the mpeg video packetizer.
Service discovery: Service discovery:
* Fixed sdp in SAP * Fixed sdp in SAP.
Mac OS X port: Mac OS X port:
* New opengl video output plugin. * New opengl video output plugin.
......
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.177 2004/02/10 14:04:55 sam Exp $ dnl $Id: configure.ac,v 1.178 2004/02/10 17:36:45 gbazin Exp $
AC_INIT(vlc,0.7.1-test1) AC_INIT(vlc,0.7.1-test1)
...@@ -873,7 +873,7 @@ dnl ...@@ -873,7 +873,7 @@ dnl
dnl default modules dnl default modules
dnl dnl
AX_ADD_PLUGINS([dummy rc logger gestures memcpy hotkeys]) AX_ADD_PLUGINS([dummy rc logger gestures memcpy hotkeys])
AX_ADD_PLUGINS([mpgv mpga m4v mpeg_system ps ps2 ts avi asf aac mp4 rawdv demux2 nsv real aiff]) AX_ADD_PLUGINS([mpgv mpga m4v mpeg_system ps ps2 pva ts avi asf aac mp4 rawdv demux2 nsv real aiff])
AX_ADD_PLUGINS([cvdsub svcdsub spudec dvbsub mpeg_audio lpcm a52 dts cinepak]) AX_ADD_PLUGINS([cvdsub svcdsub spudec dvbsub mpeg_audio lpcm a52 dts cinepak])
AX_ADD_PLUGINS([deinterlace invert adjust wall transform distort clone crop motionblur]) AX_ADD_PLUGINS([deinterlace invert adjust wall transform distort clone crop motionblur])
AX_ADD_PLUGINS([float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32]) AX_ADD_PLUGINS([float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32])
...@@ -1723,6 +1723,19 @@ if test "${enable_mkv}" != "no"; then ...@@ -1723,6 +1723,19 @@ if test "${enable_mkv}" != "no"; then
AC_LANG_POP(C++) AC_LANG_POP(C++)
fi fi
dnl
dnl modplug demux plugin
dnl
AC_ARG_ENABLE(mod,
[ --enable-mod Mod demux support (default enabled)])
if test "${enable_mod}" != "no"
then
AC_CHECK_HEADERS(libmodplug/modplug.h, [
AX_ADD_PLUGINS([mod])
AX_ADD_CXXFLAGS([mod],[])
AX_ADD_LDFLAGS([mod],[-lmodplug])])
fi
dnl dnl
dnl Codec plugins dnl Codec plugins
dnl dnl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment