From 790c0598677fd3edac13cdca8adf446ba0f5d868 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 5 May 2005 14:57:20 +0000 Subject: [PATCH] gst/: Some GCC4 fixes Original commit message from CVS: 2005-05-05 Andy Wingo * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1): * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain): * gst/adder/gstadder.h: * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_fill_one_other): * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps), (gst_audiorate_init), (gst_audiorate_chain): * gst/playback/gstplaybasebin.c: (setup_source): * gst/playback/test3.c: (update_scale): Some GCC4 fixes * po/af.po: * po/az.po: * po/cs.po: * po/en_GB.po: * po/hu.po: * po/it.po: * po/nb.po: * po/nl.po: * po/or.po: * po/sq.po: * po/sr.po: * po/sv.po: * po/uk.po: * po/vi.po: Foo --- ChangeLog | 29 +++++++++++++++++++++++++++ gst-libs/gst/tag/gstid3tag.c | 14 +++++++------ gst-libs/gst/tag/gstvorbistag.c | 9 +++++---- gst/adder/gstadder.h | 10 +++++----- gst/audioconvert/gstchannelmix.c | 2 +- gst/audiorate/gstaudiorate.c | 43 ++++++++++++++++------------------------ gst/playback/gstplaybasebin.c | 3 ++- gst/playback/test3.c | 4 ++-- po/af.po | 6 +----- po/az.po | 6 +----- po/cs.po | 6 +----- po/en_GB.po | 6 +----- po/hu.po | 6 +----- po/it.po | 6 +----- po/nb.po | 6 +----- po/nl.po | 6 +----- po/or.po | 6 +----- po/sq.po | 6 +----- po/sr.po | 6 +----- po/sv.po | 8 ++------ po/uk.po | 6 +----- po/vi.po | 6 +----- 22 files changed, 84 insertions(+), 116 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e83c1b..728bdd0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,32 @@ +2005-05-05 Andy Wingo + + * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1): + * gst-libs/gst/tag/gstvorbistag.c: + (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain): + * gst/adder/gstadder.h: + * gst/audioconvert/gstchannelmix.c: + (gst_audio_convert_fill_one_other): + * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps), + (gst_audiorate_init), (gst_audiorate_chain): + * gst/playback/gstplaybasebin.c: (setup_source): + * gst/playback/test3.c: (update_scale): + Some GCC4 fixes + + * po/af.po: + * po/az.po: + * po/cs.po: + * po/en_GB.po: + * po/hu.po: + * po/it.po: + * po/nb.po: + * po/nl.po: + * po/or.po: + * po/sq.po: + * po/sr.po: + * po/sv.po: + * po/uk.po: + * po/vi.po: Foo + 2005-05-05 Wim Taymans * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain), diff --git a/gst-libs/gst/tag/gstid3tag.c b/gst-libs/gst/tag/gstid3tag.c index f34d1c4..cf60f50 100644 --- a/gst-libs/gst/tag/gstid3tag.c +++ b/gst-libs/gst/tag/gstid3tag.c @@ -331,10 +331,10 @@ gst_tag_list_new_from_id3v1 (const guint8 * data) if (data[0] != 'T' || data[1] != 'A' || data[2] != 'G') return NULL; list = gst_tag_list_new (); - gst_tag_extract_id3v1_string (list, GST_TAG_TITLE, &data[3], 30); - gst_tag_extract_id3v1_string (list, GST_TAG_ARTIST, &data[33], 30); - gst_tag_extract_id3v1_string (list, GST_TAG_ALBUM, &data[63], 30); - ystr = g_strndup (&data[93], 4); + gst_tag_extract_id3v1_string (list, GST_TAG_TITLE, (gchar *) & data[3], 30); + gst_tag_extract_id3v1_string (list, GST_TAG_ARTIST, (gchar *) & data[33], 30); + gst_tag_extract_id3v1_string (list, GST_TAG_ALBUM, (gchar *) & data[63], 30); + ystr = g_strndup ((gchar *) & data[93], 4); year = strtoul (ystr, NULL, 10); g_free (ystr); if (year > 0) { @@ -345,11 +345,13 @@ gst_tag_list_new_from_id3v1 (const guint8 * data) gst_tag_list_add (list, GST_TAG_MERGE_REPLACE, GST_TAG_DATE, year, NULL); } if (data[125] == 0) { - gst_tag_extract_id3v1_string (list, GST_TAG_COMMENT, &data[97], 28); + gst_tag_extract_id3v1_string (list, GST_TAG_COMMENT, (gchar *) & data[97], + 28); gst_tag_list_add (list, GST_TAG_MERGE_REPLACE, GST_TAG_TRACK_NUMBER, (guint) data[126], NULL); } else { - gst_tag_extract_id3v1_string (list, GST_TAG_COMMENT, &data[97], 30); + gst_tag_extract_id3v1_string (list, GST_TAG_COMMENT, (gchar *) & data[97], + 30); } if (data[127] < gst_tag_id3_genre_count ()) { gst_tag_list_add (list, GST_TAG_MERGE_REPLACE, GST_TAG_GENRE, diff --git a/gst-libs/gst/tag/gstvorbistag.c b/gst-libs/gst/tag/gstvorbistag.c index c0736e5..fa53ac3 100644 --- a/gst-libs/gst/tag/gstvorbistag.c +++ b/gst-libs/gst/tag/gstvorbistag.c @@ -367,7 +367,7 @@ gst_tag_list_from_vorbiscomment_buffer (const GstBuffer * buffer, data += 4; \ size -= 4; \ if (cur_size > size) goto error; \ - cur = data; \ + cur = (gchar*)data; \ }G_STMT_END gchar *cur, *value; guint cur_size; @@ -614,8 +614,8 @@ gst_vorbis_tag_chain (GstPad * pad, GstBuffer * buffer) if (GST_BUFFER_DATA (buffer)[0] == 3) { gchar *vendor; GstTagList *list = - gst_tag_list_from_vorbiscomment_buffer (buffer, "\003vorbis", 7, - &vendor); + gst_tag_list_from_vorbiscomment_buffer (buffer, (guchar *) "\003vorbis", + 7, &vendor); const GstTagList *found_tags; gst_data_unref (GST_DATA (buffer)); @@ -631,7 +631,8 @@ gst_vorbis_tag_chain (GstPad * pad, GstBuffer * buffer) if (found_tags) gst_tag_list_insert (list, found_tags, gst_tag_setter_get_merge_mode (GST_TAG_SETTER (tag))); - out = gst_tag_list_to_vorbiscomment_buffer (list, "\003vorbis", 7, vendor); + out = gst_tag_list_to_vorbiscomment_buffer (list, (guchar *) "\003vorbis", + 7, vendor); gst_tag_list_free (list); g_free (vendor); } diff --git a/gst/adder/gstadder.h b/gst/adder/gstadder.h index cc46f3e..63bd9ad 100644 --- a/gst/adder/gstadder.h +++ b/gst/adder/gstadder.h @@ -63,13 +63,13 @@ struct _GstAdder { /* the next are valid for both int and float */ GstAdderFormat format; - guint rate; - guint channels; - guint width; - guint endianness; + gint rate; + gint channels; + gint width; + gint endianness; /* the next are valid only for format == GST_ADDER_FORMAT_INT */ - guint depth; + gint depth; gboolean is_signed; /* function to add samples */ diff --git a/gst/audioconvert/gstchannelmix.c b/gst/audioconvert/gstchannelmix.c index 53749a2..1916126 100644 --- a/gst/audioconvert/gstchannelmix.c +++ b/gst/audioconvert/gstchannelmix.c @@ -242,7 +242,7 @@ gst_audio_convert_fill_one_other (gfloat ** matrix, GstAudioChannelPosition to_pos_r, GstAudioChannelPosition to_pos_c, gfloat ratio) { - gfloat in_r, out_r[2]; + gfloat in_r, out_r[2] = { 0.f, 0.f }; /* * The idea is that we add up from the input (which means that if we diff --git a/gst/audiorate/gstaudiorate.c b/gst/audiorate/gstaudiorate.c index 21415b3..3bbbb45 100644 --- a/gst/audiorate/gstaudiorate.c +++ b/gst/audiorate/gstaudiorate.c @@ -103,7 +103,7 @@ GST_STATIC_PAD_TEMPLATE ("sink", static void gst_audiorate_base_init (gpointer g_class); static void gst_audiorate_class_init (GstAudiorateClass * klass); static void gst_audiorate_init (GstAudiorate * audiorate); -static void gst_audiorate_chain (GstPad * pad, GstData * _data); +static GstFlowReturn gst_audiorate_chain (GstPad * pad, GstBuffer * buf); static void gst_audiorate_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); @@ -185,13 +185,12 @@ gst_audiorate_class_init (GstAudiorateClass * klass) element_class->change_state = gst_audiorate_change_state; } -static GstPadLinkReturn -gst_audiorate_link (GstPad * pad, const GstCaps * caps) +static gboolean +gst_audiorate_setcaps (GstPad * pad, GstCaps * caps) { GstAudiorate *audiorate; GstStructure *structure; GstPad *otherpad; - GstPadLinkReturn res; gint ret, channels, depth; audiorate = GST_AUDIORATE (gst_pad_get_parent (pad)); @@ -199,41 +198,41 @@ gst_audiorate_link (GstPad * pad, const GstCaps * caps) otherpad = (pad == audiorate->srcpad) ? audiorate->sinkpad : audiorate->srcpad; - res = gst_pad_try_set_caps (otherpad, caps); - if (GST_PAD_LINK_FAILED (res)) - return res; + if (!gst_pad_set_caps (otherpad, caps)) + return FALSE; structure = gst_caps_get_structure (caps, 0); ret = gst_structure_get_int (structure, "channels", &channels); ret &= gst_structure_get_int (structure, "depth", &depth); + if (!ret) + return FALSE; + audiorate->bytes_per_sample = channels * (depth / 8); if (audiorate->bytes_per_sample == 0) audiorate->bytes_per_sample = 1; - return GST_PAD_LINK_OK; + return TRUE; } static void gst_audiorate_init (GstAudiorate * audiorate) { - GST_FLAG_SET (audiorate, GST_ELEMENT_EVENT_AWARE); - GST_DEBUG ("gst_audiorate_init"); audiorate->sinkpad = gst_pad_new_from_template (gst_static_pad_template_get (&gst_audiorate_sink_template), "sink"); gst_element_add_pad (GST_ELEMENT (audiorate), audiorate->sinkpad); gst_pad_set_chain_function (audiorate->sinkpad, gst_audiorate_chain); - gst_pad_set_link_function (audiorate->sinkpad, gst_audiorate_link); + gst_pad_set_setcaps_function (audiorate->sinkpad, gst_audiorate_setcaps); gst_pad_set_getcaps_function (audiorate->sinkpad, gst_pad_proxy_getcaps); audiorate->srcpad = gst_pad_new_from_template (gst_static_pad_template_get (&gst_audiorate_src_template), "src"); gst_element_add_pad (GST_ELEMENT (audiorate), audiorate->srcpad); - gst_pad_set_link_function (audiorate->srcpad, gst_audiorate_link); + gst_pad_set_setcaps_function (audiorate->srcpad, gst_audiorate_setcaps); gst_pad_set_getcaps_function (audiorate->srcpad, gst_pad_proxy_getcaps); audiorate->bytes_per_sample = 1; @@ -244,27 +243,18 @@ gst_audiorate_init (GstAudiorate * audiorate) audiorate->silent = DEFAULT_SILENT; } -static void -gst_audiorate_chain (GstPad * pad, GstData * data) +static GstFlowReturn +gst_audiorate_chain (GstPad * pad, GstBuffer * buf) { GstAudiorate *audiorate; - GstBuffer *buf; GstClockTime in_time, in_duration; guint64 in_offset, in_offset_end; gint in_size; audiorate = GST_AUDIORATE (gst_pad_get_parent (pad)); - if (GST_IS_EVENT (data)) { - GstEvent *event = GST_EVENT (data); - - gst_pad_event_default (pad, event); - return; - } - audiorate->in++; - buf = GST_BUFFER (data); in_time = GST_BUFFER_TIMESTAMP (buf); in_duration = GST_BUFFER_DURATION (buf); in_size = GST_BUFFER_SIZE (buf); @@ -294,7 +284,7 @@ gst_audiorate_chain (GstPad * pad, GstData * data) GST_BUFFER_OFFSET (fill) = audiorate->next_offset; GST_BUFFER_OFFSET_END (fill) = in_offset; - gst_pad_push (audiorate->srcpad, GST_DATA (fill)); + gst_pad_push (audiorate->srcpad, fill); audiorate->out++; audiorate->add += fillsamples; @@ -315,7 +305,7 @@ gst_audiorate_chain (GstPad * pad, GstData * data) if (!audiorate->silent) g_object_notify (G_OBJECT (audiorate), "drop"); - return; + return GST_FLOW_OK; } else { guint64 truncsamples, truncsize, leftsize; GstBuffer *trunc; @@ -340,10 +330,11 @@ gst_audiorate_chain (GstPad * pad, GstData * data) audiorate->drop += truncsamples; } } - gst_pad_push (audiorate->srcpad, GST_DATA (buf)); + gst_pad_push (audiorate->srcpad, buf); audiorate->out++; audiorate->next_offset = in_offset_end; + return GST_FLOW_OK; } static void diff --git a/gst/playback/gstplaybasebin.c b/gst/playback/gstplaybasebin.c index c87d4f9..8ba8a5a 100644 --- a/gst/playback/gstplaybasebin.c +++ b/gst/playback/gstplaybasebin.c @@ -1156,6 +1156,7 @@ got_redirect (GstElement * element, const gchar * new_location, gpointer data) /* construct and run the source and decoder elements until we found * all the streams or until a preroll queue has been filled. + * jesus christ this is a long function! */ static gboolean setup_source (GstPlayBaseBin * play_base_bin, @@ -1164,7 +1165,7 @@ setup_source (GstPlayBaseBin * play_base_bin, GstElement *old_src; GstElement *old_dec; GstPad *srcpad = NULL; - GstElement *subbin; + GstElement *subbin = NULL; if (!play_base_bin->need_rebuild) return TRUE; diff --git a/gst/playback/test3.c b/gst/playback/test3.c index 4f52e7b..2dca54f 100644 --- a/gst/playback/test3.c +++ b/gst/playback/test3.c @@ -23,8 +23,8 @@ static gboolean update_scale (GstElement * element) { - guint64 duration; - guint64 position; + gint64 duration; + gint64 position; GstFormat format = GST_FORMAT_TIME; gst_element_query (element, GST_QUERY_TOTAL, &format, &duration); diff --git a/po/af.po b/po/af.po index fd2725d..dc55ca7 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.7.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-03-18 14:16+0200\n" "Last-Translator: Petri Jooste \n" "Language-Team: Afrikaans \n" @@ -87,10 +87,6 @@ msgstr "Geen l msgid "Could not close vfs file \"%s\"." msgstr "Kon nie vfs-lêer \"%s\" toemaak nie." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Geen toestel gespesifiseer" diff --git a/po/az.po b/po/az.po index 39504cc..78646dc 100644 --- a/po/az.po +++ b/po/az.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins-0.8.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-03-19 18:29+0200\n" "Last-Translator: Metin Amiroff \n" "Language-Team: Azerbaijani \n" @@ -88,10 +88,6 @@ msgstr "Fayl adı verilməyib." msgid "Could not close vfs file \"%s\"." msgstr "\"%s\" vfs faylı bağlana bilmədi." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Avadanlıq bildirilməyib." diff --git a/po/cs.po b/po/cs.po index 98aec73..c66e1e1 100644 --- a/po/cs.po +++ b/po/cs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-08-08 22:58+0200\n" "Last-Translator: Miloslav Trmac \n" "Language-Team: Czech \n" @@ -89,10 +89,6 @@ msgstr "Nezadán název souboru" msgid "Could not close vfs file \"%s\"." msgstr "Nemohu zavřít soubor vfs \"%s\"." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Nezadáno zařízení." diff --git a/po/en_GB.po b/po/en_GB.po index f7f9980..b60f5b5 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-04-26 10:41-0400\n" "Last-Translator: Gareth Owen \n" "Language-Team: English (British) \n" @@ -85,10 +85,6 @@ msgstr "No filename given" msgid "Could not close vfs file \"%s\"." msgstr "Could not close vfs file \"%s\"." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "No device specified." diff --git a/po/hu.po b/po/hu.po index a608b2b..de2d0bb 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-07-18 11:03+0200\n" "Last-Translator: Laszlo Dvornik \n" "Language-Team: Hungarian \n" @@ -85,10 +85,6 @@ msgstr "Nincs fájlnév megadva" msgid "Could not close vfs file \"%s\"." msgstr "Nem lehet bezárni a(z) \"%s\" vfs-fájlt." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Nincs megadva eszköz." diff --git a/po/it.po b/po/it.po index 90bfec0..679bd6a 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-11-07 19:11+0100\n" "Last-Translator: Luca Ferretti \n" "Language-Team: Italian \n" @@ -86,10 +86,6 @@ msgstr "Nessun nome di file fornito" msgid "Could not close vfs file \"%s\"." msgstr "Impossibile chiudere il file vfs «%s»." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Nessun device specificato." diff --git a/po/nb.po b/po/nb.po index 7811c2a..50ad8d6 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-10-04 15:54+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian Bokmaal \n" @@ -85,10 +85,6 @@ msgstr "Ingen filnavn oppgitt" msgid "Could not close vfs file \"%s\"." msgstr "Kunne ikke lukke VFS-fil «%s»." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Ingen enhet oppgitt." diff --git a/po/nl.po b/po/nl.po index 7a84f55..cb19be2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-08-05 16:26+0200\n" "Last-Translator: Elros Cyriatan \n" "Language-Team: Dutch \n" @@ -86,10 +86,6 @@ msgstr "Geen bestandsnaam opgegeven" msgid "Could not close vfs file \"%s\"." msgstr "Kon het VFS-bestand \"%s\" niet sluiten." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Geen apparaat opgegeven." diff --git a/po/or.po b/po/or.po index a81daa7..a5f901f 100644 --- a/po/or.po +++ b/po/or.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins-0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-09-27 13:32+0530\n" "Last-Translator: Gora Mohanty \n" "Language-Team: Oriya \n" @@ -87,10 +87,6 @@ msgstr "କୌଣସି ଫାଇଲନାମ ଦିଆଯାଇ ନାହିଁ msgid "Could not close vfs file \"%s\"." msgstr "ଭି.ଏଫ.ଏସ. ଫାଇଲ \"%s\" ବନ୍ଦ କରିହେଲା ନାହିଁ." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "କୌଣସି ଯନ୍ତ୍ର ଉଲ୍ଲେଖିତ କରାଯାଇ ନାହିଁ." diff --git a/po/sq.po b/po/sq.po index 3f0aadb..1b3f8d5 100644 --- a/po/sq.po +++ b/po/sq.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-08-07 20:29+0200\n" "Last-Translator: Laurent Dhima \n" "Language-Team: Albanian \n" @@ -85,10 +85,6 @@ msgstr "Nuk është dhënë asnjë emër file" msgid "Could not close vfs file \"%s\"." msgstr "E pamundur mbyllja e file vfs \"%s\"." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Nuk është përcaktuar asnjë dispozitiv." diff --git a/po/sr.po b/po/sr.po index 1048f43..c6e8bc9 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.7.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-03-13 00:18+0100\n" "Last-Translator: Danilo Segan \n" "Language-Team: Serbian \n" @@ -88,10 +88,6 @@ msgstr "Име датотеке није задато." msgid "Could not close vfs file \"%s\"." msgstr "Не могу да затворим ВСД датотеку „%s“." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Уређај није наведен." diff --git a/po/sv.po b/po/sv.po index 1a91ac6..abb7614 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,13 +2,13 @@ # Copyright (C) 2004 Free Software Foundation, Inc. # Christian Rose , 2004. # -# $Id: sv.po,v 1.18 2005/04/25 00:35:15 ds Exp $ +# $Id: sv.po,v 1.19 2005/05/05 14:57:20 wingo Exp $ # msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-08-03 20:53+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -90,10 +90,6 @@ msgstr "Inget filnamn angivet" msgid "Could not close vfs file \"%s\"." msgstr "Kunde inte stänga vfs-filen \"%s\"." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Ingen enheten angiven." diff --git a/po/uk.po b/po/uk.po index a156b7b..ab7dcfc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins 0.8.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2004-08-03 15:40+0200\n" "Last-Translator: Maxim V. Dziumanenko \n" "Language-Team: Ukrainian \n" @@ -87,10 +87,6 @@ msgstr "Не вказано файл" msgid "Could not close vfs file \"%s\"." msgstr "Не вдається закрити файл віртуальної файлової системи \"%s\"." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "Пристрій не вказано." diff --git a/po/vi.po b/po/vi.po index d809ebf..4244405 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gst-plugins-0.8.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-04-22 13:33-0700\n" +"POT-Creation-Date: 2005-05-05 10:25-0400\n" "PO-Revision-Date: 2005-01-22 17:17+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -87,10 +87,6 @@ msgstr "ChÆ°a nhập tên tập tin " msgid "Could not close vfs file \"%s\"." msgstr "Đã không đóng được tập tin vfs \"%s\"." -#: gst-libs/gst/play/play.c:731 -msgid "Failed to create playbin object" -msgstr "" - #: sys/v4l/v4l_calls.c:159 msgid "No device specified." msgstr "ChÆ°a ghi rõ thiết bị nào" -- 2.7.4