mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
Ported the 1394 source to 0.9.
Original commit message from CVS: * configure.ac: * ext/raw1394/Makefile.am: * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type), (gst_dv1394src_class_init), (gst_dv1394src_init), (gst_dv1394src_iso_receive), (gst_dv1394src_create), (gst_dv1394src_change_state), (gst_dv1394src_convert), (gst_dv1394src_get_query_types), (gst_dv1394src_query): * ext/raw1394/gstdv1394src.h: Ported the 1394 source to 0.9.
This commit is contained in:
parent
ee4fdc014a
commit
f815a3e50f
2 changed files with 39 additions and 0 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2005-07-07 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* configure.ac:
|
||||
* ext/raw1394/Makefile.am:
|
||||
* ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
|
||||
(gst_dv1394src_class_init), (gst_dv1394src_init),
|
||||
(gst_dv1394src_iso_receive), (gst_dv1394src_create),
|
||||
(gst_dv1394src_change_state), (gst_dv1394src_convert),
|
||||
(gst_dv1394src_get_query_types), (gst_dv1394src_query):
|
||||
* ext/raw1394/gstdv1394src.h:
|
||||
Ported the 1394 source to 0.9.
|
||||
|
||||
2005-07-07 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/mad/gstid3tag.c: (gst_id3_tag_get_query_types):
|
||||
|
|
27
configure.ac
27
configure.ac
|
@ -419,6 +419,32 @@ GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
|||
])
|
||||
AC_SUBST(MAD_LIBS)
|
||||
|
||||
dnl *** dv1394 ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_DV1394, true)
|
||||
GST_CHECK_FEATURE(DV1394, [raw1394 and avc1394 library], dv1394src, [
|
||||
dnl we need to test three headers and three libs
|
||||
GST_CHECK_LIBHEADER(RAW1394,
|
||||
raw1394, raw1394_new_handle,,
|
||||
libraw1394/raw1394.h, RAW1394_LIBS="-lraw1394")
|
||||
GST_CHECK_LIBHEADER(AVC1394,
|
||||
avc1394, avc1394_send_command, $RAW1394_LIBS,
|
||||
libavc1394/avc1394.h, AVC1394_LIBS="-lavc1394")
|
||||
GST_CHECK_LIBHEADER(ROM1394,
|
||||
rom1394, rom1394_free_directory, $RAW1394_LIBS,
|
||||
libavc1394/rom1394.h, ROM1394_LIBS="-lrom1394")
|
||||
|
||||
dnl now see how far we got
|
||||
if test x$HAVE_RAW1394 = xyes && \
|
||||
test x$HAVE_AVC1394 = xyes && \
|
||||
test x$HAVE_ROM1394 = xyes; then
|
||||
HAVE_DV1394=yes
|
||||
DV1394_LIBS="$RAW1394_LIBS $AVC1394_LIBS $ROM1394_LIBS"
|
||||
AC_SUBST(DV1394_LIBS)
|
||||
else
|
||||
HAVE_DV1394=no
|
||||
fi
|
||||
])
|
||||
|
||||
dnl **** ESound ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
|
||||
GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink, [
|
||||
|
@ -507,6 +533,7 @@ ext/Makefile
|
|||
ext/aalib/Makefile
|
||||
ext/libcaca/Makefile
|
||||
ext/mad/Makefile
|
||||
ext/raw1394/Makefile
|
||||
ext/shout2/Makefile
|
||||
ext/sidplay/Makefile
|
||||
ext/esd/Makefile
|
||||
|
|
Loading…
Reference in a new issue