mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 03:30:35 +00:00
*.c: Don't cast to GST_OBJECT when reffing or unreffing. Large source-munging commit!!!
Original commit message from CVS: 2005-06-28 Andy Wingo <wingo@pobox.com> * *.c: Don't cast to GST_OBJECT when reffing or unreffing. Large source-munging commit!!!
This commit is contained in:
parent
5016035bc6
commit
f8e79bdf86
126 changed files with 2036 additions and 1769 deletions
|
@ -1,5 +1,8 @@
|
||||||
2005-06-28 Andy Wingo <wingo@pobox.com>
|
2005-06-28 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
* *.c: Don't cast to GST_OBJECT when reffing or unreffing. Large
|
||||||
|
source-munging commit!!!
|
||||||
|
|
||||||
* gst/gstobject.c (gst_object_unref, gst_object_ref)
|
* gst/gstobject.c (gst_object_unref, gst_object_ref)
|
||||||
(gst_object_sink): Take gpointer arguments, not GstObject --
|
(gst_object_sink): Take gpointer arguments, not GstObject --
|
||||||
avoids casts. Like GLib.
|
avoids casts. Like GLib.
|
||||||
|
|
|
@ -79,9 +79,10 @@ START_TEST (test_interface)
|
||||||
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
||||||
gst_iterator_free (it);
|
gst_iterator_free (it);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
END_TEST Suite * gst_bin_suite (void)
|
END_TEST Suite *
|
||||||
|
gst_bin_suite (void)
|
||||||
{
|
{
|
||||||
Suite *s = suite_create ("GstBin");
|
Suite *s = suite_create ("GstBin");
|
||||||
TCase *tc_chain = tcase_create ("bin tests");
|
TCase *tc_chain = tcase_create ("bin tests");
|
||||||
|
|
|
@ -56,9 +56,9 @@ START_TEST (test_ghost_pads)
|
||||||
|
|
||||||
fsrc = gst_element_get_pad (src, "src");
|
fsrc = gst_element_get_pad (src, "src");
|
||||||
fail_unless (fsrc != NULL);
|
fail_unless (fsrc != NULL);
|
||||||
gsink = GST_PAD (gst_object_ref (GST_OBJECT (b2->sinkpads->data)));
|
gsink = GST_PAD (gst_object_ref (b2->sinkpads->data));
|
||||||
fail_unless (gsink != NULL);
|
fail_unless (gsink != NULL);
|
||||||
gsrc = GST_PAD (gst_object_ref (GST_OBJECT (b2->srcpads->data)));
|
gsrc = GST_PAD (gst_object_ref (b2->srcpads->data));
|
||||||
fail_unless (gsrc != NULL);
|
fail_unless (gsrc != NULL);
|
||||||
fsink = gst_element_get_pad (sink, "sink");
|
fsink = gst_element_get_pad (sink, "sink");
|
||||||
fail_unless (fsink != NULL);
|
fail_unless (fsink != NULL);
|
||||||
|
@ -89,7 +89,7 @@ START_TEST (test_ghost_pads)
|
||||||
|
|
||||||
fail_unless (gst_element_set_state (b1, GST_STATE_NULL) == GST_STATE_SUCCESS);
|
fail_unless (gst_element_set_state (b1, GST_STATE_NULL) == GST_STATE_SUCCESS);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (b1));
|
gst_object_unref (b1);
|
||||||
/* unreffing the bin will unref all elements, which will unlink and unparent
|
/* unreffing the bin will unref all elements, which will unlink and unparent
|
||||||
* all pads */
|
* all pads */
|
||||||
|
|
||||||
|
@ -110,21 +110,22 @@ START_TEST (test_ghost_pads)
|
||||||
assert_gstrefcount (isrc, 2); /* gsrc */
|
assert_gstrefcount (isrc, 2); /* gsrc */
|
||||||
|
|
||||||
/* while the fixme isn't fixed, check cleanup */
|
/* while the fixme isn't fixed, check cleanup */
|
||||||
gst_object_unref (GST_OBJECT (gsink));
|
gst_object_unref (gsink);
|
||||||
assert_gstrefcount (isink, 1);
|
assert_gstrefcount (isink, 1);
|
||||||
assert_gstrefcount (gisrc, 1);
|
assert_gstrefcount (gisrc, 1);
|
||||||
assert_gstrefcount (fsrc, 2); /* gisrc */
|
assert_gstrefcount (fsrc, 2); /* gisrc */
|
||||||
gst_object_unref (GST_OBJECT (gisrc));
|
gst_object_unref (gisrc);
|
||||||
assert_gstrefcount (fsrc, 1);
|
assert_gstrefcount (fsrc, 1);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (gsrc));
|
gst_object_unref (gsrc);
|
||||||
assert_gstrefcount (isrc, 1);
|
assert_gstrefcount (isrc, 1);
|
||||||
assert_gstrefcount (gisink, 1);
|
assert_gstrefcount (gisink, 1);
|
||||||
assert_gstrefcount (fsink, 2); /* gisrc */
|
assert_gstrefcount (fsink, 2); /* gisrc */
|
||||||
gst_object_unref (GST_OBJECT (gisink));
|
gst_object_unref (gisink);
|
||||||
assert_gstrefcount (fsink, 1);
|
assert_gstrefcount (fsink, 1);
|
||||||
}
|
}
|
||||||
END_TEST Suite * gst_ghost_pad_suite (void)
|
END_TEST Suite *
|
||||||
|
gst_ghost_pad_suite (void)
|
||||||
{
|
{
|
||||||
Suite *s = suite_create ("GstGhostPad");
|
Suite *s = suite_create ("GstGhostPad");
|
||||||
TCase *tc_chain = tcase_create ("ghost pad tests");
|
TCase *tc_chain = tcase_create ("ghost pad tests");
|
||||||
|
|
|
@ -118,8 +118,8 @@ START_TEST (test_refcount)
|
||||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
||||||
|
|
||||||
/* cleanup */
|
/* cleanup */
|
||||||
gst_object_unref (GST_OBJECT (src));
|
gst_object_unref (src);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
||||||
|
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
|
@ -170,8 +170,8 @@ START_TEST (test_get_allowed_caps)
|
||||||
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
||||||
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (src));
|
gst_object_unref (src);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
|
|
||||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
|
|
|
@ -68,7 +68,7 @@ run_pipeline (GstElement * pipe, gchar * descr,
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipe, GST_STATE_NULL);
|
gst_element_set_state (pipe, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipe));
|
gst_object_unref (pipe);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST (test_pipeline_unref)
|
START_TEST (test_pipeline_unref)
|
||||||
|
@ -90,8 +90,8 @@ START_TEST (test_pipeline_unref)
|
||||||
fail_unless (count == 1, "src has a refcount of %d instead of 1", count);
|
fail_unless (count == 1, "src has a refcount of %d instead of 1", count);
|
||||||
count = GST_OBJECT_REFCOUNT_VALUE (sink);
|
count = GST_OBJECT_REFCOUNT_VALUE (sink);
|
||||||
fail_unless (count == 1, "sink has a refcount of %d instead of 1", count);
|
fail_unless (count == 1, "sink has a refcount of %d instead of 1", count);
|
||||||
gst_object_unref (GST_OBJECT (src));
|
gst_object_unref (src);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
}
|
}
|
||||||
|
|
||||||
END_TEST Suite *
|
END_TEST Suite *
|
||||||
|
|
|
@ -68,7 +68,7 @@ run_pipeline (GstElement * pipe, gchar * descr,
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipe, GST_STATE_NULL);
|
gst_element_set_state (pipe, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipe));
|
gst_object_unref (pipe);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST (test_2_elements)
|
START_TEST (test_2_elements)
|
||||||
|
@ -156,11 +156,12 @@ START_TEST (test_stop_from_app)
|
||||||
gst_message_unref (gst_bus_pop (bus));
|
gst_message_unref (gst_bus_pop (bus));
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
assert_live_count (GST_TYPE_BUFFER, 0);
|
assert_live_count (GST_TYPE_BUFFER, 0);
|
||||||
}
|
}
|
||||||
END_TEST Suite * simple_launch_lines_suite (void)
|
END_TEST Suite *
|
||||||
|
simple_launch_lines_suite (void)
|
||||||
{
|
{
|
||||||
Suite *s = suite_create ("Pipelines");
|
Suite *s = suite_create ("Pipelines");
|
||||||
TCase *tc_chain = tcase_create ("linear");
|
TCase *tc_chain = tcase_create ("linear");
|
||||||
|
|
|
@ -63,8 +63,8 @@ START_TEST (test_src_sink)
|
||||||
srcpad = gst_element_get_pad (src, "src");
|
srcpad = gst_element_get_pad (src, "src");
|
||||||
sinkpad = gst_element_get_pad (sink, "sink");
|
sinkpad = gst_element_get_pad (sink, "sink");
|
||||||
gst_pad_link (srcpad, sinkpad);
|
gst_pad_link (srcpad, sinkpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (sinkpad));
|
gst_object_unref (sinkpad);
|
||||||
|
|
||||||
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
ret = gst_element_get_state (pipeline, NULL, NULL, NULL);
|
ret = gst_element_get_state (pipeline, NULL, NULL, NULL);
|
||||||
|
@ -102,8 +102,8 @@ START_TEST (test_livesrc_remove)
|
||||||
srcpad = gst_element_get_pad (src, "src");
|
srcpad = gst_element_get_pad (src, "src");
|
||||||
sinkpad = gst_element_get_pad (sink, "sink");
|
sinkpad = gst_element_get_pad (sink, "sink");
|
||||||
gst_pad_link (srcpad, sinkpad);
|
gst_pad_link (srcpad, sinkpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (sinkpad));
|
gst_object_unref (sinkpad);
|
||||||
|
|
||||||
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
||||||
|
@ -144,8 +144,8 @@ START_TEST (test_livesrc_sink)
|
||||||
srcpad = gst_element_get_pad (src, "src");
|
srcpad = gst_element_get_pad (src, "src");
|
||||||
sinkpad = gst_element_get_pad (sink, "sink");
|
sinkpad = gst_element_get_pad (sink, "sink");
|
||||||
gst_pad_link (srcpad, sinkpad);
|
gst_pad_link (srcpad, sinkpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (sinkpad));
|
gst_object_unref (sinkpad);
|
||||||
|
|
||||||
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
||||||
|
|
|
@ -70,7 +70,7 @@ main (gint argc, gchar * argv[])
|
||||||
} while (!done);
|
} while (!done);
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -196,8 +196,8 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_element_set_state (main_bin, GST_STATE_NULL);
|
gst_element_set_state (main_bin, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (filesink));
|
gst_object_unref (filesink);
|
||||||
gst_object_unref (GST_OBJECT (main_bin));
|
gst_object_unref (main_bin);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -127,7 +127,7 @@ main (int argc, char *argv[])
|
||||||
/* stop the pipeline */
|
/* stop the pipeline */
|
||||||
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,8 +74,8 @@ gst_play_type_find (GstBin * bin, GstElement * element)
|
||||||
gst_element_get_pad (typefind, "sink"));
|
gst_element_get_pad (typefind, "sink"));
|
||||||
gst_bin_remove (bin, typefind);
|
gst_bin_remove (bin, typefind);
|
||||||
gst_bin_remove (GST_BIN (pipeline), GST_ELEMENT (bin));
|
gst_bin_remove (GST_BIN (pipeline), GST_ELEMENT (bin));
|
||||||
gst_object_unref (GST_OBJECT (typefind));
|
gst_object_unref (typefind);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return caps;
|
return caps;
|
||||||
}
|
}
|
||||||
|
@ -213,9 +213,9 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
g_list_free (input_channels);
|
g_list_free (input_channels);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (audiosink));
|
gst_object_unref (audiosink);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (main_bin));
|
gst_object_unref (main_bin);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
@ -382,7 +382,7 @@ destroy_input_channel (input_channel_t * channel)
|
||||||
|
|
||||||
/* destroy elements */
|
/* destroy elements */
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (channel->pipe));
|
gst_object_unref (channel->pipe);
|
||||||
|
|
||||||
free (channel);
|
free (channel);
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
loop = g_main_loop_new (NULL, FALSE);
|
loop = g_main_loop_new (NULL, FALSE);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -795,7 +795,7 @@ gst_type_find_element_activate (GstPad * pad)
|
||||||
|
|
||||||
gst_pad_query_position (peer, &format, NULL, &size);
|
gst_pad_query_position (peer, &format, NULL, &size);
|
||||||
found_caps = gst_type_find_helper (peer, (guint64) size);
|
found_caps = gst_type_find_helper (peer, (guint64) size);
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
50
gst/gstbin.c
50
gst/gstbin.c
|
@ -528,12 +528,12 @@ gst_bin_remove_func (GstBin * bin, GstElement * element)
|
||||||
|
|
||||||
/* we ref here because after the _unparent() the element can be disposed
|
/* we ref here because after the _unparent() the element can be disposed
|
||||||
* and we still need it to fire a signal. */
|
* and we still need it to fire a signal. */
|
||||||
gst_object_ref (GST_OBJECT_CAST (element));
|
gst_object_ref (element);
|
||||||
gst_object_unparent (GST_OBJECT_CAST (element));
|
gst_object_unparent (GST_OBJECT_CAST (element));
|
||||||
|
|
||||||
g_signal_emit (G_OBJECT (bin), gst_bin_signals[ELEMENT_REMOVED], 0, element);
|
g_signal_emit (G_OBJECT (bin), gst_bin_signals[ELEMENT_REMOVED], 0, element);
|
||||||
/* element is really out of our control now */
|
/* element is really out of our control now */
|
||||||
gst_object_unref (GST_OBJECT_CAST (element));
|
gst_object_unref (element);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
@ -598,7 +598,7 @@ no_function:
|
||||||
static GstIteratorItem
|
static GstIteratorItem
|
||||||
iterate_child (GstIterator * it, GstElement * child)
|
iterate_child (GstIterator * it, GstElement * child)
|
||||||
{
|
{
|
||||||
gst_object_ref (GST_OBJECT (child));
|
gst_object_ref (child);
|
||||||
return GST_ITERATOR_ITEM_PASS;
|
return GST_ITERATOR_ITEM_PASS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -626,7 +626,7 @@ gst_bin_iterate_elements (GstBin * bin)
|
||||||
/* add ref because the iterator refs the bin. When the iterator
|
/* add ref because the iterator refs the bin. When the iterator
|
||||||
* is freed it will unref the bin again using the provided dispose
|
* is freed it will unref the bin again using the provided dispose
|
||||||
* function. */
|
* function. */
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
result = gst_iterator_new_list (GST_GET_LOCK (bin),
|
result = gst_iterator_new_list (GST_GET_LOCK (bin),
|
||||||
&bin->children_cookie,
|
&bin->children_cookie,
|
||||||
&bin->children,
|
&bin->children,
|
||||||
|
@ -641,7 +641,7 @@ gst_bin_iterate_elements (GstBin * bin)
|
||||||
static GstIteratorItem
|
static GstIteratorItem
|
||||||
iterate_child_recurse (GstIterator * it, GstElement * child)
|
iterate_child_recurse (GstIterator * it, GstElement * child)
|
||||||
{
|
{
|
||||||
gst_object_ref (GST_OBJECT (child));
|
gst_object_ref (child);
|
||||||
if (GST_IS_BIN (child)) {
|
if (GST_IS_BIN (child)) {
|
||||||
GstIterator *other = gst_bin_iterate_recurse (GST_BIN (child));
|
GstIterator *other = gst_bin_iterate_recurse (GST_BIN (child));
|
||||||
|
|
||||||
|
@ -674,7 +674,7 @@ gst_bin_iterate_recurse (GstBin * bin)
|
||||||
/* add ref because the iterator refs the bin. When the iterator
|
/* add ref because the iterator refs the bin. When the iterator
|
||||||
* is freed it will unref the bin again using the provided dispose
|
* is freed it will unref the bin again using the provided dispose
|
||||||
* function. */
|
* function. */
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
result = gst_iterator_new_list (GST_GET_LOCK (bin),
|
result = gst_iterator_new_list (GST_GET_LOCK (bin),
|
||||||
&bin->children_cookie,
|
&bin->children_cookie,
|
||||||
&bin->children,
|
&bin->children,
|
||||||
|
@ -720,7 +720,7 @@ has_ancestor (GstObject * object, GstObject * ancestor)
|
||||||
parent = gst_object_get_parent (object);
|
parent = gst_object_get_parent (object);
|
||||||
result = has_ancestor (parent, ancestor);
|
result = has_ancestor (parent, ancestor);
|
||||||
if (parent)
|
if (parent)
|
||||||
gst_object_unref (GST_OBJECT_CAST (parent));
|
gst_object_unref (parent);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -757,7 +757,7 @@ bin_element_is_semi_sink (GstElement * child, GstBin * bin)
|
||||||
if ((peer = gst_pad_get_peer (GST_PAD_CAST (pads->data)))) {
|
if ((peer = gst_pad_get_peer (GST_PAD_CAST (pads->data)))) {
|
||||||
connected_src =
|
connected_src =
|
||||||
has_ancestor (GST_OBJECT_CAST (peer), GST_OBJECT_CAST (bin));
|
has_ancestor (GST_OBJECT_CAST (peer), GST_OBJECT_CAST (bin));
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
if (connected_src) {
|
if (connected_src) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -871,14 +871,14 @@ restart:
|
||||||
while (children) {
|
while (children) {
|
||||||
GstElement *child = GST_ELEMENT_CAST (children->data);
|
GstElement *child = GST_ELEMENT_CAST (children->data);
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (child));
|
gst_object_ref (child);
|
||||||
/* now we release the lock to enter a non blocking wait. We
|
/* now we release the lock to enter a non blocking wait. We
|
||||||
* release the lock anyway since we can. */
|
* release the lock anyway since we can. */
|
||||||
GST_UNLOCK (bin);
|
GST_UNLOCK (bin);
|
||||||
|
|
||||||
ret = gst_element_get_state (child, NULL, NULL, &tv);
|
ret = gst_element_get_state (child, NULL, NULL, &tv);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (child));
|
gst_object_unref (child);
|
||||||
|
|
||||||
/* now grab the lock to iterate to the next child */
|
/* now grab the lock to iterate to the next child */
|
||||||
GST_LOCK (bin);
|
GST_LOCK (bin);
|
||||||
|
@ -932,7 +932,7 @@ restart:
|
||||||
while (children) {
|
while (children) {
|
||||||
GstElement *child = GST_ELEMENT_CAST (children->data);
|
GstElement *child = GST_ELEMENT_CAST (children->data);
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (child));
|
gst_object_ref (child);
|
||||||
/* now we release the lock to enter the potentialy blocking wait */
|
/* now we release the lock to enter the potentialy blocking wait */
|
||||||
GST_UNLOCK (bin);
|
GST_UNLOCK (bin);
|
||||||
|
|
||||||
|
@ -940,7 +940,7 @@ restart:
|
||||||
* ater the timeout. */
|
* ater the timeout. */
|
||||||
ret = gst_element_get_state (child, NULL, NULL, timeout);
|
ret = gst_element_get_state (child, NULL, NULL, timeout);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (child));
|
gst_object_unref (child);
|
||||||
|
|
||||||
/* now grab the lock to iterate to the next child */
|
/* now grab the lock to iterate to the next child */
|
||||||
GST_LOCK (bin);
|
GST_LOCK (bin);
|
||||||
|
@ -1105,7 +1105,7 @@ restart:
|
||||||
while (children) {
|
while (children) {
|
||||||
GstElement *child = GST_ELEMENT_CAST (children->data);
|
GstElement *child = GST_ELEMENT_CAST (children->data);
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (child));
|
gst_object_ref (child);
|
||||||
GST_UNLOCK (bin);
|
GST_UNLOCK (bin);
|
||||||
|
|
||||||
if (bin_element_is_sink (child, bin) == 0) {
|
if (bin_element_is_sink (child, bin) == 0) {
|
||||||
|
@ -1197,11 +1197,11 @@ restart:
|
||||||
|
|
||||||
/* make sure we don't have duplicates */
|
/* make sure we don't have duplicates */
|
||||||
while ((oldelem = g_queue_find (semi_queue, peer_elem))) {
|
while ((oldelem = g_queue_find (semi_queue, peer_elem))) {
|
||||||
gst_object_unref (GST_OBJECT (peer_elem));
|
gst_object_unref (peer_elem);
|
||||||
g_queue_delete_link (semi_queue, oldelem);
|
g_queue_delete_link (semi_queue, oldelem);
|
||||||
}
|
}
|
||||||
while ((oldelem = g_queue_find (elem_queue, peer_elem))) {
|
while ((oldelem = g_queue_find (elem_queue, peer_elem))) {
|
||||||
gst_object_unref (GST_OBJECT (peer_elem));
|
gst_object_unref (peer_elem);
|
||||||
g_queue_delete_link (elem_queue, oldelem);
|
g_queue_delete_link (elem_queue, oldelem);
|
||||||
}
|
}
|
||||||
/* was reffed before pushing on the queue by the
|
/* was reffed before pushing on the queue by the
|
||||||
|
@ -1211,13 +1211,13 @@ restart:
|
||||||
GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
|
GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
|
||||||
"not adding element %s to queue, it is in another bin",
|
"not adding element %s to queue, it is in another bin",
|
||||||
GST_ELEMENT_NAME (peer_elem));
|
GST_ELEMENT_NAME (peer_elem));
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer_elem));
|
gst_object_unref (peer_elem);
|
||||||
}
|
}
|
||||||
if (parent) {
|
if (parent) {
|
||||||
gst_object_unref (parent);
|
gst_object_unref (parent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
} else {
|
} else {
|
||||||
GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
|
GST_CAT_DEBUG_OBJECT (GST_CAT_STATES, element,
|
||||||
"pad %s:%s does not have a peer", GST_DEBUG_PAD_NAME (pad));
|
"pad %s:%s does not have a peer", GST_DEBUG_PAD_NAME (pad));
|
||||||
|
@ -1253,7 +1253,7 @@ restart:
|
||||||
pending, gst_element_state_get_name (pending));
|
pending, gst_element_state_get_name (pending));
|
||||||
ret = GST_STATE_FAILURE;
|
ret = GST_STATE_FAILURE;
|
||||||
/* release refcount of element we popped off the queue */
|
/* release refcount of element we popped off the queue */
|
||||||
gst_object_unref (GST_OBJECT (qelement));
|
gst_object_unref (qelement);
|
||||||
goto exit;
|
goto exit;
|
||||||
case GST_STATE_NO_PREROLL:
|
case GST_STATE_NO_PREROLL:
|
||||||
GST_CAT_DEBUG (GST_CAT_STATES,
|
GST_CAT_DEBUG (GST_CAT_STATES,
|
||||||
|
@ -1267,7 +1267,7 @@ restart:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
next_element:
|
next_element:
|
||||||
gst_object_unref (GST_OBJECT (qelement));
|
gst_object_unref (qelement);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (have_no_preroll) {
|
if (have_no_preroll) {
|
||||||
|
@ -1306,7 +1306,7 @@ gst_bin_dispose (GObject * object)
|
||||||
GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
|
GST_CAT_DEBUG_OBJECT (GST_CAT_REFCOUNTING, object, "dispose");
|
||||||
|
|
||||||
/* ref to not hit 0 again */
|
/* ref to not hit 0 again */
|
||||||
gst_object_ref (GST_OBJECT (object));
|
gst_object_ref (object);
|
||||||
|
|
||||||
while (bin->children) {
|
while (bin->children) {
|
||||||
gst_bin_remove (bin, GST_ELEMENT (bin->children->data));
|
gst_bin_remove (bin, GST_ELEMENT (bin->children->data));
|
||||||
|
@ -1347,7 +1347,7 @@ gst_bin_send_event (GstElement * element, GstEvent * event)
|
||||||
gst_event_ref (event);
|
gst_event_ref (event);
|
||||||
sink = GST_ELEMENT_CAST (data);
|
sink = GST_ELEMENT_CAST (data);
|
||||||
res &= gst_element_send_event (sink, event);
|
res &= gst_element_send_event (sink, event);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GST_ITERATOR_RESYNC:
|
case GST_ITERATOR_RESYNC:
|
||||||
|
@ -1386,7 +1386,7 @@ gst_bin_query (GstElement * element, GstQuery * query)
|
||||||
|
|
||||||
sink = GST_ELEMENT_CAST (data);
|
sink = GST_ELEMENT_CAST (data);
|
||||||
res = gst_element_query (sink, query);
|
res = gst_element_query (sink, query);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GST_ITERATOR_RESYNC:
|
case GST_ITERATOR_RESYNC:
|
||||||
|
@ -1413,7 +1413,7 @@ compare_name (GstElement * element, const gchar * name)
|
||||||
GST_UNLOCK (element);
|
GST_UNLOCK (element);
|
||||||
|
|
||||||
if (eq != 0) {
|
if (eq != 0) {
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
return eq;
|
return eq;
|
||||||
}
|
}
|
||||||
|
@ -1499,7 +1499,7 @@ compare_interface (GstElement * element, gpointer interface)
|
||||||
} else {
|
} else {
|
||||||
/* we did not find the element, need to release the ref
|
/* we did not find the element, need to release the ref
|
||||||
* added by the iterator */
|
* added by the iterator */
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
ret = 1;
|
ret = 1;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1613,7 +1613,7 @@ gst_bin_restore_thyself (GstObject * object, xmlNodePtr self)
|
||||||
|
|
||||||
/* it had to be parented to find the pads, now we ref and unparent so
|
/* it had to be parented to find the pads, now we ref and unparent so
|
||||||
* we can add it to the bin */
|
* we can add it to the bin */
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_unparent (GST_OBJECT (element));
|
gst_object_unparent (GST_OBJECT (element));
|
||||||
|
|
||||||
gst_bin_add (bin, element);
|
gst_bin_add (bin, element);
|
||||||
|
|
|
@ -433,7 +433,7 @@ gst_bus_source_finalize (GSource * source)
|
||||||
{
|
{
|
||||||
GstBusSource *bsource = (GstBusSource *) source;
|
GstBusSource *bsource = (GstBusSource *) source;
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (bsource->bus));
|
gst_object_unref (bsource->bus);
|
||||||
bsource->bus = NULL;
|
bsource->bus = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -461,7 +461,7 @@ gst_bus_create_watch (GstBus * bus)
|
||||||
|
|
||||||
source = (GstBusSource *) g_source_new (&gst_bus_source_funcs,
|
source = (GstBusSource *) g_source_new (&gst_bus_source_funcs,
|
||||||
sizeof (GstBusSource));
|
sizeof (GstBusSource));
|
||||||
gst_object_ref (GST_OBJECT_CAST (bus));
|
gst_object_ref (bus);
|
||||||
source->bus = bus;
|
source->bus = bus;
|
||||||
|
|
||||||
return (GSource *) source;
|
return (GSource *) source;
|
||||||
|
|
|
@ -581,7 +581,7 @@ gst_element_remove_pad (GstElement * element, GstPad * pad)
|
||||||
else
|
else
|
||||||
gst_pad_unlink (GST_PAD_CAST (peer), pad);
|
gst_pad_unlink (GST_PAD_CAST (peer), pad);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_LOCK (element);
|
GST_LOCK (element);
|
||||||
|
@ -683,7 +683,7 @@ gst_element_get_static_pad (GstElement * element, const gchar * name)
|
||||||
g_list_find_custom (element->pads, name, (GCompareFunc) pad_compare_name);
|
g_list_find_custom (element->pads, name, (GCompareFunc) pad_compare_name);
|
||||||
if (find) {
|
if (find) {
|
||||||
result = GST_PAD_CAST (find->data);
|
result = GST_PAD_CAST (find->data);
|
||||||
gst_object_ref (GST_OBJECT_CAST (result));
|
gst_object_ref (result);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result == NULL) {
|
if (result == NULL) {
|
||||||
|
@ -711,7 +711,7 @@ gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
|
||||||
newpad = (oclass->request_new_pad) (element, templ, name);
|
newpad = (oclass->request_new_pad) (element, templ, name);
|
||||||
|
|
||||||
if (newpad)
|
if (newpad)
|
||||||
gst_object_ref (GST_OBJECT (newpad));
|
gst_object_ref (newpad);
|
||||||
|
|
||||||
return newpad;
|
return newpad;
|
||||||
}
|
}
|
||||||
|
@ -820,7 +820,7 @@ gst_element_get_pad (GstElement * element, const gchar * name)
|
||||||
GstIteratorItem
|
GstIteratorItem
|
||||||
iterate_pad (GstIterator * it, GstPad * pad)
|
iterate_pad (GstIterator * it, GstPad * pad)
|
||||||
{
|
{
|
||||||
gst_object_ref (GST_OBJECT_CAST (pad));
|
gst_object_ref (pad);
|
||||||
return GST_ITERATOR_ITEM_PASS;
|
return GST_ITERATOR_ITEM_PASS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -842,7 +842,7 @@ gst_element_iterate_pads (GstElement * element)
|
||||||
g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
|
g_return_val_if_fail (GST_IS_ELEMENT (element), NULL);
|
||||||
|
|
||||||
GST_LOCK (element);
|
GST_LOCK (element);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
result = gst_iterator_new_list (GST_GET_LOCK (element),
|
result = gst_iterator_new_list (GST_GET_LOCK (element),
|
||||||
&element->pads_cookie,
|
&element->pads_cookie,
|
||||||
&element->pads,
|
&element->pads,
|
||||||
|
@ -862,7 +862,8 @@ direction_filter (gconstpointer pad, gconstpointer direction)
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
/* unref */
|
/* unref */
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
/* FIXME: this is very stupid */
|
||||||
|
gst_object_unref (GST_OBJECT_CAST (pad));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -925,7 +926,7 @@ gst_element_class_add_pad_template (GstElementClass * klass,
|
||||||
templ->name_template) == NULL);
|
templ->name_template) == NULL);
|
||||||
|
|
||||||
klass->padtemplates = g_list_append (klass->padtemplates,
|
klass->padtemplates = g_list_append (klass->padtemplates,
|
||||||
gst_object_ref (GST_OBJECT (templ)));
|
gst_object_ref (templ));
|
||||||
klass->numpadtemplates++;
|
klass->numpadtemplates++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1041,7 +1042,7 @@ gst_element_get_random_pad (GstElement * element, GstPadDirection dir)
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
}
|
}
|
||||||
if (result)
|
if (result)
|
||||||
gst_object_ref (GST_OBJECT (result));
|
gst_object_ref (result);
|
||||||
|
|
||||||
GST_UNLOCK (element);
|
GST_UNLOCK (element);
|
||||||
|
|
||||||
|
@ -1094,9 +1095,9 @@ gst_element_send_event (GstElement * element, GstEvent * event)
|
||||||
"sending event to random pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
"sending event to random pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
||||||
|
|
||||||
result = gst_pad_send_event (peer, event);
|
result = gst_pad_send_event (peer, event);
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "can't send event on element %s",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "can't send event on element %s",
|
||||||
|
@ -1165,9 +1166,9 @@ gst_element_get_query_types (GstElement * element)
|
||||||
if (peer) {
|
if (peer) {
|
||||||
result = gst_pad_get_query_types (peer);
|
result = gst_pad_get_query_types (peer);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
@ -1209,7 +1210,7 @@ gst_element_query (GstElement * element, GstQuery * query)
|
||||||
if (pad) {
|
if (pad) {
|
||||||
result = gst_pad_query (pad, query);
|
result = gst_pad_query (pad, query);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
} else {
|
} else {
|
||||||
pad = gst_element_get_random_pad (element, GST_PAD_SINK);
|
pad = gst_element_get_random_pad (element, GST_PAD_SINK);
|
||||||
if (pad) {
|
if (pad) {
|
||||||
|
@ -1218,9 +1219,9 @@ gst_element_query (GstElement * element, GstQuery * query)
|
||||||
if (peer) {
|
if (peer) {
|
||||||
result = gst_pad_query (peer, query);
|
result = gst_pad_query (peer, query);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1258,12 +1259,12 @@ gst_element_post_message (GstElement * element, GstMessage * message)
|
||||||
gst_message_unref (message);
|
gst_message_unref (message);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
gst_object_ref (GST_OBJECT (bus));
|
gst_object_ref (bus);
|
||||||
GST_DEBUG ("... on bus %p", bus);
|
GST_DEBUG ("... on bus %p", bus);
|
||||||
GST_UNLOCK (element);
|
GST_UNLOCK (element);
|
||||||
|
|
||||||
result = gst_bus_post (bus, message);
|
result = gst_bus_post (bus, message);
|
||||||
gst_object_unref (GST_OBJECT (bus));
|
gst_object_unref (bus);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -1850,7 +1851,7 @@ activate_pads (GstPad * pad, GValue * ret, gboolean * active)
|
||||||
if (!gst_pad_set_active (pad, *active))
|
if (!gst_pad_set_active (pad, *active))
|
||||||
g_value_set_boolean (ret, FALSE);
|
g_value_set_boolean (ret, FALSE);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2009,7 +2010,7 @@ gst_element_dispose (GObject * object)
|
||||||
GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "dispose");
|
GST_CAT_INFO_OBJECT (GST_CAT_REFCOUNTING, element, "dispose");
|
||||||
|
|
||||||
/* ref so we don't hit 0 again */
|
/* ref so we don't hit 0 again */
|
||||||
gst_object_ref (GST_OBJECT (object));
|
gst_object_ref (object);
|
||||||
|
|
||||||
/* first we break all our links with the ouside */
|
/* first we break all our links with the ouside */
|
||||||
while (element->pads) {
|
while (element->pads) {
|
||||||
|
@ -2271,7 +2272,7 @@ gst_element_get_manager (GstElement * element)
|
||||||
|
|
||||||
GST_LOCK (element);
|
GST_LOCK (element);
|
||||||
result = GST_ELEMENT_MANAGER (element);
|
result = GST_ELEMENT_MANAGER (element);
|
||||||
gst_object_ref (GST_OBJECT (result));
|
gst_object_ref (result);
|
||||||
GST_UNLOCK (element);
|
GST_UNLOCK (element);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -579,7 +579,7 @@ gst_ghost_pad_set_property (GObject * object, guint prop_id,
|
||||||
} else {
|
} else {
|
||||||
gst_pad_unlink (intpeer, pad->internal);
|
gst_pad_unlink (intpeer, pad->internal);
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (intpeer));
|
gst_object_unref (intpeer);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* should dispose it */
|
/* should dispose it */
|
||||||
|
|
48
gst/gstpad.c
48
gst/gstpad.c
|
@ -536,7 +536,7 @@ gst_pad_activate_pull (GstPad * pad, gboolean active)
|
||||||
GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
|
GST_CAT_DEBUG_OBJECT (GST_CAT_PADS, pad,
|
||||||
"activate_pull on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
|
"activate_pull on peer (%s:%s) failed", GST_DEBUG_PAD_NAME (peer));
|
||||||
GST_UNLOCK (peer);
|
GST_UNLOCK (peer);
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1706,12 +1706,12 @@ gst_pad_peer_get_caps (GstPad * pad)
|
||||||
if (G_UNLIKELY (GST_PAD_IS_IN_GETCAPS (peerpad)))
|
if (G_UNLIKELY (GST_PAD_IS_IN_GETCAPS (peerpad)))
|
||||||
goto was_dispatching;
|
goto was_dispatching;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peerpad));
|
gst_object_ref (peerpad);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
result = gst_pad_get_caps (peerpad);
|
result = gst_pad_get_caps (peerpad);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (peerpad));
|
gst_object_unref (peerpad);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
|
@ -1989,7 +1989,7 @@ gst_pad_get_peer (GstPad * pad)
|
||||||
GST_LOCK (pad);
|
GST_LOCK (pad);
|
||||||
result = GST_PAD_PEER (pad);
|
result = GST_PAD_PEER (pad);
|
||||||
if (result)
|
if (result)
|
||||||
gst_object_ref (GST_OBJECT (result));
|
gst_object_ref (result);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
@ -2029,12 +2029,12 @@ gst_pad_get_allowed_caps (GstPad * srcpad)
|
||||||
GST_CAT_DEBUG (GST_CAT_PROPERTIES, "%s:%s: getting allowed caps",
|
GST_CAT_DEBUG (GST_CAT_PROPERTIES, "%s:%s: getting allowed caps",
|
||||||
GST_DEBUG_PAD_NAME (srcpad));
|
GST_DEBUG_PAD_NAME (srcpad));
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peer));
|
gst_object_ref (peer);
|
||||||
GST_UNLOCK (srcpad);
|
GST_UNLOCK (srcpad);
|
||||||
mycaps = gst_pad_get_caps (srcpad);
|
mycaps = gst_pad_get_caps (srcpad);
|
||||||
|
|
||||||
peercaps = gst_pad_get_caps (peer);
|
peercaps = gst_pad_get_caps (peer);
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
|
|
||||||
caps = gst_caps_intersect (mycaps, peercaps);
|
caps = gst_caps_intersect (mycaps, peercaps);
|
||||||
gst_caps_unref (peercaps);
|
gst_caps_unref (peercaps);
|
||||||
|
@ -2147,7 +2147,7 @@ gst_pad_alloc_buffer (GstPad * pad, guint64 offset, gint size, GstCaps * caps,
|
||||||
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
||||||
goto no_peer;
|
goto no_peer;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peer));
|
gst_object_ref (peer);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
if (G_LIKELY ((bufferallocfunc = peer->bufferallocfunc) == NULL))
|
if (G_LIKELY ((bufferallocfunc = peer->bufferallocfunc) == NULL))
|
||||||
|
@ -2172,7 +2172,7 @@ gst_pad_alloc_buffer (GstPad * pad, guint64 offset, gint size, GstCaps * caps,
|
||||||
goto fallback;
|
goto fallback;
|
||||||
|
|
||||||
do_caps:
|
do_caps:
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
|
|
||||||
/* FIXME, move capnego this into a base class? */
|
/* FIXME, move capnego this into a base class? */
|
||||||
caps = GST_BUFFER_CAPS (*buf);
|
caps = GST_BUFFER_CAPS (*buf);
|
||||||
|
@ -2198,7 +2198,7 @@ flushing:
|
||||||
{
|
{
|
||||||
/* peer was flushing */
|
/* peer was flushing */
|
||||||
GST_UNLOCK (peer);
|
GST_UNLOCK (peer);
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
GST_CAT_DEBUG (GST_CAT_PADS,
|
GST_CAT_DEBUG (GST_CAT_PADS,
|
||||||
"%s:%s called bufferallocfunc but peer was flushing, returning NULL",
|
"%s:%s called bufferallocfunc but peer was flushing, returning NULL",
|
||||||
GST_DEBUG_PAD_NAME (pad));
|
GST_DEBUG_PAD_NAME (pad));
|
||||||
|
@ -2224,7 +2224,7 @@ not_negotiated:
|
||||||
}
|
}
|
||||||
peer_error:
|
peer_error:
|
||||||
{
|
{
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
|
GST_CAT_LOG_OBJECT (GST_CAT_SCHEDULING, pad,
|
||||||
"alloc function retured error %d", ret);
|
"alloc function retured error %d", ret);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -2627,7 +2627,7 @@ handle_pad_block (GstPad * pad)
|
||||||
"signal block taken on pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
"signal block taken on pad %s:%s", GST_DEBUG_PAD_NAME (pad));
|
||||||
|
|
||||||
/* need to grab extra ref for the callbacks */
|
/* need to grab extra ref for the callbacks */
|
||||||
gst_object_ref (GST_OBJECT_CAST (pad));
|
gst_object_ref (pad);
|
||||||
|
|
||||||
callback = pad->block_callback;
|
callback = pad->block_callback;
|
||||||
if (callback) {
|
if (callback) {
|
||||||
|
@ -2654,7 +2654,7 @@ handle_pad_block (GstPad * pad)
|
||||||
GST_PAD_BLOCK_SIGNAL (pad);
|
GST_PAD_BLOCK_SIGNAL (pad);
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
@ -2780,12 +2780,12 @@ gst_pad_push (GstPad * pad, GstBuffer * buffer)
|
||||||
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
||||||
goto not_linked;
|
goto not_linked;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peer));
|
gst_object_ref (peer);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
ret = gst_pad_chain (peer, buffer);
|
ret = gst_pad_chain (peer, buffer);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -2832,7 +2832,7 @@ gst_pad_check_pull_range (GstPad * pad)
|
||||||
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
||||||
goto not_connected;
|
goto not_connected;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peer));
|
gst_object_ref (peer);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
/* see note in above function */
|
/* see note in above function */
|
||||||
|
@ -2846,7 +2846,7 @@ gst_pad_check_pull_range (GstPad * pad)
|
||||||
ret = checkgetrangefunc (peer);
|
ret = checkgetrangefunc (peer);
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -2964,12 +2964,12 @@ gst_pad_pull_range (GstPad * pad, guint64 offset, guint size,
|
||||||
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
if (G_UNLIKELY ((peer = GST_PAD_PEER (pad)) == NULL))
|
||||||
goto not_connected;
|
goto not_connected;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peer));
|
gst_object_ref (peer);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
ret = gst_pad_get_range (peer, offset, size, buffer);
|
ret = gst_pad_get_range (peer, offset, size, buffer);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (peer));
|
gst_object_unref (peer);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -3010,12 +3010,12 @@ gst_pad_push_event (GstPad * pad, GstEvent * event)
|
||||||
if (peerpad == NULL)
|
if (peerpad == NULL)
|
||||||
goto not_linked;
|
goto not_linked;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (peerpad));
|
gst_object_ref (peerpad);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
result = gst_pad_send_event (peerpad, event);
|
result = gst_pad_send_event (peerpad, event);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (peerpad));
|
gst_object_unref (peerpad);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
|
@ -3050,7 +3050,7 @@ gst_pad_send_event (GstPad * pad, GstEvent * event)
|
||||||
GST_LOCK (pad);
|
GST_LOCK (pad);
|
||||||
|
|
||||||
if (GST_EVENT_SRC (event) == NULL)
|
if (GST_EVENT_SRC (event) == NULL)
|
||||||
GST_EVENT_SRC (event) = gst_object_ref (GST_OBJECT (pad));
|
GST_EVENT_SRC (event) = gst_object_ref (pad);
|
||||||
|
|
||||||
switch (GST_EVENT_TYPE (event)) {
|
switch (GST_EVENT_TYPE (event)) {
|
||||||
case GST_EVENT_FLUSH:
|
case GST_EVENT_FLUSH:
|
||||||
|
@ -3080,12 +3080,12 @@ gst_pad_send_event (GstPad * pad, GstEvent * event)
|
||||||
if ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL)
|
if ((eventfunc = GST_PAD_EVENTFUNC (pad)) == NULL)
|
||||||
goto no_function;
|
goto no_function;
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT_CAST (pad));
|
gst_object_ref (pad);
|
||||||
GST_UNLOCK (pad);
|
GST_UNLOCK (pad);
|
||||||
|
|
||||||
result = eventfunc (GST_PAD_CAST (pad), event);
|
result = eventfunc (GST_PAD_CAST (pad), event);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (pad));
|
gst_object_unref (pad);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
|
@ -3474,7 +3474,7 @@ gst_pad_stop_task (GstPad * pad)
|
||||||
GST_STREAM_LOCK (pad);
|
GST_STREAM_LOCK (pad);
|
||||||
GST_STREAM_UNLOCK (pad);
|
GST_STREAM_UNLOCK (pad);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT_CAST (task));
|
gst_object_unref (task);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
|
|
|
@ -256,7 +256,7 @@ is_eos (GstPipeline * pipeline)
|
||||||
GST_DEBUG ("element %s posted EOS", name);
|
GST_DEBUG ("element %s posted EOS", name);
|
||||||
}
|
}
|
||||||
g_free (name);
|
g_free (name);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GST_ITERATOR_RESYNC:
|
case GST_ITERATOR_RESYNC:
|
||||||
|
@ -503,7 +503,7 @@ gst_pipeline_get_clock_func (GstElement * element)
|
||||||
GST_LOCK (pipeline);
|
GST_LOCK (pipeline);
|
||||||
if (GST_FLAG_IS_SET (pipeline, GST_PIPELINE_FLAG_FIXED_CLOCK)) {
|
if (GST_FLAG_IS_SET (pipeline, GST_PIPELINE_FLAG_FIXED_CLOCK)) {
|
||||||
clock = pipeline->fixed_clock;
|
clock = pipeline->fixed_clock;
|
||||||
gst_object_ref (GST_OBJECT (clock));
|
gst_object_ref (clock);
|
||||||
GST_UNLOCK (pipeline);
|
GST_UNLOCK (pipeline);
|
||||||
|
|
||||||
GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using fixed clock %p (%s)",
|
GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline using fixed clock %p (%s)",
|
||||||
|
@ -518,7 +518,7 @@ gst_pipeline_get_clock_func (GstElement * element)
|
||||||
/* we unref since this function is not supposed to increase refcount
|
/* we unref since this function is not supposed to increase refcount
|
||||||
* of clock object returned; this is ok since the systemclock always
|
* of clock object returned; this is ok since the systemclock always
|
||||||
* has a refcount of at least one in the current code. */
|
* has a refcount of at least one in the current code. */
|
||||||
gst_object_unref (GST_OBJECT (clock));
|
gst_object_unref (clock);
|
||||||
GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline obtained system clock: %p (%s)",
|
GST_CAT_DEBUG (GST_CAT_CLOCK, "pipeline obtained system clock: %p (%s)",
|
||||||
clock, clock ? GST_STR_NULL (GST_OBJECT_NAME (clock)) : "-");
|
clock, clock ? GST_STR_NULL (GST_OBJECT_NAME (clock)) : "-");
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -346,7 +346,7 @@ gst_scheduler_factory_create (GstSchedulerFactory * factory,
|
||||||
sched->parent = parent;
|
sched->parent = parent;
|
||||||
|
|
||||||
/* let's refcount the scheduler */
|
/* let's refcount the scheduler */
|
||||||
gst_object_ref (GST_OBJECT (sched));
|
gst_object_ref (sched);
|
||||||
gst_object_sink (GST_OBJECT (sched));
|
gst_object_sink (GST_OBJECT (sched));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -170,7 +170,7 @@ gst_system_clock_obtain (void)
|
||||||
|
|
||||||
/* we created the global clock; take ownership so
|
/* we created the global clock; take ownership so
|
||||||
* we can hand out instances later */
|
* we can hand out instances later */
|
||||||
gst_object_ref (GST_OBJECT (clock));
|
gst_object_ref (clock);
|
||||||
gst_object_sink (GST_OBJECT (clock));
|
gst_object_sink (GST_OBJECT (clock));
|
||||||
|
|
||||||
_the_system_clock = clock;
|
_the_system_clock = clock;
|
||||||
|
@ -181,7 +181,7 @@ gst_system_clock_obtain (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we ref it since we are a clock factory. */
|
/* we ref it since we are a clock factory. */
|
||||||
gst_object_ref (GST_OBJECT (clock));
|
gst_object_ref (clock);
|
||||||
return clock;
|
return clock;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -485,7 +485,7 @@ gst_element_make_from_uri (const GstURIType type, const gchar * uri,
|
||||||
|
|
||||||
if (gst_uri_handler_set_uri (handler, uri))
|
if (gst_uri_handler_set_uri (handler, uri))
|
||||||
break;
|
break;
|
||||||
gst_object_unref (GST_OBJECT (ret));
|
gst_object_unref (ret);
|
||||||
ret = NULL;
|
ret = NULL;
|
||||||
}
|
}
|
||||||
walk = walk->next;
|
walk = walk->next;
|
||||||
|
|
|
@ -492,7 +492,7 @@ gst_element_request_pad (GstElement * element, GstPadTemplate * templ,
|
||||||
newpad = (oclass->request_new_pad) (element, templ, name);
|
newpad = (oclass->request_new_pad) (element, templ, name);
|
||||||
|
|
||||||
if (newpad)
|
if (newpad)
|
||||||
gst_object_ref (GST_OBJECT (newpad));
|
gst_object_ref (newpad);
|
||||||
|
|
||||||
return newpad;
|
return newpad;
|
||||||
}
|
}
|
||||||
|
@ -638,9 +638,9 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
|
||||||
} else {
|
} else {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unreffing pads");
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "unreffing pads");
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (current));
|
gst_object_unref (current);
|
||||||
if (peer)
|
if (peer)
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -664,7 +664,7 @@ gst_element_get_compatible_pad (GstElement * element, GstPad * pad,
|
||||||
templ = gst_pad_template_new ((gchar *) GST_PAD_NAME (pad),
|
templ = gst_pad_template_new ((gchar *) GST_PAD_NAME (pad),
|
||||||
GST_PAD_DIRECTION (pad), GST_PAD_ALWAYS, templcaps);
|
GST_PAD_DIRECTION (pad), GST_PAD_ALWAYS, templcaps);
|
||||||
foundpad = gst_element_request_compatible_pad (element, templ);
|
foundpad = gst_element_request_compatible_pad (element, templ);
|
||||||
gst_object_unref (GST_OBJECT (templ));
|
gst_object_unref (templ);
|
||||||
|
|
||||||
if (foundpad) {
|
if (foundpad) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
|
||||||
|
@ -953,13 +953,13 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
if (!(GST_PAD_DIRECTION (srcpad) == GST_PAD_SRC)) {
|
if (!(GST_PAD_DIRECTION (srcpad) == GST_PAD_SRC)) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no src pad",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no src pad",
|
||||||
GST_DEBUG_PAD_NAME (srcpad));
|
GST_DEBUG_PAD_NAME (srcpad));
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if (GST_PAD_PEER (srcpad) != NULL) {
|
if (GST_PAD_PEER (srcpad) != NULL) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
|
||||||
GST_DEBUG_PAD_NAME (srcpad));
|
GST_DEBUG_PAD_NAME (srcpad));
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -969,7 +969,7 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
srcpads = GST_ELEMENT_PADS (src);
|
srcpads = GST_ELEMENT_PADS (src);
|
||||||
srcpad = srcpads ? GST_PAD_CAST (srcpads->data) : NULL;
|
srcpad = srcpads ? GST_PAD_CAST (srcpads->data) : NULL;
|
||||||
if (srcpad)
|
if (srcpad)
|
||||||
gst_object_ref (GST_OBJECT (srcpad));
|
gst_object_ref (srcpad);
|
||||||
GST_UNLOCK (src);
|
GST_UNLOCK (src);
|
||||||
}
|
}
|
||||||
if (destpadname) {
|
if (destpadname) {
|
||||||
|
@ -982,13 +982,13 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
if (!(GST_PAD_DIRECTION (destpad) == GST_PAD_SINK)) {
|
if (!(GST_PAD_DIRECTION (destpad) == GST_PAD_SINK)) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no sink pad",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is no sink pad",
|
||||||
GST_DEBUG_PAD_NAME (destpad));
|
GST_DEBUG_PAD_NAME (destpad));
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if (GST_PAD_PEER (destpad) != NULL) {
|
if (GST_PAD_PEER (destpad) != NULL) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "pad %s:%s is already linked",
|
||||||
GST_DEBUG_PAD_NAME (destpad));
|
GST_DEBUG_PAD_NAME (destpad));
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -998,7 +998,7 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
destpads = GST_ELEMENT_PADS (dest);
|
destpads = GST_ELEMENT_PADS (dest);
|
||||||
destpad = destpads ? GST_PAD_CAST (destpads->data) : NULL;
|
destpad = destpads ? GST_PAD_CAST (destpads->data) : NULL;
|
||||||
if (destpad)
|
if (destpad)
|
||||||
gst_object_ref (GST_OBJECT (destpad));
|
gst_object_ref (destpad);
|
||||||
GST_UNLOCK (dest);
|
GST_UNLOCK (dest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1008,8 +1008,8 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
/* two explicitly specified pads */
|
/* two explicitly specified pads */
|
||||||
result = pad_link_maybe_ghosting (srcpad, destpad);
|
result = pad_link_maybe_ghosting (srcpad, destpad);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -1027,7 +1027,7 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
|
|
||||||
if (destpadname) {
|
if (destpadname) {
|
||||||
temp = destpad;
|
temp = destpad;
|
||||||
gst_object_ref (GST_OBJECT (temp));
|
gst_object_ref (temp);
|
||||||
} else {
|
} else {
|
||||||
temp = gst_element_get_compatible_pad (dest, srcpad, NULL);
|
temp = gst_element_get_compatible_pad (dest, srcpad, NULL);
|
||||||
}
|
}
|
||||||
|
@ -1036,23 +1036,23 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
|
||||||
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (temp));
|
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (temp));
|
||||||
if (destpad)
|
if (destpad)
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (temp));
|
gst_object_unref (temp);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (temp) {
|
if (temp) {
|
||||||
gst_object_unref (GST_OBJECT (temp));
|
gst_object_unref (temp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* find a better way for this mess */
|
/* find a better way for this mess */
|
||||||
if (srcpads) {
|
if (srcpads) {
|
||||||
srcpads = g_list_next (srcpads);
|
srcpads = g_list_next (srcpads);
|
||||||
if (srcpads) {
|
if (srcpads) {
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
srcpad = GST_PAD_CAST (srcpads->data);
|
srcpad = GST_PAD_CAST (srcpads->data);
|
||||||
gst_object_ref (GST_OBJECT (srcpad));
|
gst_object_ref (srcpad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} while (srcpads);
|
} while (srcpads);
|
||||||
|
@ -1060,13 +1060,13 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
if (srcpadname) {
|
if (srcpadname) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s:%s to %s",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s:%s to %s",
|
||||||
GST_DEBUG_PAD_NAME (srcpad), GST_ELEMENT_NAME (dest));
|
GST_DEBUG_PAD_NAME (srcpad), GST_ELEMENT_NAME (dest));
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
if (destpad)
|
if (destpad)
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
} else {
|
} else {
|
||||||
if (srcpad)
|
if (srcpad)
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
srcpad = NULL;
|
srcpad = NULL;
|
||||||
}
|
}
|
||||||
if (destpad) {
|
if (destpad) {
|
||||||
|
@ -1081,22 +1081,22 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
if (temp && pad_link_maybe_ghosting (temp, destpad)) {
|
if (temp && pad_link_maybe_ghosting (temp, destpad)) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "linked pad %s:%s to pad %s:%s",
|
||||||
GST_DEBUG_PAD_NAME (temp), GST_DEBUG_PAD_NAME (destpad));
|
GST_DEBUG_PAD_NAME (temp), GST_DEBUG_PAD_NAME (destpad));
|
||||||
gst_object_unref (GST_OBJECT (temp));
|
gst_object_unref (temp);
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
if (srcpad)
|
if (srcpad)
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
if (temp) {
|
if (temp) {
|
||||||
gst_object_unref (GST_OBJECT (temp));
|
gst_object_unref (temp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (destpads) {
|
if (destpads) {
|
||||||
destpads = g_list_next (destpads);
|
destpads = g_list_next (destpads);
|
||||||
if (destpads) {
|
if (destpads) {
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
destpad = GST_PAD_CAST (destpads->data);
|
destpad = GST_PAD_CAST (destpads->data);
|
||||||
gst_object_ref (GST_OBJECT (destpad));
|
gst_object_ref (destpad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} while (destpads);
|
} while (destpads);
|
||||||
|
@ -1104,14 +1104,14 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
if (destpadname) {
|
if (destpadname) {
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s to %s:%s",
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS, "no link possible from %s to %s:%s",
|
||||||
GST_ELEMENT_NAME (src), GST_DEBUG_PAD_NAME (destpad));
|
GST_ELEMENT_NAME (src), GST_DEBUG_PAD_NAME (destpad));
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
if (srcpad)
|
if (srcpad)
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
} else {
|
} else {
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
if (srcpad)
|
if (srcpad)
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
srcpad = NULL;
|
srcpad = NULL;
|
||||||
destpad = NULL;
|
destpad = NULL;
|
||||||
}
|
}
|
||||||
|
@ -1139,8 +1139,8 @@ gst_element_link_pads (GstElement * src, const gchar * srcpadname,
|
||||||
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
|
GST_CAT_DEBUG (GST_CAT_ELEMENT_PADS,
|
||||||
"linked pad %s:%s to pad %s:%s",
|
"linked pad %s:%s to pad %s:%s",
|
||||||
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (destpad));
|
GST_DEBUG_PAD_NAME (srcpad), GST_DEBUG_PAD_NAME (destpad));
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (destpad));
|
gst_object_unref (destpad);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
/* it failed, so we release the request pads */
|
/* it failed, so we release the request pads */
|
||||||
|
@ -1318,12 +1318,12 @@ gst_element_unlink (GstElement * src, GstElement * dest)
|
||||||
gst_pad_unlink (pad, peerpad);
|
gst_pad_unlink (pad, peerpad);
|
||||||
}
|
}
|
||||||
if (peerelem)
|
if (peerelem)
|
||||||
gst_object_unref (GST_OBJECT (peerelem));
|
gst_object_unref (peerelem);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (peerpad));
|
gst_object_unref (peerpad);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GST_ITERATOR_RESYNC:
|
case GST_ITERATOR_RESYNC:
|
||||||
|
|
|
@ -157,7 +157,7 @@ gst_thread_scheduler_task_start (GstTask * task)
|
||||||
GST_TASK_CAST (ttask)->state = GST_TASK_STARTED;
|
GST_TASK_CAST (ttask)->state = GST_TASK_STARTED;
|
||||||
switch (old) {
|
switch (old) {
|
||||||
case GST_TASK_STOPPED:
|
case GST_TASK_STOPPED:
|
||||||
gst_object_ref (GST_OBJECT (task));
|
gst_object_ref (task);
|
||||||
g_thread_pool_push (tsched->pool, task, NULL);
|
g_thread_pool_push (tsched->pool, task, NULL);
|
||||||
break;
|
break;
|
||||||
case GST_TASK_PAUSED:
|
case GST_TASK_PAUSED:
|
||||||
|
@ -211,7 +211,7 @@ gst_thread_scheduler_task_pause (GstTask * task)
|
||||||
GST_TASK_CAST (ttask)->state = GST_TASK_PAUSED;
|
GST_TASK_CAST (ttask)->state = GST_TASK_PAUSED;
|
||||||
switch (old) {
|
switch (old) {
|
||||||
case GST_TASK_STOPPED:
|
case GST_TASK_STOPPED:
|
||||||
gst_object_ref (GST_OBJECT (task));
|
gst_object_ref (task);
|
||||||
g_thread_pool_push (tsched->pool, task, NULL);
|
g_thread_pool_push (tsched->pool, task, NULL);
|
||||||
break;
|
break;
|
||||||
case GST_TASK_PAUSED:
|
case GST_TASK_PAUSED:
|
||||||
|
@ -303,7 +303,7 @@ done:
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (sched, "Exit task %p, thread %p", task, g_thread_self ());
|
GST_DEBUG_OBJECT (sched, "Exit task %p, thread %p", task, g_thread_self ());
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (task));
|
gst_object_unref (task);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -795,7 +795,7 @@ gst_type_find_element_activate (GstPad * pad)
|
||||||
|
|
||||||
gst_pad_query_position (peer, &format, NULL, &size);
|
gst_pad_query_position (peer, &format, NULL, &size);
|
||||||
found_caps = gst_type_find_helper (peer, (guint64) size);
|
found_caps = gst_type_find_helper (peer, (guint64) size);
|
||||||
gst_object_unref (GST_OBJECT (peer));
|
gst_object_unref (peer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
157
po/af.po
157
po/af.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-03-24 11:28+0200\n"
|
"PO-Revision-Date: 2004-03-24 11:28+0200\n"
|
||||||
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
|
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
|
||||||
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
||||||
|
@ -612,19 +612,19 @@ msgstr "L
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Mislukking na die vasgestelde aantal probeerslae."
|
msgstr "Mislukking na die vasgestelde aantal probeerslae."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "caps"
|
msgstr "caps"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "vermoëns wat bespeur kon word in die stroom"
|
msgstr "vermoëns wat bespeur kon word in die stroom"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maksimum"
|
msgstr "maksimum"
|
||||||
|
|
||||||
|
@ -638,61 +638,61 @@ msgstr "gespesifiseerde le
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "geen houer \"%s\", dit word oorgeslaan"
|
msgstr "geen houer \"%s\", dit word oorgeslaan"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "Geen eienskap \"%s\" in element \"%s\""
|
msgstr "Geen eienskap \"%s\" in element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "kon nie eienskap \"%s\" in element \"%s\" stel na \"%s\" nie"
|
msgstr "kon nie eienskap \"%s\" in element \"%s\" stel na \"%s\" nie"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "Kon nie %s aan %s verbind nie"
|
msgstr "Kon nie %s aan %s verbind nie"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "geen element \"%s\""
|
msgstr "geen element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "kon nie caps \"%s\" ontleed nie"
|
msgstr "kon nie caps \"%s\" ontleed nie"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "verbinding sonder bron-element"
|
msgstr "verbinding sonder bron-element"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "verbinding sonder bestemming-element"
|
msgstr "verbinding sonder bestemming-element"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "geen bronelement vir URI \"%s\""
|
msgstr "geen bronelement vir URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "geen element vir URI \"%s\" om heen te skakel nie"
|
msgstr "geen element vir URI \"%s\" om heen te skakel nie"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "geen bestemming-element vir URI \"%s\""
|
msgstr "geen bestemming-element vir URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "kon nie aan bestemming-element vir URI \"%s\" verbind nie"
|
msgstr "kon nie aan bestemming-element vir URI \"%s\" verbind nie"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "leë pyplyn word nie toegelaat nie"
|
msgstr "leë pyplyn word nie toegelaat nie"
|
||||||
|
|
||||||
|
@ -730,127 +730,142 @@ msgstr "FOUT: onverstaanbare bevellynparameter %d: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "WAARSKUWING: element genaamd '%s' nie gevind nie.\n"
|
msgstr "WAARSKUWING: element genaamd '%s' nie gevind nie.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "FOUT: vanaf element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "ETIKET GEVIND : gevind by element \"%s\".\n"
|
msgstr "ETIKET GEVIND : gevind by element \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Wys etikette (ook bekend as metadata)"
|
msgstr "Wys etikette (ook bekend as metadata)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Wys statusinligting en kennisgewings van eienskappe"
|
msgstr "Wys statusinligting en kennisgewings van eienskappe"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Moenie statusinligting van TIPE wys nie"
|
msgstr "Moenie statusinligting van TIPE wys nie"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TIPE1, TIPE2,..."
|
msgstr "TIPE1, TIPE2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Stoor xml-voorstelling van pyplyn na LÊER en stop"
|
msgstr "Stoor xml-voorstelling van pyplyn na LÊER en stop"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "LÊER"
|
msgstr "LÊER"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Moenie 'n fouthanteerder installeer nie"
|
msgstr "Moenie 'n fouthanteerder installeer nie"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Druk \"alloc trace\" (indien aangeskakel tydens kompilering)"
|
msgstr "Druk \"alloc trace\" (indien aangeskakel tydens kompilering)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Aantal kere wat pyplyn herhaal moet word"
|
msgstr "Aantal kere wat pyplyn herhaal moet word"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "FOUT: pyplyn kon nie opgestel word nie: %s.\n"
|
msgstr "FOUT: pyplyn kon nie opgestel word nie: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "FOUT: pyplyn kon nie opgestel word nie.\n"
|
msgstr "FOUT: pyplyn kon nie opgestel word nie.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "WAARSKUWING: foutiewe pyplyn: %s\n"
|
msgstr "WAARSKUWING: foutiewe pyplyn: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Probeer om weg te hardloop.\n"
|
msgstr " Probeer om weg te hardloop.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "FOUT: die pyplynelement kon nie gevind word nie.\n"
|
msgstr "FOUT: die pyplynelement kon nie gevind word nie.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "LOOP pyplyn ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "LOOP pyplyn ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Uitvoering het geëindig na %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "LOOP pyplyn ...\n"
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Uitvoering het geëindig na %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "LOOP pyplyn ...\n"
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "LOOP pyplyn ...\n"
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "LOOP pyplyn ...\n"
|
msgstr "LOOP pyplyn ...\n"
|
||||||
|
|
167
po/az.po
167
po/az.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer-0.8.0\n"
|
"Project-Id-Version: gstreamer-0.8.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-03-19 18:40+0200\n"
|
"PO-Revision-Date: 2004-03-19 18:40+0200\n"
|
||||||
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
|
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
|
||||||
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
||||||
|
@ -591,19 +591,19 @@ msgstr ""
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimal"
|
msgstr "minimal"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maksimal"
|
msgstr "maksimal"
|
||||||
|
|
||||||
|
@ -617,61 +617,61 @@ msgstr ""
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -708,126 +708,141 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FAYL"
|
msgstr "FAYL"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
|
||||||
#, c-format
|
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
|
||||||
#, c-format
|
|
||||||
msgid " Trying to run anyway.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "PREROLL pipeline ...\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:553
|
||||||
|
#, c-format
|
||||||
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, c-format
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
157
po/ca.po
157
po/ca.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-12-22 17:44+0100\n"
|
"PO-Revision-Date: 2004-12-22 17:44+0100\n"
|
||||||
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
"Last-Translator: Jordi Mallach <jordi@sindominio.net>\n"
|
||||||
"Language-Team: Catalan <ca@dodds.net>\n"
|
"Language-Team: Catalan <ca@dodds.net>\n"
|
||||||
|
@ -631,19 +631,19 @@ msgstr "El fitxer «%s» és un sòcol."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Ha fallat després de les iteracions com s'ha demanat."
|
msgstr "Ha fallat després de les iteracions com s'ha demanat."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "capacitats"
|
msgstr "capacitats"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "capacitats detectades al flux"
|
msgstr "capacitats detectades al flux"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "mínim"
|
msgstr "mínim"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "màxim"
|
msgstr "màxim"
|
||||||
|
|
||||||
|
@ -657,61 +657,61 @@ msgstr "el binari especificat «%s» és buit, no es permet"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "el binari «%s» no existeix, es descarta"
|
msgstr "el binari «%s» no existeix, es descarta"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "no hi ha cap propietat «%s» en l'element «%s»"
|
msgstr "no hi ha cap propietat «%s» en l'element «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "no s'ha pogut establir la propietat «%s» en l'element «%s» a «%s»"
|
msgstr "no s'ha pogut establir la propietat «%s» en l'element «%s» a «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "no s'ha pogut enllaçar %s a %s"
|
msgstr "no s'ha pogut enllaçar %s a %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "no hi ha cap element «%s»"
|
msgstr "no hi ha cap element «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "no s'han pogut analitzar les capacitats «%s»"
|
msgstr "no s'han pogut analitzar les capacitats «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "l'enllaç no té un element font"
|
msgstr "l'enllaç no té un element font"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "l'enllaç no té un element sortida"
|
msgstr "l'enllaç no té un element sortida"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "no hi ha cap element font per a l'URI «%s»"
|
msgstr "no hi ha cap element font per a l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "no hi ha cap element el qual enllaçar a l'URI «%s»"
|
msgstr "no hi ha cap element el qual enllaçar a l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "no hi ha cap element de sortida per a l'URI «%s»"
|
msgstr "no hi ha cap element de sortida per a l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "No s'ha pogut enllaçar l'element de sortida per a l'URI «%s»"
|
msgstr "No s'ha pogut enllaçar l'element de sortida per a l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "no es permet un conducte buit"
|
msgstr "no es permet un conducte buit"
|
||||||
|
|
||||||
|
@ -749,127 +749,142 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "AVÍS: no s'ha trobat l'element anomenat «%s».\n"
|
msgstr "AVÍS: no s'ha trobat l'element anomenat «%s».\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "ERROR: des de l'element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "MARCADOR TROBAT: trobat per l'element «%s».\n"
|
msgstr "MARCADOR TROBAT: trobat per l'element «%s».\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Mostra els marcadors (també coneguts com metadades)"
|
msgstr "Mostra els marcadors (també coneguts com metadades)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Mostra la informació d'estat i notificacions de propietats"
|
msgstr "Mostra la informació d'estat i notificacions de propietats"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "No mostres informació d'estat de TIPUS"
|
msgstr "No mostres informació d'estat de TIPUS"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TIPUS1,TIPUS2,..."
|
msgstr "TIPUS1,TIPUS2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Desa la representació xml del conducte a FITXER i surt"
|
msgstr "Desa la representació xml del conducte a FITXER i surt"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FITXER"
|
msgstr "FITXER"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "No instal·les un gestor de fallades"
|
msgstr "No instal·les un gestor de fallades"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Imprimeix una traça d'alloc (si s'ha habilitat al compilar)"
|
msgstr "Imprimeix una traça d'alloc (si s'ha habilitat al compilar)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Nombre de vegades a iterar el conducte"
|
msgstr "Nombre de vegades a iterar el conducte"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "ERROR: no s'ha pogut construir el conducte: %s.\n"
|
msgstr "ERROR: no s'ha pogut construir el conducte: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "ERROR: no s'ha pogut construir el conducte.\n"
|
msgstr "ERROR: no s'ha pogut construir el conducte.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "AVÍS: el conducte és erroni: %s\n"
|
msgstr "AVÍS: el conducte és erroni: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " S'està intentant executar tot i així.\n"
|
msgstr " S'està intentant executar tot i així.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "ERROR: l'element «conducte» no s'ha trobat.\n"
|
msgstr "ERROR: l'element «conducte» no s'ha trobat.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "ERROR: el conducte no vol reproduir-se.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "ERROR: el conducte no vol reproduir-se.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "ERROR: el conducte no vol reproduir-se.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "L'execució ha finalitzat després de %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "ERROR: el conducte no vol reproduir-se.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "ERROR: el conducte no vol reproduir-se.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "ERROR: el conducte no vol reproduir-se.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "L'execució ha finalitzat després de %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
msgstr "S'ESTÀ EXECUTANT el conducte ...\n"
|
||||||
|
|
115
po/cs.po
115
po/cs.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-12-27 17:23+0100\n"
|
"PO-Revision-Date: 2004-12-27 17:23+0100\n"
|
||||||
"Last-Translator: Miloslav Trmac <mitr@volny.cz>\n"
|
"Last-Translator: Miloslav Trmac <mitr@volny.cz>\n"
|
||||||
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
|
"Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
|
||||||
|
@ -607,19 +607,19 @@ msgstr "Soubor \"%s\" je socket."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Selhání po iteracích podle požadavku."
|
msgstr "Selhání po iteracích podle požadavku."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "schopnosti"
|
msgstr "schopnosti"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "detekované schopnosti v proudu"
|
msgstr "detekované schopnosti v proudu"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maximum"
|
msgstr "maximum"
|
||||||
|
|
||||||
|
@ -633,61 +633,61 @@ msgstr "zadán prázdný zásobník \"%s\", nedovoleno"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "zásobník \"%s\" neexistuje, přeskakuji"
|
msgstr "zásobník \"%s\" neexistuje, přeskakuji"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "v elementu \"%2$s\" není vlastnost \"%1$s\""
|
msgstr "v elementu \"%2$s\" není vlastnost \"%1$s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "nemohu nastavit vlastnost \"%s\" v elementu \"%s\" na \"%s\""
|
msgstr "nemohu nastavit vlastnost \"%s\" v elementu \"%s\" na \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "nemohu připojit %s k %s"
|
msgstr "nemohu připojit %s k %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "element \"%s\" neexistuje"
|
msgstr "element \"%s\" neexistuje"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "nemohu zpracovat schopnosti \"%s\""
|
msgstr "nemohu zpracovat schopnosti \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "propojení bez elementu zdroje"
|
msgstr "propojení bez elementu zdroje"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "propojení bez elementu spotřebiče"
|
msgstr "propojení bez elementu spotřebiče"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "neexistuje element zdroje pro URI \"%s\""
|
msgstr "neexistuje element zdroje pro URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "neexistuje element, ke kterému připojit URI \"%s\""
|
msgstr "neexistuje element, ke kterému připojit URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "neexistuje element spotřebiče pro URI \"%s\""
|
msgstr "neexistuje element spotřebiče pro URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "nemohu připojit element spotřebiče pro URI \"%s\""
|
msgstr "nemohu připojit element spotřebiče pro URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "prázdná roura není povolena"
|
msgstr "prázdná roura není povolena"
|
||||||
|
|
||||||
|
@ -726,129 +726,144 @@ msgstr "CHYBA: nemohu zpracovat argument %d na příkazovém řádku: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "VAROVÁNÍ: element nazvaný '%s' nenalezen.\n"
|
msgstr "VAROVÁNÍ: element nazvaný '%s' nenalezen.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "CHYBA: od eleemntu %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "NALEZEN TAG : nalezen elementem \"%s\".\n"
|
msgstr "NALEZEN TAG : nalezen elementem \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Vypsat tagy (také známé jako metadata)"
|
msgstr "Vypsat tagy (také známé jako metadata)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Vypsat informace o stavu a upozornění na vlastnosti"
|
msgstr "Vypsat informace o stavu a upozornění na vlastnosti"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Nevypisovat informace o stavu s TYPEM"
|
msgstr "Nevypisovat informace o stavu s TYPEM"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TYP1,TYP2,..."
|
msgstr "TYP1,TYP2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Uložit reprezentaci roury v xml do SOUBORu a skončit"
|
msgstr "Uložit reprezentaci roury v xml do SOUBORu a skončit"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "SOUBOR"
|
msgstr "SOUBOR"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Neinstalovat obsluhu výjimek"
|
msgstr "Neinstalovat obsluhu výjimek"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Vypisovat stopu alokace (je-li povoleno při kompilaci)"
|
msgstr "Vypisovat stopu alokace (je-li povoleno při kompilaci)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Kolikrát iterovat rouru"
|
msgstr "Kolikrát iterovat rouru"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "CHYBA: nelze vytvořit rouru: %s.\n"
|
msgstr "CHYBA: nelze vytvořit rouru: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "CHYBA: nelze vytvořit rouru.\n"
|
msgstr "CHYBA: nelze vytvořit rouru.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "VAROVÁNÍ: chybná roura: %s\n"
|
msgstr "VAROVÁNÍ: chybná roura: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Přesto se ji pokouším spustit.\n"
|
msgstr " Přesto se ji pokouším spustit.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "CHYBA: element 'pipeline' nebyl nalezen.\n"
|
msgstr "CHYBA: element 'pipeline' nebyl nalezen.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PREROLL pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "SPOUŠTÍM rouru ...\n"
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
# On strike?
|
# On strike?
|
||||||
#: tools/gst-launch.c:554
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
msgstr "chyba: roura nechce hrát.\n"
|
msgstr "chyba: roura nechce hrát.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
# On strike?
|
# On strike?
|
||||||
#: tools/gst-launch.c:566
|
#: tools/gst-launch.c:608
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
msgstr "chyba: roura nechce hrát.\n"
|
msgstr "chyba: roura nechce hrát.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
#: tools/gst-launch.c:613
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "RUNNING pipeline ...\n"
|
msgid "RUNNING pipeline ...\n"
|
||||||
msgstr "SPOUŠTÍM rouru ...\n"
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
# On strike?
|
# On strike?
|
||||||
#: tools/gst-launch.c:574
|
#: tools/gst-launch.c:616
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
msgstr "chyba: roura nechce hrát.\n"
|
msgstr "chyba: roura nechce hrát.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
#: tools/gst-launch.c:627
|
||||||
msgid "Execution ended after %"
|
msgid "Execution ended after %"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
#: tools/gst-launch.c:627
|
||||||
msgid " ns.\n"
|
msgid " ns.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
#: tools/gst-launch.c:632
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PAUSE pipeline ...\n"
|
|
||||||
msgstr "SPOUŠTÍM rouru ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "SPOUŠTÍM rouru ...\n"
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "SPOUŠTÍM rouru ...\n"
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "SPOUŠTÍM rouru ...\n"
|
msgstr "SPOUŠTÍM rouru ...\n"
|
||||||
|
|
157
po/de.po
157
po/de.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.1\n"
|
"Project-Id-Version: gstreamer 0.8.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-06-05 09:32+0100\n"
|
"PO-Revision-Date: 2004-06-05 09:32+0100\n"
|
||||||
"Last-Translator: Roland Illig <roland.illig@gmx.de>\n"
|
"Last-Translator: Roland Illig <roland.illig@gmx.de>\n"
|
||||||
"Language-Team: German <de@li.org>\n"
|
"Language-Team: German <de@li.org>\n"
|
||||||
|
@ -639,19 +639,19 @@ msgstr "Die Datei »%s« ist keine normale Datei."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Nach dem Durchlaufen fehlgeschlagen. Wie gewünscht."
|
msgstr "Nach dem Durchlaufen fehlgeschlagen. Wie gewünscht."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "Fähigkeiten"
|
msgstr "Fähigkeiten"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "Erkannte Fähigkeiten im Datenstrom"
|
msgstr "Erkannte Fähigkeiten im Datenstrom"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "Minimum"
|
msgstr "Minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "Maximum"
|
msgstr "Maximum"
|
||||||
|
|
||||||
|
@ -665,61 +665,61 @@ msgstr "Leeren Behälter »%s« angegeben -- nicht erlaubt"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "Kein Behälter »%s« -- überspringen"
|
msgstr "Kein Behälter »%s« -- überspringen"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "Keine Eigenschaft »%s« im Element »%s«"
|
msgstr "Keine Eigenschaft »%s« im Element »%s«"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "Konnte die Eigenschaft »%s« im Element »%s« nicht auf »%s« setzen"
|
msgstr "Konnte die Eigenschaft »%s« im Element »%s« nicht auf »%s« setzen"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "Konnte %s nicht mit %s verbinden"
|
msgstr "Konnte %s nicht mit %s verbinden"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "Kein Element »%s«"
|
msgstr "Kein Element »%s«"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "Konnte die Fähigkeiten »%s« nicht parsen"
|
msgstr "Konnte die Fähigkeiten »%s« nicht parsen"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "Verbindung ohne Quellelement"
|
msgstr "Verbindung ohne Quellelement"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "Verbindung ohne Zielelement"
|
msgstr "Verbindung ohne Zielelement"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "Kein Quellelement für URI »%s«"
|
msgstr "Kein Quellelement für URI »%s«"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "Kein Element, um URI »%s« zu verbinden"
|
msgstr "Kein Element, um URI »%s« zu verbinden"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "Kein Zielelement für URI »%s«"
|
msgstr "Kein Zielelement für URI »%s«"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "Konnte Zielelement für URI »%s« nicht verbinden"
|
msgstr "Konnte Zielelement für URI »%s« nicht verbinden"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "Leere Leitung ist nicht erlaubt"
|
msgstr "Leere Leitung ist nicht erlaubt"
|
||||||
|
|
||||||
|
@ -757,128 +757,143 @@ msgstr "FEHLER: Konnte das Kommandozeilenargument %d nicht parsen: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "WARNUNG: Element namens »%s« nicht gefunden.\n"
|
msgstr "WARNUNG: Element namens »%s« nicht gefunden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "FEHLER: Von Element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "KENNZEICHEN GEFUNDEN: Von Element »%s« gefunden.\n"
|
msgstr "KENNZEICHEN GEFUNDEN: Von Element »%s« gefunden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Kennzeichen (auch bekannt als Metadaten) ausgeben"
|
msgstr "Kennzeichen (auch bekannt als Metadaten) ausgeben"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Zustandsinformation und Eigenschaftsmitteilungen ausgeben"
|
msgstr "Zustandsinformation und Eigenschaftsmitteilungen ausgeben"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Zustandsinformation der Art ART nicht ausgeben"
|
msgstr "Zustandsinformation der Art ART nicht ausgeben"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "ART1,ART2,..."
|
msgstr "ART1,ART2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "XML-Repräsentation der Pipeline in DATEI speichern und beenden"
|
msgstr "XML-Repräsentation der Pipeline in DATEI speichern und beenden"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "DATEI"
|
msgstr "DATEI"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Keine Routine zum Abfangen von Fehlern installieren"
|
msgstr "Keine Routine zum Abfangen von Fehlern installieren"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Speicherzuordnungsverfolgung ausgeben (falls zur Compilierzeit aktiviert)"
|
"Speicherzuordnungsverfolgung ausgeben (falls zur Compilierzeit aktiviert)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Anzahl, wie oft die Leitung durchlaufen wird"
|
msgstr "Anzahl, wie oft die Leitung durchlaufen wird"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "FEHLER: Leitung konnte nicht konstruiert werden: %s.\n"
|
msgstr "FEHLER: Leitung konnte nicht konstruiert werden: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "FEHLER: Leitung konnte nicht konstruiert werden.\n"
|
msgstr "FEHLER: Leitung konnte nicht konstruiert werden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "WARNUNG: Fehlerhafte Leitung: %s\n"
|
msgstr "WARNUNG: Fehlerhafte Leitung: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Versuche trotzdem zu laufen.\n"
|
msgstr " Versuche trotzdem zu laufen.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "FEHLER: Das »pipeline«-Element wurde nicht gefunden.\n"
|
msgstr "FEHLER: Das »pipeline«-Element wurde nicht gefunden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "FÜHRE Leitung AUS ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "FEHLER: Leitung möchte nicht abgespielt werden.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "FEHLER: Leitung möchte nicht abgespielt werden.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "FÜHRE Leitung AUS ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "FEHLER: Leitung möchte nicht abgespielt werden.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Ausführung nach %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " Nanosekunden.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "FÜHRE Leitung AUS ...\n"
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "FEHLER: Leitung möchte nicht abgespielt werden.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "FEHLER: Leitung möchte nicht abgespielt werden.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "FEHLER: Leitung möchte nicht abgespielt werden.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Ausführung nach %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " Nanosekunden.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "FÜHRE Leitung AUS ...\n"
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "FÜHRE Leitung AUS ...\n"
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "FÜHRE Leitung AUS ...\n"
|
msgstr "FÜHRE Leitung AUS ...\n"
|
||||||
|
|
157
po/en_GB.po
157
po/en_GB.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.1\n"
|
"Project-Id-Version: gstreamer 0.8.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-04-26 10:36-0400\n"
|
"PO-Revision-Date: 2004-04-26 10:36-0400\n"
|
||||||
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
|
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
|
||||||
"Language-Team: English (British) <en_gb@li.org>\n"
|
"Language-Team: English (British) <en_gb@li.org>\n"
|
||||||
|
@ -601,19 +601,19 @@ msgstr "File \"%s\" isn't a regular file."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Failed after iterations as requested."
|
msgstr "Failed after iterations as requested."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "caps"
|
msgstr "caps"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "detected capabilities in stream"
|
msgstr "detected capabilities in stream"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maximum"
|
msgstr "maximum"
|
||||||
|
|
||||||
|
@ -627,61 +627,61 @@ msgstr "specified empty bin \"%s\", not allowed"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "no bin \"%s\", skipping"
|
msgstr "no bin \"%s\", skipping"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "no property \"%s\" in element \"%s\""
|
msgstr "no property \"%s\" in element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgstr "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "could not link %s to %s"
|
msgstr "could not link %s to %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "no element \"%s\""
|
msgstr "no element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "could not parse caps \"%s\""
|
msgstr "could not parse caps \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "link without source element"
|
msgstr "link without source element"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "link without sink element"
|
msgstr "link without sink element"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "no source element for URI \"%s\""
|
msgstr "no source element for URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "no element to link URI \"%s\" to"
|
msgstr "no element to link URI \"%s\" to"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "no sink element for URI \"%s\""
|
msgstr "no sink element for URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "could not link sink element for URI \"%s\""
|
msgstr "could not link sink element for URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "empty pipeline not allowed"
|
msgstr "empty pipeline not allowed"
|
||||||
|
|
||||||
|
@ -719,127 +719,142 @@ msgstr "ERROR: could not parse command line argument %d: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "WARNING: element named '%s' not found.\n"
|
msgstr "WARNING: element named '%s' not found.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "ERROR: from element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "FOUND TAG : found by element \"%s\".\n"
|
msgstr "FOUND TAG : found by element \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Output tags (also known as metadata)"
|
msgstr "Output tags (also known as metadata)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Output status information and property notifications"
|
msgstr "Output status information and property notifications"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Do not output status information of TYPE"
|
msgstr "Do not output status information of TYPE"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TYPE1,TYPE2,..."
|
msgstr "TYPE1,TYPE2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Save xml representation of pipeline to FILE and exit"
|
msgstr "Save xml representation of pipeline to FILE and exit"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FILE"
|
msgstr "FILE"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Do not install a fault handler"
|
msgstr "Do not install a fault handler"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Print alloc trace (if enabled at compile time)"
|
msgstr "Print alloc trace (if enabled at compile time)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Number of times to iterate pipeline"
|
msgstr "Number of times to iterate pipeline"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "ERROR: pipeline could not be constructed: %s.\n"
|
msgstr "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "ERROR: pipeline could not be constructed.\n"
|
msgstr "ERROR: pipeline could not be constructed.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "WARNING: erroneous pipeline: %s\n"
|
msgstr "WARNING: erroneous pipeline: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Trying to run anyway.\n"
|
msgstr " Trying to run anyway.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "ERROR: the 'pipeline' element wasn't found.\n"
|
msgstr "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "RUNNING pipeline ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "RUNNING pipeline ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Execution ended after %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "RUNNING pipeline ...\n"
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Execution ended after %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "RUNNING pipeline ...\n"
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "RUNNING pipeline ...\n"
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "RUNNING pipeline ...\n"
|
msgstr "RUNNING pipeline ...\n"
|
||||||
|
|
159
po/fr.po
159
po/fr.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GStreamer\n"
|
"Project-Id-Version: GStreamer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-01-13 16:52+0100\n"
|
"PO-Revision-Date: 2004-01-13 16:52+0100\n"
|
||||||
"Last-Translator: Julien Moutte <julien@moutte.net>\n"
|
"Last-Translator: Julien Moutte <julien@moutte.net>\n"
|
||||||
"Language-Team: French <fr@li.org>\n"
|
"Language-Team: French <fr@li.org>\n"
|
||||||
|
@ -634,19 +634,19 @@ msgstr ""
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "capacités"
|
msgstr "capacités"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "capacités detectées dans le flux"
|
msgstr "capacités detectées dans le flux"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maximum"
|
msgstr "maximum"
|
||||||
|
|
||||||
|
@ -660,62 +660,62 @@ msgstr "conteneur vide specifié \"%s\", non autorisé"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "pas de conteneur \"%s\", ignoré"
|
msgstr "pas de conteneur \"%s\", ignoré"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "pas de proprieté \"%s\" dans l'element \"%s\""
|
msgstr "pas de proprieté \"%s\" dans l'element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"impossible de definir la proprieté \"%s\" dans l'element \"%s\" comme \"%s\""
|
"impossible de definir la proprieté \"%s\" dans l'element \"%s\" comme \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "impossible de connecter %s a %s"
|
msgstr "impossible de connecter %s a %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "pas d'element \"%s\""
|
msgstr "pas d'element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "impossible d'interpreter les capacités \"%s\""
|
msgstr "impossible d'interpreter les capacités \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "lien sans element source"
|
msgstr "lien sans element source"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "lien sans element destination"
|
msgstr "lien sans element destination"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "pas d'element source pour l'URI \"%s\""
|
msgstr "pas d'element source pour l'URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "pas d'element avec lequel lier l'URI \"%s\""
|
msgstr "pas d'element avec lequel lier l'URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "pas d'element destination pour l'URI \"%s\""
|
msgstr "pas d'element destination pour l'URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "impossible de lier un element destination pour l'URI \"%s\""
|
msgstr "impossible de lier un element destination pour l'URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "tube vide non autorisé"
|
msgstr "tube vide non autorisé"
|
||||||
|
|
||||||
|
@ -758,128 +758,145 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "AVERTISSEMENT: l'element nommé '%s' est introuvable.\n"
|
msgstr "AVERTISSEMENT: l'element nommé '%s' est introuvable.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr ""
|
||||||
|
"ERREUR: impossible d'interpreter l'argument de la ligne de commande numero %"
|
||||||
|
"d: %s.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "TAG DECOUVERT : decouvert par l'element \"%s\".\n"
|
msgstr "TAG DECOUVERT : decouvert par l'element \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "tags de sortie (aussi connus sous le nom de metadata)"
|
msgstr "tags de sortie (aussi connus sous le nom de metadata)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Afficher des informations sur le status et les notifications de proprietés"
|
"Afficher des informations sur le status et les notifications de proprietés"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Ne pas afficher d'informations sur les status de TYPE"
|
msgstr "Ne pas afficher d'informations sur les status de TYPE"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TYPE1,TYPE2,..."
|
msgstr "TYPE1,TYPE2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Sauvegarder la representation xml du tube dans FICHIER et quitter"
|
msgstr "Sauvegarder la representation xml du tube dans FICHIER et quitter"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FICHIER"
|
msgstr "FICHIER"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Ne pas installer un gestionaire de dysfonctionement"
|
msgstr "Ne pas installer un gestionaire de dysfonctionement"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Imprimer les traces d'allocations (si activées lors de la compilation)"
|
msgstr "Imprimer les traces d'allocations (si activées lors de la compilation)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Nombres d'iterations du tube a accomplir"
|
msgstr "Nombres d'iterations du tube a accomplir"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "ERREUR: le tube n'a pas pu etre construit: %s.\n"
|
msgstr "ERREUR: le tube n'a pas pu etre construit: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "ERREUR: le tube n'a pas pu etre construit.\n"
|
msgstr "ERREUR: le tube n'a pas pu etre construit.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "AVERTISSEMENT: tube erroné: %s\n"
|
msgstr "AVERTISSEMENT: tube erroné: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Tentative d'execution malgrè tout.\n"
|
msgstr " Tentative d'execution malgrè tout.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "ERREUR: l'element 'tube' est introuvable.\n"
|
msgstr "ERREUR: l'element 'tube' est introuvable.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "EXECUTION du tube en cours ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "EXECUTION du tube en cours ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "L'execution s'est terminé après %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr "ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "EXECUTION du tube en cours ...\n"
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "L'execution s'est terminé après %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr "ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "EXECUTION du tube en cours ...\n"
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "EXECUTION du tube en cours ...\n"
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "EXECUTION du tube en cours ...\n"
|
msgstr "EXECUTION du tube en cours ...\n"
|
||||||
|
|
157
po/it.po
157
po/it.po
|
@ -108,7 +108,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-12-21 08:23+0100\n"
|
"PO-Revision-Date: 2004-12-21 08:23+0100\n"
|
||||||
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
|
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
|
||||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||||
|
@ -719,19 +719,19 @@ msgstr "Il file «%s» è un socket."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Fallito dopo le iterazioni come richiesto."
|
msgstr "Fallito dopo le iterazioni come richiesto."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "caps"
|
msgstr "caps"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "capabilities rilevate nello stream"
|
msgstr "capabilities rilevate nello stream"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimo"
|
msgstr "minimo"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "massimo"
|
msgstr "massimo"
|
||||||
|
|
||||||
|
@ -745,61 +745,61 @@ msgstr "specificato il bin vuoto «%s», non consentito"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "nessun bin «%s», omesso"
|
msgstr "nessun bin «%s», omesso"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "nessuna proprietà «%s» nell'elemento «%s»"
|
msgstr "nessuna proprietà «%s» nell'elemento «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "impossibile impostare la proprietà «%s» nell'elemento «%s» a «%s»"
|
msgstr "impossibile impostare la proprietà «%s» nell'elemento «%s» a «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "impossibile collegare %s a %s"
|
msgstr "impossibile collegare %s a %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "nessun elemento «%s»"
|
msgstr "nessun elemento «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "impossibile analizzare caps «%s»"
|
msgstr "impossibile analizzare caps «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "collegamento senza elemento d'origine"
|
msgstr "collegamento senza elemento d'origine"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "collegamento senza elemento sink"
|
msgstr "collegamento senza elemento sink"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "elemento d'origine mancante per l'URI «%s»"
|
msgstr "elemento d'origine mancante per l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "elemento mancante per collegare l'URI «%s» a"
|
msgstr "elemento mancante per collegare l'URI «%s» a"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "elemento sink mancante per l'URI «%s»"
|
msgstr "elemento sink mancante per l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "impossibile collegare l'elemento sink per l'URI «%s»"
|
msgstr "impossibile collegare l'elemento sink per l'URI «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "pipeline vuota non consentito"
|
msgstr "pipeline vuota non consentito"
|
||||||
|
|
||||||
|
@ -837,127 +837,142 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "AVVISO: elemento di nome «%s» non trovato.\n"
|
msgstr "AVVISO: elemento di nome «%s» non trovato.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "ERRORE: dall'elemento %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "TAG TROVATO : trovato dall'elemento «%s».\n"
|
msgstr "TAG TROVATO : trovato dall'elemento «%s».\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Stampa i tag (anche noti come metadati)"
|
msgstr "Stampa i tag (anche noti come metadati)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Stampa informazioni di stato e notifiche delle proprietà"
|
msgstr "Stampa informazioni di stato e notifiche delle proprietà"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Non fornisce informazioni di stato per TIPO"
|
msgstr "Non fornisce informazioni di stato per TIPO"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TIPO1,TIPO2,..."
|
msgstr "TIPO1,TIPO2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Salva su FILE una rappresentazione xml della pipeline ed esce"
|
msgstr "Salva su FILE una rappresentazione xml della pipeline ed esce"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FILE"
|
msgstr "FILE"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Non installa un gestore di fault"
|
msgstr "Non installa un gestore di fault"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Stampa traccia di alloc (se abilitato in compilazione)"
|
msgstr "Stampa traccia di alloc (se abilitato in compilazione)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Numero di iterazioni della pipeline"
|
msgstr "Numero di iterazioni della pipeline"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "ERRORE: impossibile costruire la pipeline: %s.\n"
|
msgstr "ERRORE: impossibile costruire la pipeline: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "ERRORE: impossibile costruire la pipeline.\n"
|
msgstr "ERRORE: impossibile costruire la pipeline.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "AVVISO: pipeline errata: %s.\n"
|
msgstr "AVVISO: pipeline errata: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Tentata esecuzione in ogni caso.\n"
|
msgstr " Tentata esecuzione in ogni caso.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "ERRORE: l'elemento «pipeline» non è stato trovato.\n"
|
msgstr "ERRORE: l'elemento «pipeline» non è stato trovato.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "ESECUZIONE della pipeline...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "ESECUZIONE della pipeline...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Esecuzione terminata dopo %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "ESECUZIONE della pipeline...\n"
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Esecuzione terminata dopo %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "ESECUZIONE della pipeline...\n"
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "ESECUZIONE della pipeline...\n"
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "ESECUZIONE della pipeline...\n"
|
msgstr "ESECUZIONE della pipeline...\n"
|
||||||
|
|
167
po/nb.po
167
po/nb.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.8\n"
|
"Project-Id-Version: gstreamer 0.8.8\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2005-02-17 12:00+0100\n"
|
"PO-Revision-Date: 2005-02-17 12:00+0100\n"
|
||||||
"Last-Translator: Kjartan Maraas <kmaraas@broadpark.no>\n"
|
"Last-Translator: Kjartan Maraas <kmaraas@broadpark.no>\n"
|
||||||
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
"Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
|
||||||
|
@ -592,19 +592,19 @@ msgstr "Fil «%s» er en plugg."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maksimum"
|
msgstr "maksimum"
|
||||||
|
|
||||||
|
@ -618,61 +618,61 @@ msgstr ""
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "ingen element «%s»"
|
msgstr "ingen element «%s»"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -709,126 +709,141 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "FEIL: fra element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TYPE1,TYPE2,..."
|
msgstr "TYPE1,TYPE2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FIL"
|
msgstr "FIL"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
|
||||||
#, c-format
|
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
|
||||||
#, c-format
|
|
||||||
msgid " Trying to run anyway.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "PREROLL pipeline ...\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:553
|
||||||
|
#, c-format
|
||||||
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, c-format
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
157
po/nl.po
157
po/nl.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GStreamer\n"
|
"Project-Id-Version: GStreamer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-01-13 12:03+0100\n"
|
"PO-Revision-Date: 2004-01-13 12:03+0100\n"
|
||||||
"Last-Translator: Thomas Vander Stichele <thomas@apestaart.org>\n"
|
"Last-Translator: Thomas Vander Stichele <thomas@apestaart.org>\n"
|
||||||
"Language-Team: Dutch <nl@li.org>\n"
|
"Language-Team: Dutch <nl@li.org>\n"
|
||||||
|
@ -609,19 +609,19 @@ msgstr "Bestand \"%s\" is geen gewoon bestand."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Fout na iteraties zoals gevraagd."
|
msgstr "Fout na iteraties zoals gevraagd."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "mogelijkheden"
|
msgstr "mogelijkheden"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "gedetecteerde mogelijkheden in stroom"
|
msgstr "gedetecteerde mogelijkheden in stroom"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maximum"
|
msgstr "maximum"
|
||||||
|
|
||||||
|
@ -635,61 +635,61 @@ msgstr "lege ton \"%s\", niet toegelaten"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "geen ton \"%s\", overgeslagen"
|
msgstr "geen ton \"%s\", overgeslagen"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "geen eigenschap \"%s\" in element \"%s\""
|
msgstr "geen eigenschap \"%s\" in element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "kon eigenschap \"%s\" in element \"%s\" niet op \"%s\" instellen"
|
msgstr "kon eigenschap \"%s\" in element \"%s\" niet op \"%s\" instellen"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "kon %s niet verbinden met %s"
|
msgstr "kon %s niet verbinden met %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "geen element \"%s\""
|
msgstr "geen element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "kon mogelijkheden \"%s\" niet verwerken"
|
msgstr "kon mogelijkheden \"%s\" niet verwerken"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "verbinding zonder bronelement"
|
msgstr "verbinding zonder bronelement"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "verbinding zonder doelelement"
|
msgstr "verbinding zonder doelelement"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "geen bronelement voor URI \"%s\""
|
msgstr "geen bronelement voor URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "geen element om URI \"%s\" mee te verbinden"
|
msgstr "geen element om URI \"%s\" mee te verbinden"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "geen doelelement voor URI \"%s\""
|
msgstr "geen doelelement voor URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "kon doelelement niet verbinden voor URI \"%s\""
|
msgstr "kon doelelement niet verbinden voor URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "lege pijplijn niet toegelaten"
|
msgstr "lege pijplijn niet toegelaten"
|
||||||
|
|
||||||
|
@ -730,127 +730,142 @@ msgstr "FOUT: versta argument %d op commandoregel niet: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "WAARSCHUWING: element met naam '%s' niet gevonden.\n"
|
msgstr "WAARSCHUWING: element met naam '%s' niet gevonden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "FOUT: van element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "TAG GEVONDEN : gevonden door element \"%s\".\n"
|
msgstr "TAG GEVONDEN : gevonden door element \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Druk tags (ofte metadata) af"
|
msgstr "Druk tags (ofte metadata) af"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Druk statusinformatie en eigenschapsnotificatie af"
|
msgstr "Druk statusinformatie en eigenschapsnotificatie af"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Druk statusinformatie van type TYPE niet af"
|
msgstr "Druk statusinformatie van type TYPE niet af"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TYPE1,TYPE2,..."
|
msgstr "TYPE1,TYPE2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Bewaar xml-representatie van pijplijn in BESTAND en stop"
|
msgstr "Bewaar xml-representatie van pijplijn in BESTAND en stop"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "BESTAND"
|
msgstr "BESTAND"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Installeer geen foutafhandelaar"
|
msgstr "Installeer geen foutafhandelaar"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Druk allocatiespoor af indien aangezet tijdens compileren"
|
msgstr "Druk allocatiespoor af indien aangezet tijdens compileren"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Aantal keren om de pijplijn te herhalen"
|
msgstr "Aantal keren om de pijplijn te herhalen"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "FOUT: pijplijn kon niet gemaakt worden: %s.\n"
|
msgstr "FOUT: pijplijn kon niet gemaakt worden: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "FOUT: pijplijn kon niet gemaakt worden.\n"
|
msgstr "FOUT: pijplijn kon niet gemaakt worden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "WAARSCHUWING: foutieve pijplijn: %s\n"
|
msgstr "WAARSCHUWING: foutieve pijplijn: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Probeer toch uit te voeren.\n"
|
msgstr " Probeer toch uit te voeren.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "FOUT: het 'pijplijn' element werd niet gevonden.\n"
|
msgstr "FOUT: het 'pijplijn' element werd niet gevonden.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "BEZIG met pijplijn ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "BEZIG met pijplijn ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Uitvoering beëindigd na %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr "ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "BEZIG met pijplijn ...\n"
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Uitvoering beëindigd na %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr "ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "BEZIG met pijplijn ...\n"
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "BEZIG met pijplijn ...\n"
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "BEZIG met pijplijn ...\n"
|
msgstr "BEZIG met pijplijn ...\n"
|
||||||
|
|
155
po/ru.po
155
po/ru.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.8\n"
|
"Project-Id-Version: gstreamer 0.8.8\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2005-02-12 23:37+0300\n"
|
"PO-Revision-Date: 2005-02-12 23:37+0300\n"
|
||||||
"Last-Translator: Peter Astakhov <astakhovp@mail.ru>\n"
|
"Last-Translator: Peter Astakhov <astakhovp@mail.ru>\n"
|
||||||
"Language-Team: Russian <ru@li.org>\n"
|
"Language-Team: Russian <ru@li.org>\n"
|
||||||
|
@ -597,19 +597,19 @@ msgstr ""
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -623,61 +623,61 @@ msgstr ""
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -715,126 +715,141 @@ msgstr "ОШИБКА: не могу разобрать аргумент кома
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "ПРЕДУПРЕЖДЕНИЕ: элемент '%s' не найден.\n"
|
msgstr "ПРЕДУПРЕЖДЕНИЕ: элемент '%s' не найден.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "ОШИБКА: из элемента %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Выводить тэги (такжи называемые 'метаданные')"
|
msgstr "Выводить тэги (такжи называемые 'метаданные')"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "ТИП1, ТИП2,..."
|
msgstr "ТИП1, ТИП2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "ФАЙЛ"
|
msgstr "ФАЙЛ"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Не устанавливать ошибочный обработчик"
|
msgstr "Не устанавливать ошибочный обработчик"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Все равно пытаюсь запустить.\n"
|
msgstr " Все равно пытаюсь запустить.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, c-format
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
157
po/sq.po
157
po/sq.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.4\n"
|
"Project-Id-Version: gstreamer 0.8.4\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-08-07 23:46+0200\n"
|
"PO-Revision-Date: 2004-08-07 23:46+0200\n"
|
||||||
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
"Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
|
||||||
"Language-Team: Albanian <begraj@hotmail.com>\n"
|
"Language-Team: Albanian <begraj@hotmail.com>\n"
|
||||||
|
@ -608,19 +608,19 @@ msgstr "File \"%s\" është një socket."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Dështoi mbas përsëritjeve sikurse të kërkuara."
|
msgstr "Dështoi mbas përsëritjeve sikurse të kërkuara."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "mbrojtëse"
|
msgstr "mbrojtëse"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "u zbuluan mundësi në fluks"
|
msgstr "u zbuluan mundësi në fluks"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maksimum"
|
msgstr "maksimum"
|
||||||
|
|
||||||
|
@ -634,61 +634,61 @@ msgstr "u specifikua bin bosh \"%s\", nuk lejohet"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "asnjë bin \"%s\", u kapërcye"
|
msgstr "asnjë bin \"%s\", u kapërcye"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "asnjë pronësi \"%s\" tek elementi \"%s\""
|
msgstr "asnjë pronësi \"%s\" tek elementi \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "e pamundur vendosja e pronësisë \"%s\" tek elementi \"%s\" në \"%s"
|
msgstr "e pamundur vendosja e pronësisë \"%s\" tek elementi \"%s\" në \"%s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "e pamundur lidhja e %s me %s"
|
msgstr "e pamundur lidhja e %s me %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "asnjë element \"%s\""
|
msgstr "asnjë element \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "i pamundur analizimi i caps \"%s\""
|
msgstr "i pamundur analizimi i caps \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "lidhje ma element burues"
|
msgstr "lidhje ma element burues"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "lidhje pa elementin sink"
|
msgstr "lidhje pa elementin sink"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "asnjë element burues për URI \"%s\""
|
msgstr "asnjë element burues për URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "asnjë element për të lidhur URI \"%s\" me"
|
msgstr "asnjë element për të lidhur URI \"%s\" me"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "asnjë element shpërndarës për URI \"%s\""
|
msgstr "asnjë element shpërndarës për URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "e pamundur lidhja e elementit sink për URI \"%s\""
|
msgstr "e pamundur lidhja e elementit sink për URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "nuk lejohet konduktori bosh"
|
msgstr "nuk lejohet konduktori bosh"
|
||||||
|
|
||||||
|
@ -726,127 +726,142 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "KUJDES: elementi me emrin '%s' nuk u gjet.\n"
|
msgstr "KUJDES: elementi me emrin '%s' nuk u gjet.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "GABIM: nga elementi %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "NDRYSHIM I GJETUR : u gjet nga elementi \"%s\".\n"
|
msgstr "NDRYSHIM I GJETUR : u gjet nga elementi \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Tags e output (njohur gjithashtu si metadata)"
|
msgstr "Tags e output (njohur gjithashtu si metadata)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Njoftime të informacioneve dhe pronësisë së kondicionit të daljes"
|
msgstr "Njoftime të informacioneve dhe pronësisë së kondicionit të daljes"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Mos jep informacionin e gjendjes së LLOJIT"
|
msgstr "Mos jep informacionin e gjendjes së LLOJIT"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "LLOJI1,LLOJI2,..."
|
msgstr "LLOJI1,LLOJI2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Ruaj prezantimin xml të pipeline tek FILE dhe dil"
|
msgstr "Ruaj prezantimin xml të pipeline tek FILE dhe dil"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FILE"
|
msgstr "FILE"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Mos instalo një ushqyes të dëmtuar"
|
msgstr "Mos instalo një ushqyes të dëmtuar"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Printo shenjat e alloc (nëse aktivuar në kohën e kompilimit)"
|
msgstr "Printo shenjat e alloc (nëse aktivuar në kohën e kompilimit)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Numri i herëve të përsëritjes së kanalit"
|
msgstr "Numri i herëve të përsëritjes së kanalit"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "GABIM: i pamundur ndërtimi i pipeline: %s.\n"
|
msgstr "GABIM: i pamundur ndërtimi i pipeline: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "GABIM: i pamundur ndërtimi i pipeline.\n"
|
msgstr "GABIM: i pamundur ndërtimi i pipeline.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "KUJDES: pipline e gabuar: %s\n"
|
msgstr "KUJDES: pipline e gabuar: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Duke u përpjekur të zbatohet sidoqoftë.\n"
|
msgstr " Duke u përpjekur të zbatohet sidoqoftë.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "GABIM: elementi 'konduktor' nuk u gjet.\n"
|
msgstr "GABIM: elementi 'konduktor' nuk u gjet.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "DUKE ZBATUAR pipeline ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "GABIM: pipeline nuk dëshiron të luajë.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "GABIM: pipeline nuk dëshiron të luajë.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "DUKE ZBATUAR pipeline ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "GABIM: pipeline nuk dëshiron të luajë.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Ekzekutimi përfundoi mbas %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "DUKE ZBATUAR pipeline ...\n"
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "GABIM: pipeline nuk dëshiron të luajë.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "GABIM: pipeline nuk dëshiron të luajë.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "GABIM: pipeline nuk dëshiron të luajë.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Ekzekutimi përfundoi mbas %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "DUKE ZBATUAR pipeline ...\n"
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "DUKE ZBATUAR pipeline ...\n"
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "DUKE ZBATUAR pipeline ...\n"
|
msgstr "DUKE ZBATUAR pipeline ...\n"
|
||||||
|
|
157
po/sr.po
157
po/sr.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.7.6\n"
|
"Project-Id-Version: gstreamer 0.7.6\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-03-13 01:47+0100\n"
|
"PO-Revision-Date: 2004-03-13 01:47+0100\n"
|
||||||
"Last-Translator: Danilo Segan <dsegan@gmx.net>\n"
|
"Last-Translator: Danilo Segan <dsegan@gmx.net>\n"
|
||||||
"Language-Team: Serbian <gnu@prevod.org>\n"
|
"Language-Team: Serbian <gnu@prevod.org>\n"
|
||||||
|
@ -616,19 +616,19 @@ msgid "Failed after iterations as requested."
|
||||||
msgstr "Неуспех након траженог броја покушаја."
|
msgstr "Неуспех након траженог броја покушаја."
|
||||||
|
|
||||||
# bug: this should be full word
|
# bug: this should be full word
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "могућности"
|
msgstr "могућности"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "препознате могућности у току"
|
msgstr "препознате могућности у току"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "најмање"
|
msgstr "најмање"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "највише"
|
msgstr "највише"
|
||||||
|
|
||||||
|
@ -642,61 +642,61 @@ msgstr "наведена је празна канта „%s“, ово није
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "нема канте „%s“, прескачем"
|
msgstr "нема канте „%s“, прескачем"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "нема особине „%s“ у елементу „%s“"
|
msgstr "нема особине „%s“ у елементу „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "не могу да поставим особину „%s“ у елементу „%s“ на „%s“"
|
msgstr "не могу да поставим особину „%s“ у елементу „%s“ на „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "не могу да вежем %s са %s"
|
msgstr "не могу да вежем %s са %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "нема елемента „%s“"
|
msgstr "нема елемента „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "не могу да обрадим могућности „%s“"
|
msgstr "не могу да обрадим могућности „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "веза без изворног елемента"
|
msgstr "веза без изворног елемента"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "веза без завршног елемента"
|
msgstr "веза без завршног елемента"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "нема изворног елемента за адресу „%s“"
|
msgstr "нема изворног елемента за адресу „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "нема елемента за везивање адресе „%s“"
|
msgstr "нема елемента за везивање адресе „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "нема завршног елемента за адресу „%s“"
|
msgstr "нема завршног елемента за адресу „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "не могу да вежем завршни елемент за адресу „%s“"
|
msgstr "не могу да вежем завршни елемент за адресу „%s“"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "није допуштен празан цевовод"
|
msgstr "није допуштен празан цевовод"
|
||||||
|
|
||||||
|
@ -735,127 +735,142 @@ msgstr "ГРЕШКА: не могу да рашчланим %d. аргумент
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "УПОЗОРЕЊЕ: елемент са именом „%s“ није нађен.\n"
|
msgstr "УПОЗОРЕЊЕ: елемент са именом „%s“ није нађен.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "ГРЕШКА: из елемента %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "НАЂОХ ОЗНАКУ : нашао је елемент „%s“.\n"
|
msgstr "НАЂОХ ОЗНАКУ : нашао је елемент „%s“.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Излазне ознаке (такође познато и као метаподаци)"
|
msgstr "Излазне ознаке (такође познато и као метаподаци)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Испиши податке о стању и обавештења о особинама"
|
msgstr "Испиши податке о стању и обавештења о особинама"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Не исписуј податке о стању за ВРСТУ"
|
msgstr "Не исписуј податке о стању за ВРСТУ"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "ВРСТА1,ВРСТА2,..."
|
msgstr "ВРСТА1,ВРСТА2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Сачувај xml облик цевовода у ДАТОТЕКУ и заврши"
|
msgstr "Сачувај xml облик цевовода у ДАТОТЕКУ и заврши"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "ДАТОТЕКА"
|
msgstr "ДАТОТЕКА"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Не постављај руковаоца грешкама"
|
msgstr "Не постављај руковаоца грешкама"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Испиши траг доделе меморије (ако је укључено при превођењу)"
|
msgstr "Испиши траг доделе меморије (ако је укључено при превођењу)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Број покушаја пуштања цевовода"
|
msgstr "Број покушаја пуштања цевовода"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "ГРЕШКА: не могу да саставим цевовод: %s.\n"
|
msgstr "ГРЕШКА: не могу да саставим цевовод: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "ГРЕШКА: не могу да саставим цевовод.\n"
|
msgstr "ГРЕШКА: не могу да саставим цевовод.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "УПОЗОРЕЊЕ: неисправан цевовод: %s\n"
|
msgstr "УПОЗОРЕЊЕ: неисправан цевовод: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Ипак покушавам да покренем.\n"
|
msgstr " Ипак покушавам да покренем.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "ГРЕШКА: елемент „pipeline“ није нађен.\n"
|
msgstr "ГРЕШКА: елемент „pipeline“ није нађен.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "Покрећем цевовод...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "ГРЕШКА: цевовод не жели да пусти.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "ГРЕШКА: цевовод не жели да пусти.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "Покрећем цевовод...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "ГРЕШКА: цевовод не жели да пусти.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Извршавање завршено након %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "Покрећем цевовод...\n"
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "ГРЕШКА: цевовод не жели да пусти.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "ГРЕШКА: цевовод не жели да пусти.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "ГРЕШКА: цевовод не жели да пусти.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Извршавање завршено након %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "Покрећем цевовод...\n"
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "Покрећем цевовод...\n"
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "Покрећем цевовод...\n"
|
msgstr "Покрећем цевовод...\n"
|
||||||
|
|
161
po/sv.po
161
po/sv.po
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
"Project-Id-Version: gstreamer 0.8.7pre2\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-12-21 14:49+0100\n"
|
"PO-Revision-Date: 2004-12-21 14:49+0100\n"
|
||||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||||
"Language-Team: Swedish <sv@li.org>\n"
|
"Language-Team: Swedish <sv@li.org>\n"
|
||||||
|
@ -614,19 +614,19 @@ msgid "Failed after iterations as requested."
|
||||||
msgstr "Misslyckades efter iterationer som begärt."
|
msgstr "Misslyckades efter iterationer som begärt."
|
||||||
|
|
||||||
# Osäker. Jag tror "caps" är kort för "capabilities".
|
# Osäker. Jag tror "caps" är kort för "capabilities".
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "förmågor"
|
msgstr "förmågor"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "detekterade förmågor i flödet"
|
msgstr "detekterade förmågor i flödet"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "minimum"
|
msgstr "minimum"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "maximum"
|
msgstr "maximum"
|
||||||
|
|
||||||
|
@ -641,62 +641,62 @@ msgstr "angav tom korg \"%s\", inte tillåtet"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "ingen korg \"%s\", hoppar över"
|
msgstr "ingen korg \"%s\", hoppar över"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "ingen \"%s\"-egenskap i elementet \"%s\""
|
msgstr "ingen \"%s\"-egenskap i elementet \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "kunde inte ställa in egenskapen \"%s\" i elementet \"%s\" till \"%s\""
|
msgstr "kunde inte ställa in egenskapen \"%s\" i elementet \"%s\" till \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "kunde inte länka %s till %s"
|
msgstr "kunde inte länka %s till %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "inget \"%s\"-element"
|
msgstr "inget \"%s\"-element"
|
||||||
|
|
||||||
# Osäker. Jag tror "caps" är kort för "capabilities".
|
# Osäker. Jag tror "caps" är kort för "capabilities".
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "kunde inte tolka förmågorna \"%s\""
|
msgstr "kunde inte tolka förmågorna \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "länk utan källelement"
|
msgstr "länk utan källelement"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "länk utan utgångselement"
|
msgstr "länk utan utgångselement"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "inget källelement för URI:n \"%s\""
|
msgstr "inget källelement för URI:n \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "inget element att länka URI:n \"%s\" till"
|
msgstr "inget element att länka URI:n \"%s\" till"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "inget utgångselement för URI:n \"%s\""
|
msgstr "inget utgångselement för URI:n \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "kunde inte länka utgångselementet för URI:n \"%s\""
|
msgstr "kunde inte länka utgångselementet för URI:n \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "tom rörledning är inte tillåtet"
|
msgstr "tom rörledning är inte tillåtet"
|
||||||
|
|
||||||
|
@ -733,131 +733,146 @@ msgstr "FEL: kunde inte tolka kommandoradsargumentet %d: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "VARNING: elementet med namnet \"%s\" hittades inte.\n"
|
msgstr "VARNING: elementet med namnet \"%s\" hittades inte.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "FEL: från element %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "HITTADE TAGG : hittat av elementet \"%s\".\n"
|
msgstr "HITTADE TAGG : hittat av elementet \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Utmatningstaggar (även känt som metadata)"
|
msgstr "Utmatningstaggar (även känt som metadata)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Skriv ut statusinformation och egenskapsnotifieringar"
|
msgstr "Skriv ut statusinformation och egenskapsnotifieringar"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Skriv inte ut statusinformation av TYP"
|
msgstr "Skriv inte ut statusinformation av TYP"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TYP1,TYP2,..."
|
msgstr "TYP1,TYP2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Spara xml-representation av rörledningen i FIL och avsluta"
|
msgstr "Spara xml-representation av rörledningen i FIL och avsluta"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "FIL"
|
msgstr "FIL"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Installera inte en felhanterare"
|
msgstr "Installera inte en felhanterare"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Skriv ut alloc-spår (om aktiverat vid kompileringen)"
|
msgstr "Skriv ut alloc-spår (om aktiverat vid kompileringen)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Antalet gånger som rörledningen ska itereras"
|
msgstr "Antalet gånger som rörledningen ska itereras"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "FEL: rörledningen kunde inte konstrueras: %s.\n"
|
msgstr "FEL: rörledningen kunde inte konstrueras: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "FEL: rörledningen kunde inte konstrueras.\n"
|
msgstr "FEL: rörledningen kunde inte konstrueras.\n"
|
||||||
|
|
||||||
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "VARNING: felaktig rörledning: %s\n"
|
msgstr "VARNING: felaktig rörledning: %s\n"
|
||||||
|
|
||||||
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Försöker köra ändå.\n"
|
msgstr " Försöker köra ändå.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "FEL: \"pipeline\"-elementet hittades inte.\n"
|
msgstr "FEL: \"pipeline\"-elementet hittades inte.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "KÖR rörledning...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "FEL: rörledningen vill inte spela.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "FEL: rörledningen vill inte spela.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "KÖR rörledning...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "FEL: rörledningen vill inte spela.\n"
|
|
||||||
|
|
||||||
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Körning avslutades efter %"
|
|
||||||
|
|
||||||
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "KÖR rörledning...\n"
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "FEL: rörledningen vill inte spela.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "FEL: rörledningen vill inte spela.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "FEL: rörledningen vill inte spela.\n"
|
||||||
|
|
||||||
|
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Körning avslutades efter %"
|
||||||
|
|
||||||
|
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "KÖR rörledning...\n"
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "KÖR rörledning...\n"
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "KÖR rörledning...\n"
|
msgstr "KÖR rörledning...\n"
|
||||||
|
|
157
po/tr.po
157
po/tr.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
|
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
|
||||||
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
||||||
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
||||||
|
@ -609,19 +609,19 @@ msgstr "\"%s\" dosyası düzenli bir dosya değil."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "İstenildiği gibi tekrarlama başarısız oldu."
|
msgstr "İstenildiği gibi tekrarlama başarısız oldu."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "kabiliyetler"
|
msgstr "kabiliyetler"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "akımda tesbit edilen kabiliyetler"
|
msgstr "akımda tesbit edilen kabiliyetler"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "asgari"
|
msgstr "asgari"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "azami"
|
msgstr "azami"
|
||||||
|
|
||||||
|
@ -635,61 +635,61 @@ msgstr "belirtilen boş ikili \"%s\", izin verilmedi"
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "\"%s\" ikilisi yok, geçiliyor"
|
msgstr "\"%s\" ikilisi yok, geçiliyor"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "\"%2$s\" öğesinde \"%1$s\" özelliği yok"
|
msgstr "\"%2$s\" öğesinde \"%1$s\" özelliği yok"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "\"%2$s\" öğesindeki \"%1$s\" özelliğine \"%3$s\" değeri atanamadı"
|
msgstr "\"%2$s\" öğesindeki \"%1$s\" özelliğine \"%3$s\" değeri atanamadı"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "%s, %s'a bağlanamadı"
|
msgstr "%s, %s'a bağlanamadı"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "\"%s\" öğesi yok"
|
msgstr "\"%s\" öğesi yok"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "\"%s\" kabiliyetleri ayrıştırılamadı"
|
msgstr "\"%s\" kabiliyetleri ayrıştırılamadı"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "kaynak öğesi olmayan bağ"
|
msgstr "kaynak öğesi olmayan bağ"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "'sink' öğesi olmayan bağ"
|
msgstr "'sink' öğesi olmayan bağ"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "\"%s\" URI'si için kaynak öğesi yok"
|
msgstr "\"%s\" URI'si için kaynak öğesi yok"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "\"%s\" URI'sini belirtilene bağlayacak öğe yok:"
|
msgstr "\"%s\" URI'sini belirtilene bağlayacak öğe yok:"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "\"%s\" URI'si için 'sink' öğesi yok"
|
msgstr "\"%s\" URI'si için 'sink' öğesi yok"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "\"%s\" URI'si için 'sink' öğesi bağlanamadı"
|
msgstr "\"%s\" URI'si için 'sink' öğesi bağlanamadı"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "boş boruhattına izin verilmiyor"
|
msgstr "boş boruhattına izin verilmiyor"
|
||||||
|
|
||||||
|
@ -727,127 +727,142 @@ msgstr "HATA: komut satırı argümanı %d ayrıştırılamadı: %s.\n"
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "UYARI: '%s' isimli öğe bulunamadı.\n"
|
msgstr "UYARI: '%s' isimli öğe bulunamadı.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "HATA: %s öğesinden: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "ETİKET BULUNDU : \"%s\" öğesi tarafından bulundu.\n"
|
msgstr "ETİKET BULUNDU : \"%s\" öğesi tarafından bulundu.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Çıktı etiketleri (metadata olarak da bilinir)"
|
msgstr "Çıktı etiketleri (metadata olarak da bilinir)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Çıktı durum bilgisi ve özellik uyarıları"
|
msgstr "Çıktı durum bilgisi ve özellik uyarıları"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "TÜRÜN durum bilgisini gösterme"
|
msgstr "TÜRÜN durum bilgisini gösterme"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "TÜR1,TÜR2,..."
|
msgstr "TÜR1,TÜR2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Boruhattının xml belirtimini DOSYA'ya kaydet ve çık"
|
msgstr "Boruhattının xml belirtimini DOSYA'ya kaydet ve çık"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "DOSYA"
|
msgstr "DOSYA"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Hatalı işleticiyi kurma"
|
msgstr "Hatalı işleticiyi kurma"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "'alloc' takibini yazdır (derleme sırasında etkinleştirilmişse)"
|
msgstr "'alloc' takibini yazdır (derleme sırasında etkinleştirilmişse)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Boruhattının kaç defa tekrarlanacağı"
|
msgstr "Boruhattının kaç defa tekrarlanacağı"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "HATA: boruhattı oluşturulamadı: %s.\n"
|
msgstr "HATA: boruhattı oluşturulamadı: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "HATA: boruhattı oluşturulamadı.\n"
|
msgstr "HATA: boruhattı oluşturulamadı.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "UYARI: hatalı boruhattı: %s\n"
|
msgstr "UYARI: hatalı boruhattı: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Gene de çalıştırma deneniyor.\n"
|
msgstr " Gene de çalıştırma deneniyor.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "HATA: 'pipeline' öğesi bulunamadı.\n"
|
msgstr "HATA: 'pipeline' öğesi bulunamadı.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Çalıştırma % sonrası bitti"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " ns) \n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Çalıştırma % sonrası bitti"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " ns) \n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||||
|
|
157
po/uk.po
157
po/uk.po
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.3\n"
|
"Project-Id-Version: gstreamer 0.8.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2004-08-03 10:53+0200\n"
|
"PO-Revision-Date: 2004-08-03 10:53+0200\n"
|
||||||
"Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
|
"Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
|
||||||
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
||||||
|
@ -615,19 +615,19 @@ msgstr "Файл \"%s\" є сокетом."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Помилка після ітерацій у запитаному порядку."
|
msgstr "Помилка після ітерацій у запитаному порядку."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "можливості"
|
msgstr "можливості"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "визначені можливості у потоці"
|
msgstr "визначені можливості у потоці"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "мінімум"
|
msgstr "мінімум"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "максимум"
|
msgstr "максимум"
|
||||||
|
|
||||||
|
@ -641,62 +641,62 @@ msgstr "вказаний порожній контейнер \"%s\", не доп
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "немає контейнера \"%s\", пропускається"
|
msgstr "немає контейнера \"%s\", пропускається"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "немає властивості \"%s\" у елементі \"%s\""
|
msgstr "немає властивості \"%s\" у елементі \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"не вдається встановити властивість \"%s\" у елементі \"%s\" у значення \"%s\""
|
"не вдається встановити властивість \"%s\" у елементі \"%s\" у значення \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "не вдається прив'язати %s до %s"
|
msgstr "не вдається прив'язати %s до %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "немає елементу \"%s\""
|
msgstr "немає елементу \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "не вдається проаналізувати можливості \"%s\""
|
msgstr "не вдається проаналізувати можливості \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "зв'язок без елемента-джерела"
|
msgstr "зв'язок без елемента-джерела"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr "зв'язок без елемента-споживача"
|
msgstr "зв'язок без елемента-споживача"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "відсутній елемент-джерело для URI \"%s\""
|
msgstr "відсутній елемент-джерело для URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "відсутній елемент для зв'язку URI \"%s\" до"
|
msgstr "відсутній елемент для зв'язку URI \"%s\" до"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr "відсутній елемент-споживач для URI \"%s\""
|
msgstr "відсутній елемент-споживач для URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr "не вдається прив'язати елемент-споживач для URI \"%s\""
|
msgstr "не вдається прив'язати елемент-споживач для URI \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "порожній канал не допускається"
|
msgstr "порожній канал не допускається"
|
||||||
|
|
||||||
|
@ -736,127 +736,142 @@ msgstr ""
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "ПОПЕРЕДЖЕННЯ: елемент з назвою \"%s\" не існує.\n"
|
msgstr "ПОПЕРЕДЖЕННЯ: елемент з назвою \"%s\" не існує.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "ПОМИЛКА: у елементі %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "ЗНАЙДЕНО ТЕГ : знайдено у елементі \"%s\".\n"
|
msgstr "ЗНАЙДЕНО ТЕГ : знайдено у елементі \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Вивести теги (також відомі як метадані)"
|
msgstr "Вивести теги (також відомі як метадані)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Вивести інформацію про статус та сповіщення властивостей"
|
msgstr "Вивести інформацію про статус та сповіщення властивостей"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Не виводити інформацію про статус типу ТИП"
|
msgstr "Не виводити інформацію про статус типу ТИП"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "ТИП1,ТИП2,..."
|
msgstr "ТИП1,ТИП2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Зберегти xml представлення каналу у файл ФАЙЛ та завершитись"
|
msgstr "Зберегти xml представлення каналу у файл ФАЙЛ та завершитись"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "ФАЙЛ"
|
msgstr "ФАЙЛ"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Не встановлювати обробник збоїв"
|
msgstr "Не встановлювати обробник збоїв"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Вивести трасу розподілу (якщо ввімкнено при компіляції)"
|
msgstr "Вивести трасу розподілу (якщо ввімкнено при компіляції)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Кількість ітерацій каналу"
|
msgstr "Кількість ітерацій каналу"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "ПОМИЛКА: канал не може бути сконструйований: %s.\n"
|
msgstr "ПОМИЛКА: канал не може бути сконструйований: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "ПОМИЛКА: канал не може бути сконструйований.\n"
|
msgstr "ПОМИЛКА: канал не може бути сконструйований.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "ПОПЕРЕДЖЕННЯ: помилковий канал: %s\n"
|
msgstr "ПОПЕРЕДЖЕННЯ: помилковий канал: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Спроба запуститись у будь-якому разі.\n"
|
msgstr " Спроба запуститись у будь-якому разі.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "ПОМИЛКА: не знайдений елемент \"pipeline\".\n"
|
msgstr "ПОМИЛКА: не знайдений елемент \"pipeline\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr "Виконання закінчено після %"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
#, fuzzy
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr " нс).\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr "Виконання закінчено після %"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
#, fuzzy
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr " нс).\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||||
|
|
155
po/vi.po
155
po/vi.po
|
@ -6,7 +6,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gstreamer 0.8.8\n"
|
"Project-Id-Version: gstreamer 0.8.8\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-06-09 13:34+0200\n"
|
"POT-Creation-Date: 2005-06-28 11:37+0200\n"
|
||||||
"PO-Revision-Date: 2005-02-05 16:35+1030\n"
|
"PO-Revision-Date: 2005-02-05 16:35+1030\n"
|
||||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||||
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net> \n"
|
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net> \n"
|
||||||
|
@ -613,19 +613,19 @@ msgstr "Tập tin \"%s\" là ổ cắm."
|
||||||
msgid "Failed after iterations as requested."
|
msgid "Failed after iterations as requested."
|
||||||
msgstr "Không làm được sau khi làm việc ấy số lần được chọn."
|
msgstr "Không làm được sau khi làm việc ấy số lần được chọn."
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:180
|
#: gst/elements/gsttypefindelement.c:181
|
||||||
msgid "caps"
|
msgid "caps"
|
||||||
msgstr "khả năng"
|
msgstr "khả năng"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:181
|
#: gst/elements/gsttypefindelement.c:182
|
||||||
msgid "detected capabilities in stream"
|
msgid "detected capabilities in stream"
|
||||||
msgstr "những khả năng được tìm trong dòng"
|
msgstr "những khả năng được tìm trong dòng"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:184
|
#: gst/elements/gsttypefindelement.c:185
|
||||||
msgid "minimum"
|
msgid "minimum"
|
||||||
msgstr "tối thiểu"
|
msgstr "tối thiểu"
|
||||||
|
|
||||||
#: gst/elements/gsttypefindelement.c:188
|
#: gst/elements/gsttypefindelement.c:189
|
||||||
msgid "maximum"
|
msgid "maximum"
|
||||||
msgstr "tối đa"
|
msgstr "tối đa"
|
||||||
|
|
||||||
|
@ -639,66 +639,66 @@ msgstr "không cho phép nhị phân trống được ghi rõ \"%s\""
|
||||||
msgid "no bin \"%s\", skipping"
|
msgid "no bin \"%s\", skipping"
|
||||||
msgstr "không có nhị phân \"%s\" nên bỏ qua"
|
msgstr "không có nhị phân \"%s\" nên bỏ qua"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:263
|
#: gst/parse/grammar.y:269
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no property \"%s\" in element \"%s\""
|
msgid "no property \"%s\" in element \"%s\""
|
||||||
msgstr "không có đặc tính \"%s\" trong yếu tố \"%s\""
|
msgstr "không có đặc tính \"%s\" trong yếu tố \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:276
|
#: gst/parse/grammar.y:282
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||||
msgstr "không lặp được đặc tính \"%s\" trong yếu tố \"%s\" thành \"%s\" "
|
msgstr "không lặp được đặc tính \"%s\" trong yếu tố \"%s\" thành \"%s\" "
|
||||||
|
|
||||||
#: gst/parse/grammar.y:487
|
#: gst/parse/grammar.y:493
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link %s to %s"
|
msgid "could not link %s to %s"
|
||||||
msgstr "không kết hợp được %s đến %s"
|
msgstr "không kết hợp được %s đến %s"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:532
|
#: gst/parse/grammar.y:538
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element \"%s\""
|
msgid "no element \"%s\""
|
||||||
msgstr "không có yếu tố \"%s\" "
|
msgstr "không có yếu tố \"%s\" "
|
||||||
|
|
||||||
#: gst/parse/grammar.y:583
|
#: gst/parse/grammar.y:589
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not parse caps \"%s\""
|
msgid "could not parse caps \"%s\""
|
||||||
msgstr "không phân tách được khả năng \"%s\""
|
msgstr "không phân tách được khả năng \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:605 gst/parse/grammar.y:653 gst/parse/grammar.y:669
|
#: gst/parse/grammar.y:611 gst/parse/grammar.y:659 gst/parse/grammar.y:675
|
||||||
#: gst/parse/grammar.y:727
|
#: gst/parse/grammar.y:733
|
||||||
msgid "link without source element"
|
msgid "link without source element"
|
||||||
msgstr "liên kết không có yếu tố nguồn"
|
msgstr "liên kết không có yếu tố nguồn"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:611 gst/parse/grammar.y:650 gst/parse/grammar.y:736
|
#: gst/parse/grammar.y:617 gst/parse/grammar.y:656 gst/parse/grammar.y:742
|
||||||
msgid "link without sink element"
|
msgid "link without sink element"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"liên kết không có yếu tố quản lý việc phân phối dữ liệu vào đệm khác nhau"
|
"liên kết không có yếu tố quản lý việc phân phối dữ liệu vào đệm khác nhau"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:687
|
#: gst/parse/grammar.y:693
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no source element for URI \"%s\""
|
msgid "no source element for URI \"%s\""
|
||||||
msgstr "không có yếu tố nguồn cho địa chỉ Mạng \"%s\""
|
msgstr "không có yếu tố nguồn cho địa chỉ Mạng \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:697
|
#: gst/parse/grammar.y:703
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no element to link URI \"%s\" to"
|
msgid "no element to link URI \"%s\" to"
|
||||||
msgstr "không có yếu tố mà để kết hợp địa chỉ Mạng \"%s\" đến nó"
|
msgstr "không có yếu tố mà để kết hợp địa chỉ Mạng \"%s\" đến nó"
|
||||||
|
|
||||||
#: gst/parse/grammar.y:705
|
#: gst/parse/grammar.y:711
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "no sink element for URI \"%s\""
|
msgid "no sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"không có yếu tố quản lý việc phân phối dữ liệu vào đệm khác nhau, cho địa "
|
"không có yếu tố quản lý việc phân phối dữ liệu vào đệm khác nhau, cho địa "
|
||||||
"chỉ Mạng \"%s\""
|
"chỉ Mạng \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:709
|
#: gst/parse/grammar.y:715
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "could not link sink element for URI \"%s\""
|
msgid "could not link sink element for URI \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"không kết hợp được yếu tố quản lý việc phân phối dữ liệu vào đệm khác nhau, "
|
"không kết hợp được yếu tố quản lý việc phân phối dữ liệu vào đệm khác nhau, "
|
||||||
"cho địa chỉ Mạng \"%s\""
|
"cho địa chỉ Mạng \"%s\""
|
||||||
|
|
||||||
#: gst/parse/grammar.y:721
|
#: gst/parse/grammar.y:727
|
||||||
msgid "empty pipeline not allowed"
|
msgid "empty pipeline not allowed"
|
||||||
msgstr "không cho phép đường ống trống"
|
msgstr "không cho phép đường ống trống"
|
||||||
|
|
||||||
|
@ -736,126 +736,141 @@ msgstr "LỖI: không phân tách được đối số đường lệnh %d: %s.\
|
||||||
msgid "WARNING: element named '%s' not found.\n"
|
msgid "WARNING: element named '%s' not found.\n"
|
||||||
msgstr "CẢNH BÁO: chưa tìm được yếu tố có tên '%s'.\n"
|
msgstr "CẢNH BÁO: chưa tìm được yếu tố có tên '%s'.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:371
|
#: tools/gst-launch.c:377
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "GOT EOS from element \"%s\".\n"
|
||||||
|
msgstr "LỖI: từ yếu tố %s: %s\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:386
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||||
msgstr "THẺ ĐÃ TÌM : được tìm do yếu tố \"%s\".\n"
|
msgstr "THẺ ĐÃ TÌM : được tìm do yếu tố \"%s\".\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:399
|
#: tools/gst-launch.c:431
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: tools/gst-launch.c:429
|
#: tools/gst-launch.c:461
|
||||||
msgid "Output tags (also known as metadata)"
|
msgid "Output tags (also known as metadata)"
|
||||||
msgstr "Thể xuất (cũng được biết là metadata, dữ liệu về dữ liệu)"
|
msgstr "Thể xuất (cũng được biết là metadata, dữ liệu về dữ liệu)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:431
|
#: tools/gst-launch.c:463
|
||||||
msgid "Output status information and property notifications"
|
msgid "Output status information and property notifications"
|
||||||
msgstr "Xuất thông tin trạng thái và thông báo đặc tính"
|
msgstr "Xuất thông tin trạng thái và thông báo đặc tính"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "Do not output status information of TYPE"
|
msgid "Do not output status information of TYPE"
|
||||||
msgstr "Không xuất thông tin trạng thái LOẠI"
|
msgstr "Không xuất thông tin trạng thái LOẠI"
|
||||||
|
|
||||||
#: tools/gst-launch.c:433
|
#: tools/gst-launch.c:465
|
||||||
msgid "TYPE1,TYPE2,..."
|
msgid "TYPE1,TYPE2,..."
|
||||||
msgstr "LOẠI1,LOẠI2,..."
|
msgstr "LOẠI1,LOẠI2,..."
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "Save xml representation of pipeline to FILE and exit"
|
msgid "Save xml representation of pipeline to FILE and exit"
|
||||||
msgstr "Lưu đường ống dạng xml vào TẬP_TIN rồi thoát"
|
msgstr "Lưu đường ống dạng xml vào TẬP_TIN rồi thoát"
|
||||||
|
|
||||||
#: tools/gst-launch.c:436
|
#: tools/gst-launch.c:468
|
||||||
msgid "FILE"
|
msgid "FILE"
|
||||||
msgstr "TẬP_TIN"
|
msgstr "TẬP_TIN"
|
||||||
|
|
||||||
#: tools/gst-launch.c:439
|
#: tools/gst-launch.c:471
|
||||||
msgid "Do not install a fault handler"
|
msgid "Do not install a fault handler"
|
||||||
msgstr "Không cài trình quản lý lỗi"
|
msgstr "Không cài trình quản lý lỗi"
|
||||||
|
|
||||||
#: tools/gst-launch.c:441
|
#: tools/gst-launch.c:473
|
||||||
msgid "Print alloc trace (if enabled at compile time)"
|
msgid "Print alloc trace (if enabled at compile time)"
|
||||||
msgstr "Hiển thị việc chỉ theo cấp phát (nếu được hiệu lực khi biên dich)"
|
msgstr "Hiển thị việc chỉ theo cấp phát (nếu được hiệu lực khi biên dich)"
|
||||||
|
|
||||||
#: tools/gst-launch.c:443
|
#: tools/gst-launch.c:475
|
||||||
msgid "Number of times to iterate pipeline"
|
msgid "Number of times to iterate pipeline"
|
||||||
msgstr "Số lần sử dụng đường ống"
|
msgstr "Số lần sử dụng đường ống"
|
||||||
|
|
||||||
#: tools/gst-launch.c:513
|
#: tools/gst-launch.c:545
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||||
msgstr "LỖI: không cấu tạo đường ống được: %s.\n"
|
msgstr "LỖI: không cấu tạo đường ống được: %s.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:517
|
#: tools/gst-launch.c:549
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: pipeline could not be constructed.\n"
|
msgid "ERROR: pipeline could not be constructed.\n"
|
||||||
msgstr "LỖI: không cấu tạo đường ống được.\n"
|
msgstr "LỖI: không cấu tạo đường ống được.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:521
|
#: tools/gst-launch.c:553
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "WARNING: erroneous pipeline: %s\n"
|
msgid "WARNING: erroneous pipeline: %s\n"
|
||||||
msgstr "CẢNH BÁO: đường ống có lỗi: %s\n"
|
msgstr "CẢNH BÁO: đường ống có lỗi: %s\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:522
|
#: tools/gst-launch.c:554
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid " Trying to run anyway.\n"
|
msgid " Trying to run anyway.\n"
|
||||||
msgstr " Dù sao đang thử chạy.\n"
|
msgstr " Dù sao đang thử chạy.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:545
|
#: tools/gst-launch.c:578
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||||
msgstr "LỖI: chưa tìm được yếu tố 'đường ống'.\n"
|
msgstr "LỖI: chưa tìm được yếu tố 'đường ống'.\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:552
|
#: tools/gst-launch.c:585 tools/gst-launch.c:629
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "PREROLL pipeline ...\n"
|
|
||||||
msgstr "ĐANG CHẠY đường ống ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:554
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to pause.\n"
|
|
||||||
msgstr "LỖI: đường ống không phát được.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:566
|
|
||||||
#, fuzzy, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
|
||||||
msgstr "LỖI: đường ống không phát được.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:571
|
|
||||||
#, c-format
|
|
||||||
msgid "RUNNING pipeline ...\n"
|
|
||||||
msgstr "ĐANG CHẠY đường ống ...\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:574
|
|
||||||
#, c-format
|
|
||||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
|
||||||
msgstr "LỖI: đường ống không phát được.\n"
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid "Execution ended after %"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:585
|
|
||||||
msgid " ns.\n"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: tools/gst-launch.c:587
|
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "PAUSE pipeline ...\n"
|
msgid "PAUSE pipeline ...\n"
|
||||||
msgstr "ĐANG CHẠY đường ống ...\n"
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:590
|
#: tools/gst-launch.c:590
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to pause.\n"
|
||||||
|
msgstr "LỖI: đường ống không phát được.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:594
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "NO_PREROLL pipeline ...\n"
|
||||||
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:597
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLL pipeline ...\n"
|
||||||
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:601
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "PREROLLED pipeline ...\n"
|
||||||
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:608
|
||||||
|
#, fuzzy, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to preroll.\n"
|
||||||
|
msgstr "LỖI: đường ống không phát được.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:613
|
||||||
|
#, c-format
|
||||||
|
msgid "RUNNING pipeline ...\n"
|
||||||
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:616
|
||||||
|
#, c-format
|
||||||
|
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||||
|
msgstr "LỖI: đường ống không phát được.\n"
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid "Execution ended after %"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:627
|
||||||
|
msgid " ns.\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: tools/gst-launch.c:632
|
||||||
|
#, fuzzy, c-format
|
||||||
msgid "READY pipeline ...\n"
|
msgid "READY pipeline ...\n"
|
||||||
msgstr "ĐANG CHẠY đường ống ...\n"
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:593
|
#: tools/gst-launch.c:635
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "NULL pipeline ...\n"
|
msgid "NULL pipeline ...\n"
|
||||||
msgstr "ĐANG CHẠY đường ống ...\n"
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
||||||
#: tools/gst-launch.c:600
|
#: tools/gst-launch.c:642
|
||||||
#, fuzzy, c-format
|
#, fuzzy, c-format
|
||||||
msgid "FREEING pipeline ...\n"
|
msgid "FREEING pipeline ...\n"
|
||||||
msgstr "ĐANG CHẠY đường ống ...\n"
|
msgstr "ĐANG CHẠY đường ống ...\n"
|
||||||
|
|
|
@ -63,8 +63,8 @@ START_TEST (test_src_sink)
|
||||||
srcpad = gst_element_get_pad (src, "src");
|
srcpad = gst_element_get_pad (src, "src");
|
||||||
sinkpad = gst_element_get_pad (sink, "sink");
|
sinkpad = gst_element_get_pad (sink, "sink");
|
||||||
gst_pad_link (srcpad, sinkpad);
|
gst_pad_link (srcpad, sinkpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (sinkpad));
|
gst_object_unref (sinkpad);
|
||||||
|
|
||||||
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
ret = gst_element_get_state (pipeline, NULL, NULL, NULL);
|
ret = gst_element_get_state (pipeline, NULL, NULL, NULL);
|
||||||
|
@ -102,8 +102,8 @@ START_TEST (test_livesrc_remove)
|
||||||
srcpad = gst_element_get_pad (src, "src");
|
srcpad = gst_element_get_pad (src, "src");
|
||||||
sinkpad = gst_element_get_pad (sink, "sink");
|
sinkpad = gst_element_get_pad (sink, "sink");
|
||||||
gst_pad_link (srcpad, sinkpad);
|
gst_pad_link (srcpad, sinkpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (sinkpad));
|
gst_object_unref (sinkpad);
|
||||||
|
|
||||||
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
||||||
|
@ -144,8 +144,8 @@ START_TEST (test_livesrc_sink)
|
||||||
srcpad = gst_element_get_pad (src, "src");
|
srcpad = gst_element_get_pad (src, "src");
|
||||||
sinkpad = gst_element_get_pad (sink, "sink");
|
sinkpad = gst_element_get_pad (sink, "sink");
|
||||||
gst_pad_link (srcpad, sinkpad);
|
gst_pad_link (srcpad, sinkpad);
|
||||||
gst_object_unref (GST_OBJECT (srcpad));
|
gst_object_unref (srcpad);
|
||||||
gst_object_unref (GST_OBJECT (sinkpad));
|
gst_object_unref (sinkpad);
|
||||||
|
|
||||||
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
|
||||||
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
fail_unless (ret == GST_STATE_NO_PREROLL, "no no_preroll state return");
|
||||||
|
|
|
@ -79,9 +79,10 @@ START_TEST (test_interface)
|
||||||
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
fail_unless (gst_iterator_next (it, &item) == GST_ITERATOR_DONE);
|
||||||
gst_iterator_free (it);
|
gst_iterator_free (it);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
END_TEST Suite * gst_bin_suite (void)
|
END_TEST Suite *
|
||||||
|
gst_bin_suite (void)
|
||||||
{
|
{
|
||||||
Suite *s = suite_create ("GstBin");
|
Suite *s = suite_create ("GstBin");
|
||||||
TCase *tc_chain = tcase_create ("bin tests");
|
TCase *tc_chain = tcase_create ("bin tests");
|
||||||
|
|
|
@ -56,9 +56,9 @@ START_TEST (test_ghost_pads)
|
||||||
|
|
||||||
fsrc = gst_element_get_pad (src, "src");
|
fsrc = gst_element_get_pad (src, "src");
|
||||||
fail_unless (fsrc != NULL);
|
fail_unless (fsrc != NULL);
|
||||||
gsink = GST_PAD (gst_object_ref (GST_OBJECT (b2->sinkpads->data)));
|
gsink = GST_PAD (gst_object_ref (b2->sinkpads->data));
|
||||||
fail_unless (gsink != NULL);
|
fail_unless (gsink != NULL);
|
||||||
gsrc = GST_PAD (gst_object_ref (GST_OBJECT (b2->srcpads->data)));
|
gsrc = GST_PAD (gst_object_ref (b2->srcpads->data));
|
||||||
fail_unless (gsrc != NULL);
|
fail_unless (gsrc != NULL);
|
||||||
fsink = gst_element_get_pad (sink, "sink");
|
fsink = gst_element_get_pad (sink, "sink");
|
||||||
fail_unless (fsink != NULL);
|
fail_unless (fsink != NULL);
|
||||||
|
@ -89,7 +89,7 @@ START_TEST (test_ghost_pads)
|
||||||
|
|
||||||
fail_unless (gst_element_set_state (b1, GST_STATE_NULL) == GST_STATE_SUCCESS);
|
fail_unless (gst_element_set_state (b1, GST_STATE_NULL) == GST_STATE_SUCCESS);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (b1));
|
gst_object_unref (b1);
|
||||||
/* unreffing the bin will unref all elements, which will unlink and unparent
|
/* unreffing the bin will unref all elements, which will unlink and unparent
|
||||||
* all pads */
|
* all pads */
|
||||||
|
|
||||||
|
@ -110,21 +110,22 @@ START_TEST (test_ghost_pads)
|
||||||
assert_gstrefcount (isrc, 2); /* gsrc */
|
assert_gstrefcount (isrc, 2); /* gsrc */
|
||||||
|
|
||||||
/* while the fixme isn't fixed, check cleanup */
|
/* while the fixme isn't fixed, check cleanup */
|
||||||
gst_object_unref (GST_OBJECT (gsink));
|
gst_object_unref (gsink);
|
||||||
assert_gstrefcount (isink, 1);
|
assert_gstrefcount (isink, 1);
|
||||||
assert_gstrefcount (gisrc, 1);
|
assert_gstrefcount (gisrc, 1);
|
||||||
assert_gstrefcount (fsrc, 2); /* gisrc */
|
assert_gstrefcount (fsrc, 2); /* gisrc */
|
||||||
gst_object_unref (GST_OBJECT (gisrc));
|
gst_object_unref (gisrc);
|
||||||
assert_gstrefcount (fsrc, 1);
|
assert_gstrefcount (fsrc, 1);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (gsrc));
|
gst_object_unref (gsrc);
|
||||||
assert_gstrefcount (isrc, 1);
|
assert_gstrefcount (isrc, 1);
|
||||||
assert_gstrefcount (gisink, 1);
|
assert_gstrefcount (gisink, 1);
|
||||||
assert_gstrefcount (fsink, 2); /* gisrc */
|
assert_gstrefcount (fsink, 2); /* gisrc */
|
||||||
gst_object_unref (GST_OBJECT (gisink));
|
gst_object_unref (gisink);
|
||||||
assert_gstrefcount (fsink, 1);
|
assert_gstrefcount (fsink, 1);
|
||||||
}
|
}
|
||||||
END_TEST Suite * gst_ghost_pad_suite (void)
|
END_TEST Suite *
|
||||||
|
gst_ghost_pad_suite (void)
|
||||||
{
|
{
|
||||||
Suite *s = suite_create ("GstGhostPad");
|
Suite *s = suite_create ("GstGhostPad");
|
||||||
TCase *tc_chain = tcase_create ("ghost pad tests");
|
TCase *tc_chain = tcase_create ("ghost pad tests");
|
||||||
|
|
|
@ -118,8 +118,8 @@ START_TEST (test_refcount)
|
||||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 3);
|
||||||
|
|
||||||
/* cleanup */
|
/* cleanup */
|
||||||
gst_object_unref (GST_OBJECT (src));
|
gst_object_unref (src);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
||||||
|
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
|
@ -170,8 +170,8 @@ START_TEST (test_get_allowed_caps)
|
||||||
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
ASSERT_OBJECT_REFCOUNT (src, "src", 1);
|
||||||
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
ASSERT_OBJECT_REFCOUNT (sink, "sink", 1);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (src));
|
gst_object_unref (src);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
|
|
||||||
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
ASSERT_CAPS_REFCOUNT (caps, "caps", 1);
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
|
|
|
@ -68,7 +68,7 @@ run_pipeline (GstElement * pipe, gchar * descr,
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipe, GST_STATE_NULL);
|
gst_element_set_state (pipe, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipe));
|
gst_object_unref (pipe);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST (test_pipeline_unref)
|
START_TEST (test_pipeline_unref)
|
||||||
|
@ -90,8 +90,8 @@ START_TEST (test_pipeline_unref)
|
||||||
fail_unless (count == 1, "src has a refcount of %d instead of 1", count);
|
fail_unless (count == 1, "src has a refcount of %d instead of 1", count);
|
||||||
count = GST_OBJECT_REFCOUNT_VALUE (sink);
|
count = GST_OBJECT_REFCOUNT_VALUE (sink);
|
||||||
fail_unless (count == 1, "sink has a refcount of %d instead of 1", count);
|
fail_unless (count == 1, "sink has a refcount of %d instead of 1", count);
|
||||||
gst_object_unref (GST_OBJECT (src));
|
gst_object_unref (src);
|
||||||
gst_object_unref (GST_OBJECT (sink));
|
gst_object_unref (sink);
|
||||||
}
|
}
|
||||||
|
|
||||||
END_TEST Suite *
|
END_TEST Suite *
|
||||||
|
|
|
@ -68,7 +68,7 @@ run_pipeline (GstElement * pipe, gchar * descr,
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipe, GST_STATE_NULL);
|
gst_element_set_state (pipe, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipe));
|
gst_object_unref (pipe);
|
||||||
}
|
}
|
||||||
|
|
||||||
START_TEST (test_2_elements)
|
START_TEST (test_2_elements)
|
||||||
|
@ -156,11 +156,12 @@ START_TEST (test_stop_from_app)
|
||||||
gst_message_unref (gst_bus_pop (bus));
|
gst_message_unref (gst_bus_pop (bus));
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
assert_live_count (GST_TYPE_BUFFER, 0);
|
assert_live_count (GST_TYPE_BUFFER, 0);
|
||||||
}
|
}
|
||||||
END_TEST Suite * simple_launch_lines_suite (void)
|
END_TEST Suite *
|
||||||
|
simple_launch_lines_suite (void)
|
||||||
{
|
{
|
||||||
Suite *s = suite_create ("Pipelines");
|
Suite *s = suite_create ("Pipelines");
|
||||||
TCase *tc_chain = tcase_create ("linear");
|
TCase *tc_chain = tcase_create ("linear");
|
||||||
|
|
|
@ -37,7 +37,7 @@ create_all_elements (void)
|
||||||
elements != NULL; elements = elements->next) {
|
elements != NULL; elements = elements->next) {
|
||||||
factory = (GstElementFactory *) elements->data;
|
factory = (GstElementFactory *) elements->data;
|
||||||
if ((element = gst_element_factory_create (factory, "test"))) {
|
if ((element = gst_element_factory_create (factory, "test"))) {
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@ main (gint argc, gchar * argv[])
|
||||||
} while (!done);
|
} while (!done);
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -196,8 +196,8 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
gst_element_set_state (main_bin, GST_STATE_NULL);
|
gst_element_set_state (main_bin, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (filesink));
|
gst_object_unref (filesink);
|
||||||
gst_object_unref (GST_OBJECT (main_bin));
|
gst_object_unref (main_bin);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -127,7 +127,7 @@ main (int argc, char *argv[])
|
||||||
/* stop the pipeline */
|
/* stop the pipeline */
|
||||||
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,8 +74,8 @@ gst_play_type_find (GstBin * bin, GstElement * element)
|
||||||
gst_element_get_pad (typefind, "sink"));
|
gst_element_get_pad (typefind, "sink"));
|
||||||
gst_bin_remove (bin, typefind);
|
gst_bin_remove (bin, typefind);
|
||||||
gst_bin_remove (GST_BIN (pipeline), GST_ELEMENT (bin));
|
gst_bin_remove (GST_BIN (pipeline), GST_ELEMENT (bin));
|
||||||
gst_object_unref (GST_OBJECT (typefind));
|
gst_object_unref (typefind);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return caps;
|
return caps;
|
||||||
}
|
}
|
||||||
|
@ -213,9 +213,9 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
g_list_free (input_channels);
|
g_list_free (input_channels);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (audiosink));
|
gst_object_unref (audiosink);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (main_bin));
|
gst_object_unref (main_bin);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
@ -382,7 +382,7 @@ destroy_input_channel (input_channel_t * channel)
|
||||||
|
|
||||||
/* destroy elements */
|
/* destroy elements */
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (channel->pipe));
|
gst_object_unref (channel->pipe);
|
||||||
|
|
||||||
free (channel);
|
free (channel);
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
loop = g_main_loop_new (NULL, FALSE);
|
loop = g_main_loop_new (NULL, FALSE);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
|
|
||||||
exit (0);
|
exit (0);
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
|
|
|
@ -55,7 +55,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
|
|
|
@ -59,7 +59,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
|
|
|
@ -34,7 +34,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
fprintf (stderr, "+\n");
|
fprintf (stderr, "+\n");
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
|
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -22,5 +22,5 @@ do_test (void)
|
||||||
g_print ("\n");
|
g_print ("\n");
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -183,7 +183,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
/* switch element types */
|
/* switch element types */
|
||||||
g_print ("Loop=%s done\n", loop ? "true" : "false");
|
g_print ("Loop=%s done\n", loop ? "true" : "false");
|
||||||
|
|
|
@ -59,7 +59,7 @@ static gchar *s;
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
|
||||||
#define TEST_OK G_STMT_START{ \
|
#define TEST_OK G_STMT_START{ \
|
||||||
gst_object_unref (GST_OBJECT (cur)); \
|
gst_object_unref (cur); \
|
||||||
cur = NULL; \
|
cur = NULL; \
|
||||||
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
|
|
@ -85,7 +85,7 @@ static char *video_file = NULL;
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
#endif
|
#endif
|
||||||
#define TEST_OK G_STMT_START{ \
|
#define TEST_OK G_STMT_START{ \
|
||||||
gst_object_unref (GST_OBJECT (cur)); \
|
gst_object_unref (cur); \
|
||||||
cur = NULL; \
|
cur = NULL; \
|
||||||
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
@ -127,7 +127,7 @@ static char *video_file = NULL;
|
||||||
GstElement *element = gst_element_factory_make ((element_name), NULL); \
|
GstElement *element = gst_element_factory_make ((element_name), NULL); \
|
||||||
if (element) { \
|
if (element) { \
|
||||||
g_print ("REQUIRE line %3d OK\n", __LINE__); \
|
g_print ("REQUIRE line %3d OK\n", __LINE__); \
|
||||||
gst_object_unref (GST_OBJECT (element)); \
|
gst_object_unref (element); \
|
||||||
} else { \
|
} else { \
|
||||||
g_print ("REQUIRE line %3d EXIT : No element of type \"%s\" available. Exiting.\n", __LINE__, (element_name)); \
|
g_print ("REQUIRE line %3d EXIT : No element of type \"%s\" available. Exiting.\n", __LINE__, (element_name)); \
|
||||||
TEST_FINISH; \
|
TEST_FINISH; \
|
||||||
|
|
|
@ -55,7 +55,7 @@ add_remove_test1 (void)
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
||||||
gst_bin_remove (GST_BIN (bin), element);
|
gst_bin_remove (GST_BIN (bin), element);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -67,7 +67,7 @@ add_remove_test2 (void)
|
||||||
bin = gst_bin_new ("testbin");
|
bin = gst_bin_new ("testbin");
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_element_set_name (element, "test1");
|
gst_element_set_name (element, "test1");
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
g_assert (GST_OBJECT_IS_FLOATING (element));
|
g_assert (GST_OBJECT_IS_FLOATING (element));
|
||||||
gst_bin_add (GST_BIN (bin), element);
|
gst_bin_add (GST_BIN (bin), element);
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
||||||
|
@ -75,13 +75,13 @@ add_remove_test2 (void)
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
||||||
g_assert (!GST_OBJECT_IS_DESTROYED (element));
|
g_assert (!GST_OBJECT_IS_DESTROYED (element));
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
#if 0
|
#if 0
|
||||||
g_assert (GST_OBJECT_IS_DESTROYED (element));
|
g_assert (GST_OBJECT_IS_DESTROYED (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
@ -99,10 +99,10 @@ add_remove_test3 (void)
|
||||||
gst_bin_add (GST_BIN (bin), element);
|
gst_bin_add (GST_BIN (bin), element);
|
||||||
g_assert (!GST_OBJECT_FLOATING (element));
|
g_assert (!GST_OBJECT_FLOATING (element));
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (gst_bin_get_by_name (GST_BIN (bin), "test1") == NULL);
|
g_assert (gst_bin_get_by_name (GST_BIN (bin), "test1") == NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -126,12 +126,12 @@ add_remove_test4 (void)
|
||||||
gst_bin_add (GST_BIN (bin), bin2);
|
gst_bin_add (GST_BIN (bin), bin2);
|
||||||
g_assert (!GST_OBJECT_FLOATING (bin2));
|
g_assert (!GST_OBJECT_FLOATING (bin2));
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin2));
|
gst_object_unref (bin2);
|
||||||
g_assert (gst_bin_get_by_name (GST_BIN (bin), "testbin") == NULL);
|
g_assert (gst_bin_get_by_name (GST_BIN (bin), "testbin") == NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (gst_bin_get_by_name (GST_BIN (bin), "test1") == NULL);
|
g_assert (gst_bin_get_by_name (GST_BIN (bin), "test1") == NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -158,88 +158,88 @@ main (int argc, gchar * argv[])
|
||||||
//gst_alloc_trace_print_all ();
|
//gst_alloc_trace_print_all ();
|
||||||
|
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
g_print ("create/unref new bin %d\n", gst_alloc_trace_live_all () - usage1);
|
g_print ("create/unref new bin %d\n", gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d bins %d\n", iters,
|
g_print ("create/unref %d bins %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
g_assert (GST_OBJECT_IS_FLOATING (bin));
|
g_assert (GST_OBJECT_IS_FLOATING (bin));
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_object_sink (GST_OBJECT (bin));
|
gst_object_sink (GST_OBJECT (bin));
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (bin));
|
g_assert (!GST_OBJECT_IS_FLOATING (bin));
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
g_print ("create/ref/sink/unref new bin %d\n",
|
g_print ("create/ref/sink/unref new bin %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_object_sink (GST_OBJECT (bin));
|
gst_object_sink (GST_OBJECT (bin));
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/sink/unref %d bins %d\n", iters,
|
g_print ("create/ref/sink/unref %d bins %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
g_assert (!GST_OBJECT_IS_DESTROYED (bin));
|
g_assert (!GST_OBJECT_IS_DESTROYED (bin));
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#if 0
|
#if 0
|
||||||
g_assert (GST_OBJECT_IS_DESTROYED (bin));
|
g_assert (GST_OBJECT_IS_DESTROYED (bin));
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#endif
|
#endif
|
||||||
g_print ("create/destroy/unref new bin %d\n",
|
g_print ("create/destroy/unref new bin %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#if 0
|
#if 0
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
g_print ("create/destroy/unref %d bin %d\n", iters,
|
g_print ("create/destroy/unref %d bin %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
g_print ("create/ref/unref/unref new bin %d\n",
|
g_print ("create/ref/unref/unref new bin %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/unref/unref %d bin %d\n", iters,
|
g_print ("create/ref/unref/unref %d bin %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#if 0
|
#if 0
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#endif
|
#endif
|
||||||
g_print ("craete/ref/destroy/unref/unref new bin %d\n",
|
g_print ("craete/ref/destroy/unref/unref new bin %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#if 0
|
#if 0
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
g_print ("craete/ref/destroy/unref/unref %d bins %d\n", iters,
|
g_print ("craete/ref/destroy/unref/unref %d bins %d\n", iters,
|
||||||
|
@ -247,13 +247,13 @@ main (int argc, gchar * argv[])
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = gst_bin_new ("somebin");
|
bin = gst_bin_new ("somebin");
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_element_set_name (bin, "testing123");
|
gst_element_set_name (bin, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
gst_element_set_name (bin, "testing123");
|
gst_element_set_name (bin, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#if 0
|
#if 0
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
g_print ("craete/ref/destroy/unref/unref %d bins with name %d\n", iters,
|
g_print ("craete/ref/destroy/unref/unref %d bins with name %d\n", iters,
|
||||||
|
@ -263,20 +263,20 @@ main (int argc, gchar * argv[])
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
gst_element_set_name (bin, "testing");
|
gst_element_set_name (bin, "testing");
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
g_print ("set name %d times %d\n", iters,
|
g_print ("set name %d times %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
bin = create_bin ();
|
bin = create_bin ();
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d bin with children %d\n", iters,
|
g_print ("create/unref %d bin with children %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters / 2; i++) {
|
for (i = 0; i < iters / 2; i++) {
|
||||||
bin = create_bin_ghostpads ();
|
bin = create_bin_ghostpads ();
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d bin with children and ghostpads %d\n", iters / 2,
|
g_print ("create/unref %d bin with children and ghostpads %d\n", iters / 2,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
|
@ -23,32 +23,32 @@ main (int argc, gchar * argv[])
|
||||||
//gst_alloc_trace_print_all ();
|
//gst_alloc_trace_print_all ();
|
||||||
|
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("create/unref new element %d\n",
|
g_print ("create/unref new element %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d elements %d\n", iters,
|
g_print ("create/unref %d elements %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
g_assert (GST_OBJECT_IS_FLOATING (element));
|
g_assert (GST_OBJECT_IS_FLOATING (element));
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_sink (GST_OBJECT (element));
|
gst_object_sink (GST_OBJECT (element));
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
g_assert (!GST_OBJECT_IS_FLOATING (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("create/ref/sink/unref new element %d\n",
|
g_print ("create/ref/sink/unref new element %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_sink (GST_OBJECT (element));
|
gst_object_sink (GST_OBJECT (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/sink/unref %d elements %d\n", iters,
|
g_print ("create/ref/sink/unref %d elements %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
@ -56,9 +56,9 @@ main (int argc, gchar * argv[])
|
||||||
#if 0
|
#if 0
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
g_assert (!GST_OBJECT_IS_DESTROYED (element));
|
g_assert (!GST_OBJECT_IS_DESTROYED (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (GST_OBJECT_IS_DESTROYED (element));
|
g_assert (GST_OBJECT_IS_DESTROYED (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("create/destroy/unref new element %d\n",
|
g_print ("create/destroy/unref new element %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -66,35 +66,35 @@ main (int argc, gchar * argv[])
|
||||||
#if 0
|
#if 0
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("create/destroy/unref %d element %d\n", iters,
|
g_print ("create/destroy/unref %d element %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("create/ref/unref/unref new element %d\n",
|
g_print ("create/ref/unref/unref new element %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/unref/unref %d element %d\n", iters,
|
g_print ("create/ref/unref/unref %d element %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("craete/ref/destroy/unref/unref new element %d\n",
|
g_print ("craete/ref/destroy/unref/unref new element %d\n",
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
#endif
|
#endif
|
||||||
|
@ -102,10 +102,10 @@ main (int argc, gchar * argv[])
|
||||||
#if 0
|
#if 0
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("craete/ref/destroy/unref/unref %d elements %d\n", iters,
|
g_print ("craete/ref/destroy/unref/unref %d elements %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
@ -114,12 +114,12 @@ main (int argc, gchar * argv[])
|
||||||
#if 0
|
#if 0
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesrc", NULL);
|
element = gst_element_factory_make ("fakesrc", NULL);
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
gst_element_set_name (element, "testing123");
|
gst_element_set_name (element, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_element_set_name (element, "testing123");
|
gst_element_set_name (element, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("craete/ref/destroy/unref/unref %d elements with name %d\n", iters,
|
g_print ("craete/ref/destroy/unref/unref %d elements with name %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
@ -129,7 +129,7 @@ main (int argc, gchar * argv[])
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
gst_element_set_name (element, "testing");
|
gst_element_set_name (element, "testing");
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("set name %d times %d\n", iters,
|
g_print ("set name %d times %d\n", iters,
|
||||||
gst_alloc_trace_live_all () - usage1);
|
gst_alloc_trace_live_all () - usage1);
|
||||||
|
|
||||||
|
|
|
@ -30,13 +30,13 @@ main (int argc, gchar * argv[])
|
||||||
g_assert (GST_OBJECT_IS_FLOATING (element));
|
g_assert (GST_OBJECT_IS_FLOATING (element));
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (pad));
|
g_assert (!GST_OBJECT_IS_FLOATING (pad));
|
||||||
g_assert (gst_pad_get_parent (pad) == element);
|
g_assert (gst_pad_get_parent (pad) == element);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_print ("create/addpad/unref 1 new element: %ld\n", vmsize () - usage1);
|
g_print ("create/addpad/unref 1 new element: %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
element = gst_element_factory_make ("fakesink", NULL);;
|
element = gst_element_factory_make ("fakesink", NULL);;
|
||||||
g_assert (GST_IS_ELEMENT (element));
|
g_assert (GST_IS_ELEMENT (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d elements: %ld\n", iters, vmsize () - usage1);
|
g_print ("create/unref %d elements: %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
|
@ -48,9 +48,9 @@ main (int argc, gchar * argv[])
|
||||||
gst_element_link_pads (element2, "src", element, "sink");
|
gst_element_link_pads (element2, "src", element, "sink");
|
||||||
g_assert (GST_PAD_IS_LINKED (gst_element_get_pad (element2, "src")));
|
g_assert (GST_PAD_IS_LINKED (gst_element_get_pad (element2, "src")));
|
||||||
g_assert (GST_PAD_IS_LINKED (gst_element_get_pad (element, "sink")));
|
g_assert (GST_PAD_IS_LINKED (gst_element_get_pad (element, "sink")));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (!GST_PAD_IS_LINKED (gst_element_get_pad (element2, "src")));
|
g_assert (!GST_PAD_IS_LINKED (gst_element_get_pad (element2, "src")));
|
||||||
gst_object_unref (GST_OBJECT (element2));
|
gst_object_unref (element2);
|
||||||
}
|
}
|
||||||
g_print ("create/link/unref %d element duos: %ld\n", iters / 2,
|
g_print ("create/link/unref %d element duos: %ld\n", iters / 2,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
@ -61,7 +61,7 @@ main (int argc, gchar * argv[])
|
||||||
g_assert (GST_IS_PAD (pad));
|
g_assert (GST_IS_PAD (pad));
|
||||||
gst_element_remove_pad (element, pad);
|
gst_element_remove_pad (element, pad);
|
||||||
g_assert (gst_element_get_pad (element, "sink") == NULL);
|
g_assert (gst_element_get_pad (element, "sink") == NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
|
|
||||||
g_print ("pad removal on one element: %ld\n", vmsize () - usage1);
|
g_print ("pad removal on one element: %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ main (int argc, gchar * argv[])
|
||||||
g_assert (GST_IS_PAD (pad));
|
g_assert (GST_IS_PAD (pad));
|
||||||
gst_element_remove_pad (element, pad);
|
gst_element_remove_pad (element, pad);
|
||||||
g_assert (gst_element_get_pad (element, "sink") == NULL);
|
g_assert (gst_element_get_pad (element, "sink") == NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("pad removal loop on %d elements: %ld\n", iters / 2,
|
g_print ("pad removal loop on %d elements: %ld\n", iters / 2,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
@ -82,11 +82,11 @@ main (int argc, gchar * argv[])
|
||||||
g_assert (GST_IS_ELEMENT (element));
|
g_assert (GST_IS_ELEMENT (element));
|
||||||
pad = gst_element_get_pad (element, "sink");
|
pad = gst_element_get_pad (element, "sink");
|
||||||
g_assert (GST_IS_PAD (pad));
|
g_assert (GST_IS_PAD (pad));
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_element_remove_pad (element, pad);
|
gst_element_remove_pad (element, pad);
|
||||||
g_assert (gst_pad_get_parent (pad) == NULL);
|
g_assert (gst_pad_get_parent (pad) == NULL);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("pad ref/removal/test loop on %d elements: %ld\n", iters / 2,
|
g_print ("pad ref/removal/test loop on %d elements: %ld\n", iters / 2,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
@ -95,7 +95,7 @@ main (int argc, gchar * argv[])
|
||||||
g_assert (GST_IS_ELEMENT (element));
|
g_assert (GST_IS_ELEMENT (element));
|
||||||
pad = gst_element_get_pad (element, "sink");
|
pad = gst_element_get_pad (element, "sink");
|
||||||
g_assert (GST_IS_PAD (pad));
|
g_assert (GST_IS_PAD (pad));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
|
|
||||||
g_print ("pad unref on one element: %ld\n", vmsize () - usage1);
|
g_print ("pad unref on one element: %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@ main (int argc, gchar * argv[])
|
||||||
g_assert (GST_IS_ELEMENT (element));
|
g_assert (GST_IS_ELEMENT (element));
|
||||||
pad = gst_element_get_pad (element, "sink");
|
pad = gst_element_get_pad (element, "sink");
|
||||||
g_assert (GST_IS_PAD (pad));
|
g_assert (GST_IS_PAD (pad));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
g_print ("pad unref loop on %d elements: %ld\n", iters / 2,
|
g_print ("pad unref loop on %d elements: %ld\n", iters / 2,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
|
|
@ -38,14 +38,14 @@ main (int argc, gchar * argv[])
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
g_print ("DEBUG: unreffing new pad with name padname\n");
|
g_print ("DEBUG: unreffing new pad with name padname\n");
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
g_print ("create/unref new pad %ld\n", vmsize () - usage1);
|
g_print ("create/unref new pad %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d pads %ld\n", iters, vmsize () - usage1);
|
g_print ("create/unref %d pads %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
|
@ -53,55 +53,55 @@ main (int argc, gchar * argv[])
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
g_assert (GST_OBJECT_IS_FLOATING (pad));
|
g_assert (GST_OBJECT_IS_FLOATING (pad));
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_object_sink (GST_OBJECT (pad));
|
gst_object_sink (GST_OBJECT (pad));
|
||||||
g_assert (!GST_OBJECT_IS_FLOATING (pad));
|
g_assert (!GST_OBJECT_IS_FLOATING (pad));
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
g_print ("create/ref/sink/unref new pad %ld\n", vmsize () - usage1);
|
g_print ("create/ref/sink/unref new pad %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_object_sink (GST_OBJECT (pad));
|
gst_object_sink (GST_OBJECT (pad));
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/sink/unref %d pads %ld\n", iters, vmsize () - usage1);
|
g_print ("create/ref/sink/unref %d pads %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
g_print ("create/ref/unref/unref pad %ld\n", vmsize () - usage1);
|
g_print ("create/ref/unref/unref pad %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/unref/unref %d pads %ld\n", iters, vmsize () - usage1);
|
g_print ("create/ref/unref/unref %d pads %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
g_print ("create/ref/unref/unref pad %ld\n", vmsize () - usage1);
|
g_print ("create/ref/unref/unref pad %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/unref/unref %d pads %ld\n", iters, vmsize () - usage1);
|
g_print ("create/ref/unref/unref %d pads %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
|
@ -109,11 +109,11 @@ main (int argc, gchar * argv[])
|
||||||
pad =
|
pad =
|
||||||
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
gst_pad_new_from_template (gst_static_pad_template_get (&templ),
|
||||||
"padname");
|
"padname");
|
||||||
gst_object_ref (GST_OBJECT (pad));
|
gst_object_ref (pad);
|
||||||
gst_pad_set_name (pad, "testing123");
|
gst_pad_set_name (pad, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
gst_pad_set_name (pad, "testing123");
|
gst_pad_set_name (pad, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/unref/unref %d pads %ld with name\n", iters,
|
g_print ("create/ref/unref/unref %d pads %ld with name\n", iters,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
@ -124,14 +124,14 @@ main (int argc, gchar * argv[])
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
gst_pad_set_name (pad, "testing");
|
gst_pad_set_name (pad, "testing");
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
g_print ("set name %d times %ld\n", iters, vmsize () - usage1);
|
g_print ("set name %d times %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
padtempl =
|
padtempl =
|
||||||
gst_pad_template_new ("sink%d", GST_PAD_SINK, GST_PAD_SOMETIMES,
|
gst_pad_template_new ("sink%d", GST_PAD_SINK, GST_PAD_SOMETIMES,
|
||||||
gst_caps_new_any ());
|
gst_caps_new_any ());
|
||||||
gst_object_unref (GST_OBJECT (padtempl));
|
gst_object_unref (padtempl);
|
||||||
}
|
}
|
||||||
g_print ("%d padtemplates create/unref %ld\n", iters, vmsize () - usage1);
|
g_print ("%d padtemplates create/unref %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
|
@ -140,7 +140,7 @@ main (int argc, gchar * argv[])
|
||||||
gst_pad_template_new ("sink%d", GST_PAD_SINK, GST_PAD_SOMETIMES,
|
gst_pad_template_new ("sink%d", GST_PAD_SINK, GST_PAD_SOMETIMES,
|
||||||
gst_caps_new_any ());
|
gst_caps_new_any ());
|
||||||
pad = gst_pad_new_from_template (padtempl, "sink1");
|
pad = gst_pad_new_from_template (padtempl, "sink1");
|
||||||
gst_object_unref (GST_OBJECT (pad));
|
gst_object_unref (pad);
|
||||||
}
|
}
|
||||||
g_print ("%d pads create/unref from padtemplate %ld\n", iters,
|
g_print ("%d pads create/unref from padtemplate %ld\n", iters,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
|
|
@ -69,7 +69,7 @@ main (gint argc, gchar * argv[])
|
||||||
if (gst_bin_iterate (GST_BIN (pipeline)))
|
if (gst_bin_iterate (GST_BIN (pipeline)))
|
||||||
i++;
|
i++;
|
||||||
if (i % 50 == 0) {
|
if (i % 50 == 0) {
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
create_pipeline ();
|
create_pipeline ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,7 +71,7 @@ add_remove_test1 (void)
|
||||||
g_assert (!GST_OBJECT_FLOATING (element));
|
g_assert (!GST_OBJECT_FLOATING (element));
|
||||||
gst_bin_remove (GST_BIN (thread), element);
|
gst_bin_remove (GST_BIN (thread), element);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -83,7 +83,7 @@ add_remove_test2 (void)
|
||||||
thread = gst_thread_new ("testthread");
|
thread = gst_thread_new ("testthread");
|
||||||
element = gst_element_new ();
|
element = gst_element_new ();
|
||||||
gst_element_set_name (element, "test1");
|
gst_element_set_name (element, "test1");
|
||||||
gst_object_ref (GST_OBJECT (element));
|
gst_object_ref (element);
|
||||||
g_assert (GST_OBJECT_FLOATING (element));
|
g_assert (GST_OBJECT_FLOATING (element));
|
||||||
gst_bin_add (GST_BIN (thread), element);
|
gst_bin_add (GST_BIN (thread), element);
|
||||||
g_assert (!GST_OBJECT_FLOATING (element));
|
g_assert (!GST_OBJECT_FLOATING (element));
|
||||||
|
@ -91,11 +91,11 @@ add_remove_test2 (void)
|
||||||
g_assert (!GST_OBJECT_FLOATING (element));
|
g_assert (!GST_OBJECT_FLOATING (element));
|
||||||
g_assert (!GST_OBJECT_DESTROYED (element));
|
g_assert (!GST_OBJECT_DESTROYED (element));
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (GST_OBJECT_DESTROYED (element));
|
g_assert (GST_OBJECT_DESTROYED (element));
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -111,10 +111,10 @@ add_remove_test3 (void)
|
||||||
gst_bin_add (GST_BIN (thread), element);
|
gst_bin_add (GST_BIN (thread), element);
|
||||||
g_assert (!GST_OBJECT_FLOATING (element));
|
g_assert (!GST_OBJECT_FLOATING (element));
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (gst_bin_get_by_name (GST_BIN (thread), "test1") == NULL);
|
g_assert (gst_bin_get_by_name (GST_BIN (thread), "test1") == NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -135,12 +135,12 @@ add_remove_test4 (void)
|
||||||
gst_bin_add (GST_BIN (thread), thread2);
|
gst_bin_add (GST_BIN (thread), thread2);
|
||||||
g_assert (!GST_OBJECT_FLOATING (thread2));
|
g_assert (!GST_OBJECT_FLOATING (thread2));
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread2));
|
gst_object_unref (thread2);
|
||||||
g_assert (gst_bin_get_by_name (GST_BIN (thread), "testthread") == NULL);
|
g_assert (gst_bin_get_by_name (GST_BIN (thread), "testthread") == NULL);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
g_assert (gst_bin_get_by_name (GST_BIN (thread), "test1") == NULL);
|
g_assert (gst_bin_get_by_name (GST_BIN (thread), "test1") == NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -161,86 +161,86 @@ main (int argc, gchar * argv[])
|
||||||
usage1 = vmsize ();
|
usage1 = vmsize ();
|
||||||
|
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_print ("create/unref new thread %ld\n", vmsize () - usage1);
|
g_print ("create/unref new thread %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d threads %ld\n", iters, vmsize () - usage1);
|
g_print ("create/unref %d threads %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
g_assert (GST_OBJECT_FLOATING (thread));
|
g_assert (GST_OBJECT_FLOATING (thread));
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_object_sink (GST_OBJECT (thread));
|
gst_object_sink (GST_OBJECT (thread));
|
||||||
g_assert (!GST_OBJECT_FLOATING (thread));
|
g_assert (!GST_OBJECT_FLOATING (thread));
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_print ("create/ref/sink/unref new thread %ld\n", vmsize () - usage1);
|
g_print ("create/ref/sink/unref new thread %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_object_sink (GST_OBJECT (thread));
|
gst_object_sink (GST_OBJECT (thread));
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/sink/unref %d threads %ld\n", iters, vmsize () - usage1);
|
g_print ("create/ref/sink/unref %d threads %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
g_assert (!GST_OBJECT_DESTROYED (thread));
|
g_assert (!GST_OBJECT_DESTROYED (thread));
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_assert (GST_OBJECT_DESTROYED (thread));
|
g_assert (GST_OBJECT_DESTROYED (thread));
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_print ("create/destroy/unref new thread %ld\n", vmsize () - usage1);
|
g_print ("create/destroy/unref new thread %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/destroy/unref %d thread %ld\n", iters, vmsize () - usage1);
|
g_print ("create/destroy/unref %d thread %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_print ("create/ref/unref/unref new thread %ld\n", vmsize () - usage1);
|
g_print ("create/ref/unref/unref new thread %ld\n", vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/ref/unref/unref %d thread %ld\n", iters, vmsize () - usage1);
|
g_print ("create/ref/unref/unref %d thread %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_print ("craete/ref/destroy/unref/unref new thread %ld\n",
|
g_print ("craete/ref/destroy/unref/unref new thread %ld\n",
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("craete/ref/destroy/unref/unref %d threads %ld\n", iters,
|
g_print ("craete/ref/destroy/unref/unref %d threads %ld\n", iters,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = gst_thread_new ("somethread");
|
thread = gst_thread_new ("somethread");
|
||||||
gst_object_ref (GST_OBJECT (thread));
|
gst_object_ref (thread);
|
||||||
gst_element_set_name (thread, "testing123");
|
gst_element_set_name (thread, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_element_set_name (thread, "testing123");
|
gst_element_set_name (thread, "testing123");
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("craete/ref/destroy/unref/unref %d threads with name %ld\n", iters,
|
g_print ("craete/ref/destroy/unref/unref %d threads with name %ld\n", iters,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
@ -249,7 +249,7 @@ main (int argc, gchar * argv[])
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
gst_element_set_name (thread, "testing");
|
gst_element_set_name (thread, "testing");
|
||||||
}
|
}
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
g_print ("set name %d times %ld\n", iters, vmsize () - usage1);
|
g_print ("set name %d times %ld\n", iters, vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
|
@ -257,21 +257,21 @@ main (int argc, gchar * argv[])
|
||||||
element = gst_element_new ();
|
element = gst_element_new ();
|
||||||
gst_element_set_name (element, "test1");
|
gst_element_set_name (element, "test1");
|
||||||
gst_bin_add (GST_BIN (thread), element);
|
gst_bin_add (GST_BIN (thread), element);
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d thread with one element %ld\n", iters,
|
g_print ("create/unref %d thread with one element %ld\n", iters,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters; i++) {
|
for (i = 0; i < iters; i++) {
|
||||||
thread = create_thread ();
|
thread = create_thread ();
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d thread with children %ld\n", iters,
|
g_print ("create/unref %d thread with children %ld\n", iters,
|
||||||
vmsize () - usage1);
|
vmsize () - usage1);
|
||||||
|
|
||||||
for (i = 0; i < iters / 2; i++) {
|
for (i = 0; i < iters / 2; i++) {
|
||||||
thread = create_thread_ghostpads ();
|
thread = create_thread_ghostpads ();
|
||||||
gst_object_unref (GST_OBJECT (thread));
|
gst_object_unref (thread);
|
||||||
}
|
}
|
||||||
g_print ("create/unref %d thread with children and ghostpads %ld\n",
|
g_print ("create/unref %d thread with children and ghostpads %ld\n",
|
||||||
iters / 2, vmsize () - usage1);
|
iters / 2, vmsize () - usage1);
|
||||||
|
|
|
@ -97,7 +97,7 @@ print_element_list (const char *klass, GstPadDirection dir)
|
||||||
factory->details.longname, gst_plugin_feature_get_rank (feature));
|
factory->details.longname, gst_plugin_feature_get_rank (feature));
|
||||||
element = gst_element_factory_create (factory, NULL);
|
element = gst_element_factory_create (factory, NULL);
|
||||||
print_pad_templates_info (element, factory, dir);
|
print_pad_templates_info (element, factory, dir);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,7 +282,7 @@ get_element_mime_list (const char *klass, GstPadDirection dir)
|
||||||
element = gst_element_factory_create (factory, NULL);
|
element = gst_element_factory_create (factory, NULL);
|
||||||
list = get_pad_templates_info (element, factory, dir);
|
list = get_pad_templates_info (element, factory, dir);
|
||||||
mime_list = g_list_concat (mime_list, list);
|
mime_list = g_list_concat (mime_list, list);
|
||||||
gst_object_unref (GST_OBJECT (element));
|
gst_object_unref (element);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,7 +64,7 @@ main (gint argc, gchar ** argv)
|
||||||
g_print ("got past iteration, scheduler refs elements correctly\n");
|
g_print ("got past iteration, scheduler refs elements correctly\n");
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
src = id = sink = pipeline = NULL;
|
src = id = sink = pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -49,7 +49,7 @@ main (gint argc, gchar ** argv)
|
||||||
* handoff signal, normally the scheduler should keep a ref to the
|
* handoff signal, normally the scheduler should keep a ref to the
|
||||||
* currently scheduled elements but that's another bug displayed in
|
* currently scheduled elements but that's another bug displayed in
|
||||||
* 142183-2.c */
|
* 142183-2.c */
|
||||||
gst_object_ref (GST_OBJECT (id));
|
gst_object_ref (id);
|
||||||
g_signal_connect (G_OBJECT (id), "handoff", (GCallback) handoff_identity,
|
g_signal_connect (G_OBJECT (id), "handoff", (GCallback) handoff_identity,
|
||||||
NULL);
|
NULL);
|
||||||
g_object_set (G_OBJECT (id), "loop-based", TRUE, NULL);
|
g_object_set (G_OBJECT (id), "loop-based", TRUE, NULL);
|
||||||
|
@ -85,8 +85,8 @@ main (gint argc, gchar ** argv)
|
||||||
g_print ("ok, no deadlock. bug 142183 fixed!\n");
|
g_print ("ok, no deadlock. bug 142183 fixed!\n");
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
gst_object_unref (GST_OBJECT (id));
|
gst_object_unref (id);
|
||||||
src = id = sink = pipeline = NULL;
|
src = id = sink = pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -54,7 +54,7 @@ main (int argc, char **argv)
|
||||||
g_print ("%d\n", i);
|
g_print ("%d\n", i);
|
||||||
}
|
}
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -64,7 +64,7 @@ main (gint argc, gchar ** argv)
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
g_assert (i == 100);
|
g_assert (i == 100);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
src = id = sink = pipeline = NULL;
|
src = id = sink = pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -81,7 +81,7 @@ main (gint argc, gchar ** argv)
|
||||||
gst_bin_iterate (GST_BIN (pipeline));
|
gst_bin_iterate (GST_BIN (pipeline));
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
src = id1 = id2 = sink = pipeline = NULL;
|
src = id1 = id2 = sink = pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -80,7 +80,7 @@ main (gint argc, gchar ** argv)
|
||||||
gst_bin_iterate (GST_BIN (pipeline));
|
gst_bin_iterate (GST_BIN (pipeline));
|
||||||
|
|
||||||
/* do ugly stuff here */
|
/* do ugly stuff here */
|
||||||
gst_object_ref (GST_OBJECT (id1));
|
gst_object_ref (id1);
|
||||||
gst_bin_remove (GST_BIN (pipeline), id1);
|
gst_bin_remove (GST_BIN (pipeline), id1);
|
||||||
gst_element_link_pads (src, "src", id1, "sink");
|
gst_element_link_pads (src, "src", id1, "sink");
|
||||||
gst_element_link_pads (id1, "src", id2, "sink");
|
gst_element_link_pads (id1, "src", id2, "sink");
|
||||||
|
@ -92,7 +92,7 @@ main (gint argc, gchar ** argv)
|
||||||
gst_bin_iterate (GST_BIN (pipeline));
|
gst_bin_iterate (GST_BIN (pipeline));
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
src = id1 = id2 = sink = pipeline = NULL;
|
src = id1 = id2 = sink = pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -127,8 +127,8 @@ main (gint argc, gchar ** argv)
|
||||||
|
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
gst_object_unref (GST_OBJECT (pipeline2));
|
gst_object_unref (pipeline2);
|
||||||
src = id = sink = pipeline = pipeline2 = NULL;
|
src = id = sink = pipeline = pipeline2 = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -133,8 +133,8 @@ main (gint argc, gchar ** argv)
|
||||||
|
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
gst_object_unref (GST_OBJECT (pipeline2));
|
gst_object_unref (pipeline2);
|
||||||
src = id = sink = pipeline = pipeline2 = NULL;
|
src = id = sink = pipeline = pipeline2 = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -58,7 +58,7 @@ main (gint argc, gchar ** argv)
|
||||||
gst_bin_iterate (GST_BIN (pipeline));
|
gst_bin_iterate (GST_BIN (pipeline));
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
src = id1 = id2 = sink = pipeline = NULL;
|
src = id1 = id2 = sink = pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -58,9 +58,9 @@ main (gint argc, gchar ** argv)
|
||||||
|
|
||||||
g_print ("unlinking...\n");
|
g_print ("unlinking...\n");
|
||||||
|
|
||||||
gst_object_ref (GST_OBJECT (queue));
|
gst_object_ref (queue);
|
||||||
gst_bin_remove (GST_BIN (pipeline), queue);
|
gst_bin_remove (GST_BIN (pipeline), queue);
|
||||||
gst_object_ref (GST_OBJECT (bin));
|
gst_object_ref (bin);
|
||||||
gst_bin_remove (GST_BIN (thread), bin);
|
gst_bin_remove (GST_BIN (thread), bin);
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -65,7 +65,7 @@ main (gint argc, gchar ** argv)
|
||||||
while (i++ < 10 && gst_bin_iterate (GST_BIN (pipeline)));
|
while (i++ < 10 && gst_bin_iterate (GST_BIN (pipeline)));
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
pipeline = NULL;
|
pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -56,7 +56,7 @@ main (gint argc, gchar ** argv)
|
||||||
while (gst_bin_iterate (GST_BIN (pipeline)));
|
while (gst_bin_iterate (GST_BIN (pipeline)));
|
||||||
|
|
||||||
g_print ("cleaning up...\n");
|
g_print ("cleaning up...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
pipeline = NULL;
|
pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -26,7 +26,7 @@ cb_handoff (GstElement * element, GstBuffer * buffer, GstPad * pad,
|
||||||
{
|
{
|
||||||
if (pipeline) {
|
if (pipeline) {
|
||||||
g_print ("unreffing...\n");
|
g_print ("unreffing...\n");
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
pipeline = NULL;
|
pipeline = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ main (gint argc, gchar ** argv)
|
||||||
|
|
||||||
g_print ("cleaning up... (%d iterations)\n", i);
|
g_print ("cleaning up... (%d iterations)\n", i);
|
||||||
g_assert (i == 100);
|
g_assert (i == 100);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
pipeline = NULL;
|
pipeline = NULL;
|
||||||
|
|
||||||
g_print ("done.\n");
|
g_print ("done.\n");
|
||||||
|
|
|
@ -80,7 +80,7 @@ test_adding_one_element (GstElement * bin)
|
||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
g_assert (test);
|
g_assert (test);
|
||||||
gst_object_ref (GST_OBJECT (test));
|
gst_object_ref (test);
|
||||||
assert_state (test, GST_STATE_NULL);
|
assert_state (test, GST_STATE_NULL);
|
||||||
gst_bin_add (GST_BIN (bin), test);
|
gst_bin_add (GST_BIN (bin), test);
|
||||||
assert_state (bin, MAX (bin_state, GST_STATE_NULL));
|
assert_state (bin, MAX (bin_state, GST_STATE_NULL));
|
||||||
|
@ -97,7 +97,7 @@ test_adding_one_element (GstElement * bin)
|
||||||
assert_state (bin, MAX (bin_state, test_state));
|
assert_state (bin, MAX (bin_state, test_state));
|
||||||
}
|
}
|
||||||
gst_bin_remove (GST_BIN (bin), test);
|
gst_bin_remove (GST_BIN (bin), test);
|
||||||
gst_object_unref (GST_OBJECT (test));
|
gst_object_unref (test);
|
||||||
assert_state (bin, bin_state);
|
assert_state (bin, bin_state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@ test_element_in_bin (gchar * bin_name)
|
||||||
test_adding_one_element (bin);
|
test_adding_one_element (bin);
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
}
|
}
|
||||||
|
|
||||||
gint
|
gint
|
||||||
|
|
|
@ -53,7 +53,7 @@ main (gint argc, gchar * argv[])
|
||||||
loop = g_main_loop_new (NULL, FALSE);
|
loop = g_main_loop_new (NULL, FALSE);
|
||||||
bus = gst_element_get_bus (pipeline);
|
bus = gst_element_get_bus (pipeline);
|
||||||
gst_bus_add_watch (bus, (GstBusHandler) message_received, pipeline);
|
gst_bus_add_watch (bus, (GstBusHandler) message_received, pipeline);
|
||||||
gst_object_unref (GST_OBJECT (bus));
|
gst_object_unref (bus);
|
||||||
|
|
||||||
fakesrc1 = gst_element_factory_make ("fakesrc", "fakesrc1");
|
fakesrc1 = gst_element_factory_make ("fakesrc", "fakesrc1");
|
||||||
g_object_set (G_OBJECT (fakesrc1), "num_buffers", 5, NULL);
|
g_object_set (G_OBJECT (fakesrc1), "num_buffers", 5, NULL);
|
||||||
|
@ -98,7 +98,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -131,7 +131,7 @@ main (gint argc, gchar * argv[])
|
||||||
g_source_remove (id);
|
g_source_remove (id);
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
g_print ("Done with test to show bug %d, fixed correctly\n", TESTNUM);
|
g_print ("Done with test to show bug %d, fixed correctly\n", TESTNUM);
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ main (int argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,11 +38,11 @@ main (int argc, char *argv[])
|
||||||
|
|
||||||
/* destroy the fakesink, but keep fakesrc (its state is GST_STATE_READY) */
|
/* destroy the fakesink, but keep fakesrc (its state is GST_STATE_READY) */
|
||||||
gst_element_unlink_pads (fakesrc, "src", fakesink1, "sink");
|
gst_element_unlink_pads (fakesrc, "src", fakesink1, "sink");
|
||||||
gst_object_ref (GST_OBJECT (fakesrc));
|
gst_object_ref (fakesrc);
|
||||||
gst_bin_remove (GST_BIN (pipe1), fakesrc);
|
gst_bin_remove (GST_BIN (pipe1), fakesrc);
|
||||||
gst_bin_remove (GST_BIN (pipe1), fakesink1);
|
gst_bin_remove (GST_BIN (pipe1), fakesink1);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipe1));
|
gst_object_unref (pipe1);
|
||||||
|
|
||||||
/* make a new pipeline */
|
/* make a new pipeline */
|
||||||
gst_bin_add (GST_BIN (pipe2), fakesink2);
|
gst_bin_add (GST_BIN (pipe2), fakesink2);
|
||||||
|
|
|
@ -50,7 +50,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
|
|
|
@ -55,7 +55,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
|
|
|
@ -59,7 +59,7 @@ main (gint argc, gchar * argv[])
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
}
|
}
|
||||||
fprintf (stderr, "\n");
|
fprintf (stderr, "\n");
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
|
|
|
@ -34,7 +34,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
fprintf (stderr, "+\n");
|
fprintf (stderr, "+\n");
|
||||||
|
|
||||||
gst_object_unref (GST_OBJECT (bin));
|
gst_object_unref (bin);
|
||||||
|
|
||||||
g_mem_chunk_info ();
|
g_mem_chunk_info ();
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -22,5 +22,5 @@ do_test (void)
|
||||||
g_print ("\n");
|
g_print ("\n");
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -183,7 +183,7 @@ main (int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_set_state (pipeline, GST_STATE_NULL);
|
gst_element_set_state (pipeline, GST_STATE_NULL);
|
||||||
gst_object_unref (GST_OBJECT (pipeline));
|
gst_object_unref (pipeline);
|
||||||
|
|
||||||
/* switch element types */
|
/* switch element types */
|
||||||
g_print ("Loop=%s done\n", loop ? "true" : "false");
|
g_print ("Loop=%s done\n", loop ? "true" : "false");
|
||||||
|
|
|
@ -59,7 +59,7 @@ static gchar *s;
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
|
||||||
#define TEST_OK G_STMT_START{ \
|
#define TEST_OK G_STMT_START{ \
|
||||||
gst_object_unref (GST_OBJECT (cur)); \
|
gst_object_unref (cur); \
|
||||||
cur = NULL; \
|
cur = NULL; \
|
||||||
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
|
|
@ -85,7 +85,7 @@ static char *video_file = NULL;
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
#endif
|
#endif
|
||||||
#define TEST_OK G_STMT_START{ \
|
#define TEST_OK G_STMT_START{ \
|
||||||
gst_object_unref (GST_OBJECT (cur)); \
|
gst_object_unref (cur); \
|
||||||
cur = NULL; \
|
cur = NULL; \
|
||||||
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
g_print ("TEST %2d line %3d COMPLETE\n", test, __LINE__); \
|
||||||
}G_STMT_END
|
}G_STMT_END
|
||||||
|
@ -127,7 +127,7 @@ static char *video_file = NULL;
|
||||||
GstElement *element = gst_element_factory_make ((element_name), NULL); \
|
GstElement *element = gst_element_factory_make ((element_name), NULL); \
|
||||||
if (element) { \
|
if (element) { \
|
||||||
g_print ("REQUIRE line %3d OK\n", __LINE__); \
|
g_print ("REQUIRE line %3d OK\n", __LINE__); \
|
||||||
gst_object_unref (GST_OBJECT (element)); \
|
gst_object_unref (element); \
|
||||||
} else { \
|
} else { \
|
||||||
g_print ("REQUIRE line %3d EXIT : No element of type \"%s\" available. Exiting.\n", __LINE__, (element_name)); \
|
g_print ("REQUIRE line %3d EXIT : No element of type \"%s\" available. Exiting.\n", __LINE__, (element_name)); \
|
||||||
TEST_FINISH; \
|
TEST_FINISH; \
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue