mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
Add musepack decoder.
Original commit message from CVS: * configure.ac: * ext/Makefile.am: * ext/musepack/Makefile.am: * ext/musepack/gstmusepackdec.cpp: * ext/musepack/gstmusepackdec.h: * ext/musepack/gstmusepackreader.cpp: * ext/musepack/gstmusepackreader.h: Add musepack decoder. * ext/faad/gstfaad.c: (gst_faad_base_init): Make pad templates static. * gst/typefind/gsttypefindfunctions.c: (mp3_type_find), (plugin_init): Add musepack typefinder, make mp3 typefinding work halfway stream, which doesn't actually work yet because id3demux doesn't implement _get_length().
This commit is contained in:
parent
7fa54d624d
commit
44fd870029
3 changed files with 44 additions and 0 deletions
18
ChangeLog
18
ChangeLog
|
@ -1,3 +1,21 @@
|
|||
2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* configure.ac:
|
||||
* ext/Makefile.am:
|
||||
* ext/musepack/Makefile.am:
|
||||
* ext/musepack/gstmusepackdec.cpp:
|
||||
* ext/musepack/gstmusepackdec.h:
|
||||
* ext/musepack/gstmusepackreader.cpp:
|
||||
* ext/musepack/gstmusepackreader.h:
|
||||
Add musepack decoder.
|
||||
* ext/faad/gstfaad.c: (gst_faad_base_init):
|
||||
Make pad templates static.
|
||||
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
|
||||
(plugin_init):
|
||||
Add musepack typefinder, make mp3 typefinding work halfway stream,
|
||||
which doesn't actually work yet because id3demux doesn't implement
|
||||
_get_length().
|
||||
|
||||
2004-11-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
|
||||
|
|
18
configure.ac
18
configure.ac
|
@ -1359,6 +1359,23 @@ main (int argc,
|
|||
fi
|
||||
])
|
||||
|
||||
dnl *** musepack ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_MUSEPACK, true)
|
||||
GST_CHECK_FEATURE(MUSEPACK, [musepackdec], musepack, [
|
||||
AC_LANG_CPLUSPLUS
|
||||
OLD_CPPFLAGS="$CPPFLAGS"
|
||||
CPPFLAGS="-I/usr/include/musepack $CPPFLAGS"
|
||||
AC_CHECK_HEADER(mpc_dec.h, [
|
||||
HAVE_MUSEPACK="yes"
|
||||
MUSEPACK_LIBS="-lmusepack"
|
||||
MUSEPACK_CFLAGS="-I/usr/include/musepack"
|
||||
AC_SUBST(MUSEPACK_CFLAGS)
|
||||
AC_SUBST(MUSEPACK_LIBS)
|
||||
], [HAVE_MUSEPACK="no"])
|
||||
CPPFLAGS="$OLD_CPPFLAGS"
|
||||
AC_LANG_C
|
||||
])
|
||||
|
||||
dnl *** musicbrainz ***
|
||||
dnl libmusicbrainz <= 2.0.2 has symbol clashes with ffmpeg
|
||||
dnl however, our ffmpeg patch was accepted upstream
|
||||
|
@ -1948,6 +1965,7 @@ ext/mikmod/Makefile
|
|||
ext/mpeg2dec/Makefile
|
||||
ext/mpeg2enc/Makefile
|
||||
ext/mplex/Makefile
|
||||
ext/musepack/Makefile
|
||||
ext/musicbrainz/Makefile
|
||||
ext/nas/Makefile
|
||||
ext/ogg/Makefile
|
||||
|
|
|
@ -238,6 +238,12 @@ endif
|
|||
#MAS_DIR=
|
||||
#endif
|
||||
|
||||
if USE_MUSEPACK
|
||||
MUSEPACK_DIR=musepack
|
||||
else
|
||||
MUSEPACK_DIR=
|
||||
endif
|
||||
|
||||
if USE_MUSICBRAINZ
|
||||
MUSICBRAINZ_DIR=musicbrainz
|
||||
else
|
||||
|
@ -399,6 +405,7 @@ SUBDIRS=\
|
|||
$(MPEG2DEC_DIR) \
|
||||
$(MPEG2ENC_DIR) \
|
||||
$(MPLEX_DIR) \
|
||||
$(MUSEPACK_DIR) \
|
||||
$(MUSICBRAINZ_DIR) \
|
||||
$(OGG_DIR) \
|
||||
$(PANGO_DIR) \
|
||||
|
@ -458,6 +465,7 @@ DIST_SUBDIRS=\
|
|||
mpeg2dec \
|
||||
mpeg2enc \
|
||||
mplex \
|
||||
musepack \
|
||||
musicbrainz \
|
||||
nas \
|
||||
ogg \
|
||||
|
|
Loading…
Reference in a new issue