summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2003-05-24 10:51:02 +0000
committerWim Taymans <wim.taymans@gmail.com>2003-05-24 10:51:02 +0000
commit9e8be3457a746a15f3f5771140423737c9207439 (patch)
treeab880615026e5b4abeeec66fa6a9ea37ba0fdb3e /examples
parentfd11a17a24e372d0871892bbe0c8b3608475673c (diff)
- removed UNITS
Original commit message from CVS: - removed UNITS
Diffstat (limited to 'examples')
-rw-r--r--examples/seeking/seek.c3
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 },