add error handler fix mixmatrix plugin filename
authorThomas Vander Stichele <thomas@apestaart.org>
Mon, 1 Mar 2004 15:53:04 +0000 (15:53 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Mon, 1 Mar 2004 15:53:04 +0000 (15:53 +0000)
Original commit message from CVS:
add error handler
fix mixmatrix plugin filename

examples/gstplay/player.c
gst/mixmatrix/Makefile.am

index dee721f..8aabe69 100644 (file)
@@ -58,7 +58,7 @@ got_found_tag (GstPlay *play,GstElement *source, GstTagList *tag_list)
 static void
 got_time_tick (GstPlay *play, gint64 time_nanos)
 {
-  g_print ("time tick %llu\n", time_nanos);
+  g_print ("time tick %f\n", time_nanos / (float) GST_SECOND);
 }
 
 static void
@@ -147,6 +147,8 @@ main (int argc, char *argv[])
                     G_CALLBACK (got_video_size), NULL);
   g_signal_connect (G_OBJECT (play), "found_tag",
                     G_CALLBACK (got_found_tag), NULL);
+  g_signal_connect (G_OBJECT (play), "error",
+                    G_CALLBACK (gst_element_default_error), NULL);
   g_signal_connect (G_OBJECT (play), "eos",
                     G_CALLBACK (got_eos), NULL);
 
index a769054..54d5c62 100755 (executable)
@@ -1,5 +1,5 @@
 
-plugin_LTLIBRARIES = libmixmatrix.la
+plugin_LTLIBRARIES = libgstmixmatrix.la
 
 libmixmatrix_la_SOURCES = mixmatrix.c
 libmixmatrix_la_CFLAGS = $(GST_CFLAGS)