Commit 369ccbef authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/realaudio.c: real audio (cook) decoder using real's libraries.

parent 7b9cc3cf
......@@ -2393,6 +2393,15 @@ then
fi
fi
dnl
dnl Real plugin
dnl
AC_ARG_ENABLE(real,
[ --enable-real Real audio module (default disabled)])
if test "${enable_real}" = "yes"; then
VLC_ADD_PLUGINS([realaudio])
fi
dnl
dnl MP4 module
dnl
......@@ -4308,6 +4317,8 @@ AS_IF([test "${enable_loader}" = "yes"],
VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.a])
VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.a])
VLC_ADD_CPPFLAGS([realaudio],[-I../../@top_srcdir@/loader])
VLC_ADD_LDFLAGS([realaudio],[../../loader/libloader.a])
])
dnl
......
......@@ -26,4 +26,5 @@ SOURCES_png = png.c
SOURCES_svcdsub = svcdsub.c
SOURCES_cvdsub = cvdsub.c
SOURCES_fake = fake.c
SOURCES_realaudio = realaudio.c
SOURCES_sdl_image = sdl_image.c
This diff is collapsed.
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