diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-12-26 22:53:36 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-12-26 22:53:36 +0000 |
commit | 30fa1d840f145f9d58d2162c181b37ff47559eea (patch) | |
tree | 2e7d2d59df77d33ab59e5d7f87c04ad571ec861c /examples/indexing | |
parent | e947d5f47236746e43d2661a51b8eeb08b3b45a2 (diff) | |
download | gst-plugins-bad-30fa1d840f145f9d58d2162c181b37ff47559eea.tar.gz gst-plugins-bad-30fa1d840f145f9d58d2162c181b37ff47559eea.tar.bz2 gst-plugins-bad-30fa1d840f145f9d58d2162c181b37ff47559eea.zip |
Updated test app
Original commit message from CVS:
Updated test app
Diffstat (limited to 'examples/indexing')
-rw-r--r-- | examples/indexing/indexmpeg.c | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/examples/indexing/indexmpeg.c b/examples/indexing/indexmpeg.c index 3c1d6421..fc5b83fb 100644 --- a/examples/indexing/indexmpeg.c +++ b/examples/indexing/indexmpeg.c @@ -40,7 +40,7 @@ entry_added (GstIndex *index, GstIndexEntry *entry) { gint i; - g_print ("%d: %08x ", entry->id, GST_INDEX_ASSOC_FLAGS (entry)); + g_print ("%p, %d: %08x ", entry, entry->id, GST_INDEX_ASSOC_FLAGS (entry)); for (i = 0; i < GST_INDEX_NASSOCS (entry); i++) { g_print ("%d %lld ", GST_INDEX_ASSOC_FORMAT (entry, i), GST_INDEX_ASSOC_VALUE (entry, i)); @@ -202,7 +202,7 @@ main (gint argc, gchar *argv[]) gint count = 0; GstEvent *event; gboolean res; - gint i; + GstElement *sink; struct poptOption options[] = { { "verbose", 'v', POPT_ARG_NONE|POPT_ARGFLAG_STRIP, &verbose, 0, "Print index entries", NULL}, @@ -222,7 +222,8 @@ main (gint argc, gchar *argv[]) /* create index that elements can fill */ index = gst_index_factory_make ("memindex"); - if (verbose) + index = NULL; + if (verbose && index) g_signal_connect (G_OBJECT (index), "entry_added", G_CALLBACK (entry_added), NULL); /* construct pipeline */ @@ -265,15 +266,19 @@ main (gint argc, gchar *argv[]) gst_element_set_state (pipeline, GST_STATE_READY); gst_element_set_state (pipeline, GST_STATE_PAUSED); - GST_FLAG_UNSET (index, GST_INDEX_WRITABLE); + if (index) + GST_FLAG_UNSET (index, GST_INDEX_WRITABLE); src = gst_bin_get_by_name (GST_BIN (pipeline), "video_decoder"); pad = gst_element_get_pad (src, "src"); + sink = gst_element_factory_make ("fakesink", "sink"); + gst_element_connect_pads (src, "src", sink, "sink"); + gst_bin_add (GST_BIN (pipeline), sink); g_print ("seeking %s...\n", argv [2]); event = gst_event_new_seek (GST_FORMAT_TIME | GST_SEEK_METHOD_SET | - GST_SEEK_FLAG_FLUSH, 1 * GST_SECOND); + GST_SEEK_FLAG_FLUSH, 5 * GST_SECOND); res = gst_pad_send_event (pad, event); if (!res) { @@ -281,8 +286,12 @@ main (gint argc, gchar *argv[]) } gst_element_set_state (pipeline, GST_STATE_PLAYING); - for (i = 0; i < 100; i++) { - gst_bin_iterate (GST_BIN (pipeline)); + count = 0; + while (gst_bin_iterate (GST_BIN (pipeline))) { + if (!quiet && (count % 1000 == 0)) { + print_progress (pad); + } + count++; } gst_element_set_state (pipeline, GST_STATE_NULL); |