ext/divx/: Set category to divx4linux instead of divx (too generic).
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Wed, 14 Jan 2004 10:48:18 +0000 (10:48 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Wed, 14 Jan 2004 10:48:18 +0000 (10:48 +0000)
Original commit message from CVS:
2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>

* ext/divx/gstdivxdec.c:
* ext/divx/gstdivxenc.c:
Set category to divx4linux instead of divx (too generic).
* gst/wavparse/gstwavparse.c: (gst_wavparse_init),
(gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
(gst_wavparse_loop), (gst_wavparse_change_state):
* gst/wavparse/gstwavparse.h:
fix parsing of WAV files with non-standard fmt-tag size and fix
skipping of unrecognized chunks... Someone please fix this thing
to use rifflib so all this is automated.
* sys/v4l/Makefile.am:
* sys/v4l2/Makefile.am:
Add X_CFLAGS because we depend on X (for overlay).

ChangeLog
ext/divx/gstdivxdec.c
ext/divx/gstdivxenc.c
sys/v4l2/Makefile.am

index 3f75df0..bef180a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
+
+       * ext/divx/gstdivxdec.c:
+       * ext/divx/gstdivxenc.c:
+         Set category to divx4linux instead of divx (too generic).
+       * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
+       (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
+       (gst_wavparse_loop), (gst_wavparse_change_state):
+       * gst/wavparse/gstwavparse.h:
+         fix parsing of WAV files with non-standard fmt-tag size and fix
+         skipping of unrecognized chunks... Someone please fix this thing
+         to use rifflib so all this is automated.
+       * sys/v4l/Makefile.am:
+       * sys/v4l2/Makefile.am:
+         Add X_CFLAGS because we depend on X (for overlay).
+
 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
 
        * ext/mpeg2dec/gstmpeg2dec.c:
index bd9deb8..44134ec 100644 (file)
@@ -27,7 +27,7 @@
 
 /* elementfactory information */
 GstElementDetails gst_divxdec_details = {
-  "Divx decoder",
+  "Divx4linux decoder",
   "Codec/Video/Decoder",
   "Divx decoder based on divxdecore",
   "Ronald Bultje <rbultje@ronald.bitfreak.net>"
index bf71c31..afd1860 100644 (file)
@@ -28,7 +28,7 @@
 
 /* elementfactory information */
 GstElementDetails gst_divxenc_details = {
-  "Divx encoder",
+  "Divx4linux encoder",
   "Codec/Video/Encoder",
   "Divx encoder based on divxencore",
   "Ronald Bultje <rbultje@ronald.bitfreak.net>"
index 5d3e380..b242b34 100644 (file)
@@ -9,7 +9,7 @@ libgstvideo4linux2_la_SOURCES = \
        gstv4l2tuner.c \
        gstv4l2xoverlay.c \
        gstv4l2colorbalance.c
-libgstvideo4linux2_la_CFLAGS = $(GST_CFLAGS)
+libgstvideo4linux2_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
 libgstvideo4linux2_la_LIBADD = \
        $(top_builddir)/gst-libs/gst/libgstinterfaces-@GST_MAJORMINOR@.la
 libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)