summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/media-info/media-info-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst-libs/gst/media-info/media-info-test.c')
-rw-r--r--gst-libs/gst/media-info/media-info-test.c24
1 files changed, 19 insertions, 5 deletions
diff --git a/gst-libs/gst/media-info/media-info-test.c b/gst-libs/gst/media-info/media-info-test.c
index 916d8d77..553e97c6 100644
--- a/gst-libs/gst/media-info/media-info-test.c
+++ b/gst-libs/gst/media-info/media-info-test.c
@@ -62,11 +62,16 @@ info_print (GstMediaInfoStream *stream)
GstMediaInfoTrack *track;
g_print ("- mime type: %s\n", stream->mime);
- g_print ("- length: %.3f seconds\n",
+ g_print ("- length: %.3f seconds\n",
(gdouble) stream->length_time / GST_SECOND);
g_print ("- bitrate: %.3f kbps\n", stream->bitrate / 1000.0);
g_print ("- number of tracks: %ld\n", stream->length_tracks);
p = stream->tracks;
+ if (p == NULL)
+ {
+ g_print ("- no track information, probably an error\n");
+ return;
+ }
for (i = 0; i < stream->length_tracks; ++i)
{
g_print ("- track %d\n", i);
@@ -85,23 +90,32 @@ int
main (int argc, char *argv[])
{
GstMediaInfo *info;
- GstMediaInfoStream *stream;
+ GstMediaInfoStream *stream = NULL;
gint i;
-
+
g_assert (argc > 1);
gst_init (&argc, &argv);
info = g_object_new (GST_MEDIA_INFO_TYPE, NULL);
+ g_print ("stream: %p, &stream: %p\n", stream, &stream);
for (i = 1; i < argc; ++i)
{
+
+ /*
stream = gst_media_info_read (info, argv[i], GST_MEDIA_INFO_ALL);
+ */
+ gst_media_info_read_with_idler (info, argv[i], GST_MEDIA_INFO_ALL);
+ while (gst_media_info_read_idler (info, &stream) && stream == NULL)
+ /* keep idling */ g_print ("+");
g_print ("\nFILE: %s\n", argv[i]);
+ g_print ("stream: %p, &stream: %p\n", stream, &stream);
if (stream)
info_print (stream);
else
g_print ("no media info found.\n");
+ stream = NULL;
}
-
- return 0;
+
+ return 0;
}