summaryrefslogtreecommitdiffstats
path: root/ext/dv/demo-play.c
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/demo-play.c
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/demo-play.c')
-rw-r--r--ext/dv/demo-play.c12
1 files changed, 6 insertions, 6 deletions
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);