Commit 5ba63c66 authored by Sam Hocevar's avatar Sam Hocevar

  * ./plugins/ogg/*: added preliminary files for an Ogg/Vorbis decoder a
    contributor is currently working on.
parent 0beab2c2
...@@ -4,7 +4,14 @@ ...@@ -4,7 +4,14 @@
HEAD HEAD
* fixed ./plugins/gtk/gtk_callbacks.c to use the dvd_device config option. * ./plugins/ogg/*: added preliminary files for an Ogg/Vorbis decoder a
contributor is currently working on.
* ALL: removed libdvdcss from the vlc tree.
* ALL: removed libdvdread from the vlc tree.
* ./acconfig.h: removed this file.
* ./plugins/dvd/dummy_dvdcss.c: merged this file into dvd.c.
* ./AUTHORS: moved a few gentlemen to the libdvdcss AUTHORS file.
* ./plugins/gtk/gtk_callbacks.c: use the dvd_device config option.
* ./po/ja.po: added Japanese translation from Fumio Nakayama * ./po/ja.po: added Japanese translation from Fumio Nakayama
<endymion@ca2.so-net.ne.jp>. <endymion@ca2.so-net.ne.jp>.
* ./plugins/gtk/gtk_callbacks.c: fixed disc ejection code. * ./plugins/gtk/gtk_callbacks.c: fixed disc ejection code.
......
...@@ -49,6 +49,7 @@ PLUGINS_DIR := a52 \ ...@@ -49,6 +49,7 @@ PLUGINS_DIR := a52 \
mpeg_adec \ mpeg_adec \
mpeg_vdec \ mpeg_vdec \
network \ network \
ogg \
qnx \ qnx \
qt \ qt \
satellite \ satellite \
...@@ -130,6 +131,7 @@ PLUGINS_TARGETS := a52/a52 \ ...@@ -130,6 +131,7 @@ PLUGINS_TARGETS := a52/a52 \
mpeg_vdec/mpeg_vdec \ mpeg_vdec/mpeg_vdec \
network/ipv4 \ network/ipv4 \
network/ipv6 \ network/ipv6 \
ogg/vorbis \
qnx/qnx \ qnx/qnx \
qt/qt \ qt/qt \
satellite/satellite \ satellite/satellite \
......
...@@ -103,6 +103,7 @@ LIB_QT = @LIB_QT@ ...@@ -103,6 +103,7 @@ LIB_QT = @LIB_QT@
LIB_RC = @LIB_RC@ LIB_RC = @LIB_RC@
LIB_SDL = @LIB_SDL@ LIB_SDL = @LIB_SDL@
LIB_VCD = @LIB_VCD@ LIB_VCD = @LIB_VCD@
LIB_VORBIS = @LIB_VORBIS@
LIB_WAVEOUT = @LIB_WAVEOUT@ LIB_WAVEOUT = @LIB_WAVEOUT@
LIB_WIN32 = @LIB_WIN32@ LIB_WIN32 = @LIB_WIN32@
LIB_X11 = @LIB_X11@ LIB_X11 = @LIB_X11@
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -704,7 +704,7 @@ dnl ...@@ -704,7 +704,7 @@ dnl
dnl a52 AC3 decoder plugin dnl a52 AC3 decoder plugin
dnl dnl
AC_ARG_ENABLE(a52, AC_ARG_ENABLE(a52,
[ --disable-a52 AC3 support with liba52 (default enabled)]) [ --enable-a52 AC3 support with liba52 (default enabled)])
if test "x$enableval" != "xno" -a x$SYS != xmingw32 if test "x$enableval" != "xno" -a x$SYS != xmingw32
then then
AC_CHECK_HEADERS(a52dec/a52.h, [ AC_CHECK_HEADERS(a52dec/a52.h, [
...@@ -713,6 +713,19 @@ if test "x$enableval" != "xno" -a x$SYS != xmingw32 ...@@ -713,6 +713,19 @@ if test "x$enableval" != "xno" -a x$SYS != xmingw32
],[]) ],[])
fi fi
dnl
dnl ogg vorbis plugin
dnl
AC_ARG_ENABLE(vorbis,
[ --enable-vorbis Ogg/Vorbis decoder support (default enabled)])
if test "x$enableval" != "xno"
then
AC_CHECK_HEADERS(ogg/ogg.h, [
PLUGINS="${PLUGINS} vorbis"
LIB_VORBIS="${LIB_VORBIS} -lvorbis"
],[])
fi
dnl dnl
dnl Video plugins dnl Video plugins
dnl dnl
...@@ -724,7 +737,7 @@ dnl X11 module ...@@ -724,7 +737,7 @@ dnl X11 module
dnl (enabled by default except on win32) dnl (enabled by default except on win32)
dnl dnl
AC_ARG_ENABLE(x11, AC_ARG_ENABLE(x11,
[ --disable-x11 X11 support (default enabled)]) [ --enable-x11 X11 support (default enabled)])
if test x$enable_x11 != xno && if test x$enable_x11 != xno &&
(test x$SYS != xmingw32 || test x$enable_x11 = xyes); then (test x$SYS != xmingw32 || test x$enable_x11 = xyes); then
if test x$x_includes = xNONE; then if test x$x_includes = xNONE; then
...@@ -748,7 +761,7 @@ dnl XVideo module ...@@ -748,7 +761,7 @@ dnl XVideo module
dnl (enabled by default except on win32) dnl (enabled by default except on win32)
dnl dnl
AC_ARG_ENABLE(xvideo, AC_ARG_ENABLE(xvideo,
[ --disable-xvideo XVideo support (default enabled)]) [ --enable-xvideo XVideo support (default enabled)])
if test x$enable_xvideo != xno && if test x$enable_xvideo != xno &&
(test x$SYS != xmingw32 || test x$enable_xvideo = xyes); then (test x$SYS != xmingw32 || test x$enable_xvideo = xyes); then
if test x$x_includes = xNONE; then if test x$x_includes = xNONE; then
...@@ -780,7 +793,7 @@ dnl ...@@ -780,7 +793,7 @@ dnl
dnl SDL module dnl SDL module
dnl dnl
AC_ARG_ENABLE(sdl, AC_ARG_ENABLE(sdl,
[ --disable-sdl SDL support (default enabled)]) [ --enable-sdl SDL support (default enabled)])
if test "x$enable_sdl" != "xno" if test "x$enable_sdl" != "xno"
then then
SDL_PATH=$PATH SDL_PATH=$PATH
...@@ -1027,7 +1040,7 @@ dnl ...@@ -1027,7 +1040,7 @@ dnl
dnl Gtk+ module dnl Gtk+ module
dnl dnl
AC_ARG_ENABLE(gtk, AC_ARG_ENABLE(gtk,
[ --disable-gtk Gtk+ support (default enabled)]) [ --enable-gtk Gtk+ support (default enabled)])
if test x$enable_gtk != xno if test x$enable_gtk != xno
then then
GTK_PATH=$PATH GTK_PATH=$PATH
...@@ -1422,6 +1435,7 @@ AC_SUBST(LIB_QT) ...@@ -1422,6 +1435,7 @@ AC_SUBST(LIB_QT)
AC_SUBST(LIB_RC) AC_SUBST(LIB_RC)
AC_SUBST(LIB_SDL) AC_SUBST(LIB_SDL)
AC_SUBST(LIB_VCD) AC_SUBST(LIB_VCD)
AC_SUBST(LIB_VORBIS)
AC_SUBST(LIB_WAVEOUT) AC_SUBST(LIB_WAVEOUT)
AC_SUBST(LIB_WIN32) AC_SUBST(LIB_WIN32)
AC_SUBST(LIB_X11) AC_SUBST(LIB_X11)
......
...@@ -250,6 +250,9 @@ ...@@ -250,6 +250,9 @@
/* Define if you have the <nl_types.h> header file. */ /* Define if you have the <nl_types.h> header file. */
#undef HAVE_NL_TYPES_H #undef HAVE_NL_TYPES_H
/* Define if you have the <ogg/ogg.h> header file. */
#undef HAVE_OGG_OGG_H
/* Define if you have the <pthread.h> header file. */ /* Define if you have the <pthread.h> header file. */
#undef HAVE_PTHREAD_H #undef HAVE_PTHREAD_H
......
.dep
*.lo
*.o.*
*.lo.*
vorbis_SOURCES =
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