diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2003-05-24 10:51:02 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2003-05-24 10:51:02 +0000 |
commit | 4d96d4aa91fc73a63f026220b9aed861f914b94f (patch) | |
tree | dedec92f58c5f4a9d135728f916094b03ceb7c1a /examples | |
parent | 328cce2c69794f9cb0b390d301c0f78c24281ec9 (diff) | |
download | gst-plugins-bad-4d96d4aa91fc73a63f026220b9aed861f914b94f.tar.gz gst-plugins-bad-4d96d4aa91fc73a63f026220b9aed861f914b94f.tar.bz2 gst-plugins-bad-4d96d4aa91fc73a63f026220b9aed861f914b94f.zip |
- removed UNITS
Original commit message from CVS:
- removed UNITS
Diffstat (limited to 'examples')
-rw-r--r-- | examples/seeking/seek.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/seeking/seek.c b/examples/seeking/seek.c index 5a652a58..24336cdd 100644 --- a/examples/seeking/seek.c +++ b/examples/seeking/seek.c @@ -170,7 +170,7 @@ make_flac_pipeline (const gchar *location) src = gst_element_factory_make_or_warn (SOURCE, "src"); decoder = gst_element_factory_make_or_warn ("flacdec", "decoder"); audiosink = gst_element_factory_make_or_warn ("osssink", "sink"); - //g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL); + g_object_set (G_OBJECT (audiosink), "sync", FALSE, NULL); g_object_set (G_OBJECT (src), "location", location, NULL); @@ -554,7 +554,6 @@ static seek_format seek_formats[] = { { "tim", GST_FORMAT_TIME }, { "byt", GST_FORMAT_BYTES }, - { "unt", GST_FORMAT_UNITS }, { "buf", GST_FORMAT_BUFFERS }, { "def", GST_FORMAT_DEFAULT }, { NULL, 0 }, |