summaryrefslogtreecommitdiffstats
path: root/ext/dv
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-19 04:10:05 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-19 04:10:05 +0000
commitd6258153e0aa7d3fe89a31acd3e57b9c13de4464 (patch)
tree92fd06f31c13bf0eee35395bfcef45ba6166c0d8 /ext/dv
parent0f1d7549324aa62357580b1b35e61bec6b6482ab (diff)
removal of //-style comments don't link plugins to core libs -- the versioning is done internally to the plugins with...
Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
Diffstat (limited to 'ext/dv')
-rw-r--r--ext/dv/Makefile.am2
-rw-r--r--ext/dv/demo-play.c12
-rw-r--r--ext/dv/gstdvdec.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/ext/dv/Makefile.am b/ext/dv/Makefile.am
index 73aa70f2..fb276045 100644
--- a/ext/dv/Makefile.am
+++ b/ext/dv/Makefile.am
@@ -4,7 +4,7 @@ plugin_LTLIBRARIES = libgstdvdec.la
libgstdvdec_la_SOURCES = gstdvdec.c
libgstdvdec_la_CFLAGS = $(GST_CFLAGS)
-libgstdvdec_la_LIBADD = $(GST_LIBS) $(DV_LIBS)
+libgstdvdec_la_LIBADD = $(DV_LIBS)
libgstdvdec_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = gstdvdec.h
diff --git a/ext/dv/demo-play.c b/ext/dv/demo-play.c
index f5ccec39..45f7f7fe 100644
--- a/ext/dv/demo-play.c
+++ b/ext/dv/demo-play.c
@@ -15,7 +15,7 @@ main (int argc,char *argv[])
GstElement *bin;
GstElement *src;
GstElement *dvdec;
- //GstElement *cspace;
+ /*GstElement *cspace; */
GstElement *deint;
GstElement *videosink;
@@ -40,7 +40,7 @@ main (int argc,char *argv[])
}
dvdec = gst_elementfactory_make ("dvdec", "decoder");
if (!dvdec) fprintf(stderr,"no dvdec\n"),exit(1);
-// cspace = gst_elementfactory_make ("colorspace", "cspace");
+/* cspace = gst_elementfactory_make ("colorspace", "cspace"); */
deint = gst_elementfactory_make ("deinterlace", "deinterlace");
videosink = gst_elementfactory_make ("xvideosink", "videosink");
if (!videosink) fprintf(stderr,"no dvdec\n"),exit(1);
@@ -48,12 +48,12 @@ main (int argc,char *argv[])
gst_bin_add(GST_BIN(bin),GST_ELEMENT(src));
gst_bin_add(GST_BIN(bin),GST_ELEMENT(dvdec));
-// gst_bin_add(GST_BIN(bin),GST_ELEMENT(cspace));
+/* gst_bin_add(GST_BIN(bin),GST_ELEMENT(cspace)); */
gst_bin_add(GST_BIN(bin),GST_ELEMENT(videosink));
gst_element_connect(src,"src",dvdec,"sink");
-// gst_element_connect(cspace,"src",videosink,"sink");
-// gst_element_connect(dvdec,"video",cspace,"sink");
+/* gst_element_connect(cspace,"src",videosink,"sink"); */
+/* gst_element_connect(dvdec,"video",cspace,"sink"); */
gst_element_connect(dvdec,"video",deint,"sink");
gst_element_connect(deint,"src",videosink,"sink");
@@ -62,7 +62,7 @@ main (int argc,char *argv[])
vbox1 = gtk_vbox_new (FALSE, 0);
gtk_widget_show (vbox1);
- button = gtk_button_new_with_label(_("test"));//_with_label (_("chup"));
+ button = gtk_button_new_with_label(_("test"));/*_with_label (_("chup")); */
gtk_widget_show (button);
gtk_box_pack_start (GTK_BOX (vbox1), button, FALSE, FALSE, 0);
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c
index 4bba3e5d..57a7baca 100644
--- a/ext/dv/gstdvdec.c
+++ b/ext/dv/gstdvdec.c
@@ -142,7 +142,7 @@ static GstElementClass *parent_class = NULL;
/* This array holds the ids of the signals registered for this object.
* The array indexes are based on the enum up above.
*/
-//static guint gst_dvdec_signals[LAST_SIGNAL] = { 0 };
+/*static guint gst_dvdec_signals[LAST_SIGNAL] = { 0 }; */
/* This function is used to register and subsequently return the type
* identifier for this object class. On first invocation, it will
@@ -198,7 +198,7 @@ gst_dvdec_class_init (GstDVDecClass *klass)
gstelement_class->change_state = gst_dvdec_change_state;
- // table initialization, only do once
+ /* table initialization, only do once */
dv_init();
}