Displaying 2 results from an estimated 2 matches for "0ad15c5".
2007 Apr 05
0
configure.ac libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_gst.c
...$GST_REQUIRED.])
+ fi
+else
+ AC_MSG_WARN([*** GStreamer support was not enabled. ***])
+fi
+AM_CONDITIONAL(HAVE_GST, [test "x$HAVE_GST" = xyes])
+
AC_ARG_ENABLE(gnome-vfs,
AS_HELP_STRING([--enable-gnome-vfs],
diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am
index f7be47f..0ad15c5 100644
--- a/libswfdec/Makefile.am
+++ b/libswfdec/Makefile.am
@@ -10,6 +10,9 @@ endif
if HAVE_FFMPEG
CODECS += swfdec_codec_ffmpeg.c
endif
+if HAVE_GST
+CODECS += swfdec_codec_gst.c
+endif
lib_LTLIBRARIES = libswfdec-@SWFDEC_MAJORMINOR@.la
@@ -86,13 +89,14 @@ libswfdec_@SWFDEC_MAJORMINOR@_...
2007 Apr 06
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_ffmpeg.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_codec_video.c
...5c886 (from 25c390688e91b470212ae7eade090d28d0546a00)
Author: Benjamin Otte <otte@gnome.org>
Date: Fri Apr 6 15:45:20 2007 +0200
revamp the video decoding API
lots of code saved, and VP6 with GStreamer works now
diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am
index 0ad15c5..fa1abb6 100644
--- a/libswfdec/Makefile.am
+++ b/libswfdec/Makefile.am
@@ -35,6 +35,7 @@ libswfdec_@SWFDEC_MAJORMINOR@_la_SOURCES
swfdec_codec_adpcm.c \
$(CODECS) \
swfdec_codec_screen.c \
+ swfdec_codec_video.c \
swfdec_color.c \
swfdec_connection.c \
swfdec_debug.c \
@@ -122,6 +123,7...