Imported Upstream version 1.0.4
diff --git a/ChangeLog b/ChangeLog
index 29ab451..73f22db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,203 @@
-=== release 1.0.3 ===
+=== release 1.0.4 ===
 
-2012-11-21  Tim-Philipp Müller <tim@centricular.net>
+2012-12-18  Tim-Philipp Müller <tim@centricular.net>
 
 	* configure.ac:
-	  releasing 1.0.3
+	  releasing 1.0.4
+
+2012-12-18 15:34:42 +0100  Thijs Vermeir <thijsvermeir@gmail.com>
+
+	* ext/vorbis/gstvorbisdec.c:
+	  vorbis: fix unused variable
+
+2012-12-18 15:31:52 +0100  Thijs Vermeir <thijsvermeir@gmail.com>
+
+	* gst-libs/gst/video/gstvideometa.c:
+	  video: use appropriate printf format for gsize
+
+2012-12-18 15:27:48 +0100  Thijs Vermeir <thijsvermeir@gmail.com>
+
+	* gst-libs/gst/rtp/gstrtpbuffer.c:
+	  rtp: fix compiler warning
+	  comparison is always true due to limited range of data type
+
+2012-12-17 00:59:57 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst/subparse/gstssaparse.c:
+	  ssaparse: ignore invalid UTF-8 in init section
+	  The codec data blob we get from matroskademux with the SSA/ASS
+	  init section is supposed to be valid UTF-8. If it's not, just
+	  continue with the bits that are valid UTF-8 instead of erroring
+	  out. We don't actually parse the init section yet anyway..
+	  https://bugzilla.gnome.org/show_bug.cgi?id=607630
+
+2012-12-16 12:34:14 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst/subparse/gstsubparse.c:
+	  subparse: fix GError leak
+
+2012-12-15 19:36:56 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* ext/alsa/gstalsasink.c:
+	* ext/alsa/gstalsasrc.c:
+	  alsa: post error message when audio device disappears
+	  Don't loop forever if an USB audio device gets disconnected
+	  while in use. Post an error message instead. This is not
+	  enough yet though, we still need to make the base class
+	  and/or the ring buffer bail out.
+	  https://bugzilla.gnome.org/show_bug.cgi?id=690197
+
+2012-12-12 15:31:20 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst/typefind/gsttypefindfunctions.c:
+	  typefindfunctions: aac: don't try to unref NULL caps
+
+2012-12-13 11:31:28 +0100  Wim Taymans <wim.taymans@collabora.co.uk>
+
+	* gst/playback/gstplaysink.c:
+	  playsink: fix vis switch with format change
+	  Block the pad before the resample and convertor elements to give them a chance
+	  to negotiate new caps with the newly switched vis plugin.
+	  Fixes https://bugzilla.gnome.org/show_bug.cgi?id=679976
+
+2012-12-10 13:35:37 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst-libs/gst/video/videooverlay.c:
+	* sys/ximage/ximagesink.h:
+	* sys/xvimage/xvimagesink.c:
+	* sys/xvimage/xvimagesink.h:
+	* tests/examples/overlay/gtk-videooverlay.c:
+	* tests/examples/overlay/qt-videooverlay.cpp:
+	* tests/examples/overlay/qtgv-videooverlay.cpp:
+	* tests/examples/playback/playback-test.c:
+	* tests/examples/seek/jsseek.c:
+	* tests/icles/test-colorkey.c:
+	  docs: fix up some more GstXOverlay -> GstVideoOverlay
+	  https://bugzilla.gnome.org/show_bug.cgi?id=689740
+
+2012-12-10 11:49:46 +0000  Sebastian Dröge <sebastian.droege@collabora.co.uk>
+
+	* gst-libs/gst/video/gstvideodecoder.c:
+	  videodecoder: Only keep track of timestamps if the subclass is parsing data
+	  Otherwise we just pass through the timestamps directly and don't
+	  need to waste additional memory for them.
+	  Fixes bug #689814.
+
+2012-12-08 00:21:17 +0100  Sebastian Rasmussen <sebras@hotmail.com>
+
+	* gst-libs/gst/rtsp/gstrtspmessage.c:
+	  rtspmessage: Add several missing g-i annotations
+	  https://bugzilla.gnome.org/show_bug.cgi?id=689873
+	  Conflicts:
+	  gst-libs/gst/rtsp/gstrtspmessage.c
+
+2012-11-26 18:41:07 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst/playback/gststreamsynchronizer.c:
+	  streamsynchronizer: don't send gap events with huge bogus durations when advancing EOS streams
+	  When the input buffers for a stream don't have a duration set,
+	  timestamp_end might still be GST_CLOCK_TIME_NONE. When advancing
+	  EOSed streams via GAP events (with other streams not yet EOS), we
+	  would then use the invalid timestamp_end to calculate the duration
+	  of the gap. This in turn would make baseaudiosink abort, because it
+	  would try to allocate memory for a trizillion samples.
+	  So if buffers don't have a duration set, assume a duration of
+	  one second for stream catch-up purposes, just so we can still
+	  continue to catch up in those cases. And make sure that
+	  timestamp_end is valid before doing calculations with it.
+	  http://bugzilla.gnome.org/show_bug.cgi?id=678530
+
+2012-11-25 18:07:04 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst/playback/gststreamsynchronizer.c:
+	  streamsynchronizer: reduce debug log spam a bit
+	  Log locking/unlocking with TRACE debug level.
+
+2012-11-21 23:17:22 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst-libs/gst/audio/gstaudioringbuffer.c:
+	  audio: remove bogus Since marker from docs
+	  It was causing perl warnings in gtk-doc code.
+
+2012-11-21 21:53:13 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* gst-libs/gst/app/gstappsrc.c:
+	  app: fix g-i annotation for gst_app_src_push_buffer()
+	  It takes ownership of the buffer.
+
+2012-11-21 12:56:13 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* configure.ac:
+	* docs/plugins/inspect/plugin-adder.xml:
+	* docs/plugins/inspect/plugin-alsa.xml:
+	* docs/plugins/inspect/plugin-app.xml:
+	* docs/plugins/inspect/plugin-audioconvert.xml:
+	* docs/plugins/inspect/plugin-audiorate.xml:
+	* docs/plugins/inspect/plugin-audioresample.xml:
+	* docs/plugins/inspect/plugin-audiotestsrc.xml:
+	* docs/plugins/inspect/plugin-cdparanoia.xml:
+	* docs/plugins/inspect/plugin-encoding.xml:
+	* docs/plugins/inspect/plugin-gio.xml:
+	* docs/plugins/inspect/plugin-ivorbisdec.xml:
+	* docs/plugins/inspect/plugin-libvisual.xml:
+	* docs/plugins/inspect/plugin-ogg.xml:
+	* docs/plugins/inspect/plugin-pango.xml:
+	* docs/plugins/inspect/plugin-playback.xml:
+	* docs/plugins/inspect/plugin-subparse.xml:
+	* docs/plugins/inspect/plugin-tcp.xml:
+	* docs/plugins/inspect/plugin-theora.xml:
+	* docs/plugins/inspect/plugin-typefindfunctions.xml:
+	* docs/plugins/inspect/plugin-videoconvert.xml:
+	* docs/plugins/inspect/plugin-videorate.xml:
+	* docs/plugins/inspect/plugin-videoscale.xml:
+	* docs/plugins/inspect/plugin-videotestsrc.xml:
+	* docs/plugins/inspect/plugin-volume.xml:
+	* docs/plugins/inspect/plugin-vorbis.xml:
+	* docs/plugins/inspect/plugin-ximagesink.xml:
+	* docs/plugins/inspect/plugin-xvimagesink.xml:
+	* win32/common/_stdint.h:
+	* win32/common/config.h:
+	  Back to development (bug-fixing)
+
+=== release 1.0.3 ===
+
+2012-11-21 09:56:12 +0000  Tim-Philipp Müller <tim@centricular.net>
+
+	* ChangeLog:
+	* NEWS:
+	* RELEASE:
+	* configure.ac:
+	* docs/plugins/inspect/plugin-adder.xml:
+	* docs/plugins/inspect/plugin-alsa.xml:
+	* docs/plugins/inspect/plugin-app.xml:
+	* docs/plugins/inspect/plugin-audioconvert.xml:
+	* docs/plugins/inspect/plugin-audiorate.xml:
+	* docs/plugins/inspect/plugin-audioresample.xml:
+	* docs/plugins/inspect/plugin-audiotestsrc.xml:
+	* docs/plugins/inspect/plugin-cdparanoia.xml:
+	* docs/plugins/inspect/plugin-encoding.xml:
+	* docs/plugins/inspect/plugin-gio.xml:
+	* docs/plugins/inspect/plugin-ivorbisdec.xml:
+	* docs/plugins/inspect/plugin-libvisual.xml:
+	* docs/plugins/inspect/plugin-ogg.xml:
+	* docs/plugins/inspect/plugin-pango.xml:
+	* docs/plugins/inspect/plugin-playback.xml:
+	* docs/plugins/inspect/plugin-subparse.xml:
+	* docs/plugins/inspect/plugin-tcp.xml:
+	* docs/plugins/inspect/plugin-theora.xml:
+	* docs/plugins/inspect/plugin-typefindfunctions.xml:
+	* docs/plugins/inspect/plugin-videoconvert.xml:
+	* docs/plugins/inspect/plugin-videorate.xml:
+	* docs/plugins/inspect/plugin-videoscale.xml:
+	* docs/plugins/inspect/plugin-videotestsrc.xml:
+	* docs/plugins/inspect/plugin-volume.xml:
+	* docs/plugins/inspect/plugin-vorbis.xml:
+	* docs/plugins/inspect/plugin-ximagesink.xml:
+	* docs/plugins/inspect/plugin-xvimagesink.xml:
+	* gst-plugins-base.doap:
+	* win32/common/_stdint.h:
+	* win32/common/config.h:
+	  Release 1.0.3
 
 2012-11-20 12:21:08 +0100  Sebastian Dröge <sebastian.droege@collabora.co.uk>
 
diff --git a/NEWS b/NEWS
index d37712a..28e3722 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,18 @@
-This is GStreamer Base Plugins 1.0.3
+This is GStreamer Base Plugins 1.0.4
+
+Changes since 1.0.3:
+
+      * playbin: fix occasional not-negotiated errors when switching visualisations
+      * ssaparse: ignore invalid UTF-8 in SSA/ASS subtitles init sections in matroska files
+      * streamsynchronizer: better timestamp and gap handling at EOS, fixing potential OOM in baseaudiosink
+      * bindings: fix annotation for gst_app_src_push_buffer(), fixing crash
+      * bindings: add several missing annotations for GstRtspMessage API
+
+Bugs fixed since 1.0.3:
+
+      * 679976 : playbin: switching visualisations results in not-negotiated flow erros
+      * 689814 : Memory allocated by GstVideoDecoder base class is not freed
+      * 689873 : gstrtspmessage: Several functions are missing introspection annotations...
 
 Changes since 1.0.2:
 
diff --git a/RELEASE b/RELEASE
index 008e542..9b1a908 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,5 +1,5 @@
 
-Release notes for GStreamer Base Plugins 1.0.3
+Release notes for GStreamer Base Plugins 1.0.4
 
 
 The GStreamer team is proud to announce a new bug-fix release
@@ -60,33 +60,17 @@
 
 Features of this release
     
-      * typefind: detect isml ftyp as iso-fragmented video/quicktime
-      * typefinding improvements fixing playback of some wavpack files
-      * textoverlay rendering fixes
-      * gobject-introspection annotation fixes
+      * playbin: fix occasional not-negotiated errors when switching visualisations
+      * ssaparse: ignore invalid UTF-8 in SSA/ASS subtitles init sections in matroska files
+      * streamsynchronizer: better timestamp and gap handling at EOS, fixing potential OOM in baseaudiosink
+      * bindings: fix annotation for gst_app_src_push_buffer(), fixing crash
+      * bindings: add several missing annotations for GstRtspMessage API
 
 Bugs fixed in this release
      
-      * 686276 : rtsp: http tunneling does not work
-      * 687030 : ogg: crash checking header of empty ogg packet
-      * 687055 : exiftag: fix use after free and memory leak
-      * 687057 : vorbistag: fix memory leak
-      * 687421 : GstRTSPConnection: a number of methods not annotated correctly
-      * 687459 : textoverlay:forward allocation queries instead of discarding
-      * 687473 : rtspconnection: remove extra 'return'
-      * 687620 : GstRTSPMessage: fix GI annotations
-      * 687666 : textoverlay: aborts when shading is enabled but not supported for the current video format
-      * 687674 : typefinding: some WavPack files are mis-detected as AAC and fail to play
-      * 687991 : videodecoder: add getter for QoS proportion
-      * 687994 : rtsp: missing g-i annotation for gst_rtsp_message_set_body
-      * 688151 : pbutils missing description for Opus codec
-      * 686841 : pango: fix shadow text color
-
-API changes in this release
-     
- - API additions:
-    
-      * gst_video_decoder_get_qos_proportion()
+      * 679976 : playbin: switching visualisations results in not-negotiated flow erros
+      * 689814 : Memory allocated by GstVideoDecoder base class is not freed
+      * 689873 : gstrtspmessage: Several functions are missing introspection annotations...
 
 ==== Download ====
 
@@ -123,16 +107,9 @@
         
 Contributors to this release
     
-      * Alessandro Decina
-      * Andoni Morales Alastruey
-      * Jihyun Cho
-      * Jonathan Liu
-      * Miguel Angel Cabrera Moya
-      * Ognyan Tonchev
-      * Rasmus Rohde
       * Sebastian Dröge
-      * Sreerenj Balachandran
-      * Thiago Santos
+      * Sebastian Rasmussen
+      * Thijs Vermeir
       * Tim-Philipp Müller
       * Wim Taymans
  
\ No newline at end of file
diff --git a/configure b/configure
index 09e138a..4ca431e 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for GStreamer Base Plug-ins 1.0.3.
+# Generated by GNU Autoconf 2.69 for GStreamer Base Plug-ins 1.0.4.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer>.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='GStreamer Base Plug-ins'
 PACKAGE_TARNAME='gst-plugins-base'
-PACKAGE_VERSION='1.0.3'
-PACKAGE_STRING='GStreamer Base Plug-ins 1.0.3'
+PACKAGE_VERSION='1.0.4'
+PACKAGE_STRING='GStreamer Base Plug-ins 1.0.4'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer'
 PACKAGE_URL=''
 
@@ -1767,7 +1767,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures GStreamer Base Plug-ins 1.0.3 to adapt to many kinds of systems.
+\`configure' configures GStreamer Base Plug-ins 1.0.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1843,7 +1843,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of GStreamer Base Plug-ins 1.0.3:";;
+     short | recursive ) echo "Configuration of GStreamer Base Plug-ins 1.0.4:";;
    esac
   cat <<\_ACEOF
 
@@ -2127,7 +2127,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-GStreamer Base Plug-ins configure 1.0.3
+GStreamer Base Plug-ins configure 1.0.4
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2900,7 +2900,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by GStreamer Base Plug-ins $as_me 1.0.3, which was
+It was created by GStreamer Base Plug-ins $as_me 1.0.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3831,7 +3831,7 @@
 
 # Define the identity of the package.
  PACKAGE='gst-plugins-base'
- VERSION='1.0.3'
+ VERSION='1.0.4'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3954,9 +3954,9 @@
 
 
 
-  PACKAGE_VERSION_MAJOR=$(echo 1.0.3 | cut -d'.' -f1)
-  PACKAGE_VERSION_MINOR=$(echo 1.0.3 | cut -d'.' -f2)
-  PACKAGE_VERSION_MICRO=$(echo 1.0.3 | cut -d'.' -f3)
+  PACKAGE_VERSION_MAJOR=$(echo 1.0.4 | cut -d'.' -f1)
+  PACKAGE_VERSION_MINOR=$(echo 1.0.4 | cut -d'.' -f2)
+  PACKAGE_VERSION_MICRO=$(echo 1.0.4 | cut -d'.' -f3)
 
 
 
@@ -3967,7 +3967,7 @@
   { $as_echo "$as_me:${as_lineno-$LINENO}: checking nano version" >&5
 $as_echo_n "checking nano version... " >&6; }
 
-  NANO=$(echo 1.0.3 | cut -d'.' -f4)
+  NANO=$(echo 1.0.4 | cut -d'.' -f4)
 
   if test x"$NANO" = x || test "x$NANO" = "x0" ; then
     { $as_echo "$as_me:${as_lineno-$LINENO}: result: 0 (release)" >&5
@@ -5863,7 +5863,8 @@
     ;;
   *)
     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
-    if test -n "$lt_cv_sys_max_cmd_len"; then
+    if test -n "$lt_cv_sys_max_cmd_len" && \
+	test undefined != "$lt_cv_sys_max_cmd_len"; then
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
     else
@@ -7394,7 +7395,14 @@
 	    LD="${LD-ld} -m elf_i386_fbsd"
 	    ;;
 	  x86_64-*linux*)
-	    LD="${LD-ld} -m elf_i386"
+	    case `/usr/bin/file conftest.o` in
+	      *x86-64*)
+		LD="${LD-ld} -m elf32_x86_64"
+		;;
+	      *)
+		LD="${LD-ld} -m elf_i386"
+		;;
+	    esac
 	    ;;
 	  ppc64-*linux*|powerpc64-*linux*)
 	    LD="${LD-ld} -m elf32ppclinux"
@@ -8543,10 +8551,10 @@
 done
 
 
-  GST_CURRENT=3
+  GST_CURRENT=4
   GST_REVISION=0
-  GST_AGE=3
-  GST_LIBVERSION=3:0:3
+  GST_AGE=4
+  GST_LIBVERSION=4:0:4
 
 
 
@@ -32336,7 +32344,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by GStreamer Base Plug-ins $as_me 1.0.3, which was
+This file was extended by GStreamer Base Plug-ins $as_me 1.0.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -32402,7 +32410,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-GStreamer Base Plug-ins config.status 1.0.3
+GStreamer Base Plug-ins config.status 1.0.4
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff --git a/configure.ac b/configure.ac
index 0165d31..d5c8df7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@
 dnl initialize autoconf
 dnl releases only do -Wall, git and prerelease does -Werror too
 dnl use a three digit version number for releases, and four for git/prerelease
-AC_INIT(GStreamer Base Plug-ins, 1.0.3,
+AC_INIT(GStreamer Base Plug-ins, 1.0.4,
     http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
     gst-plugins-base)
 
@@ -50,7 +50,7 @@
 dnl - interfaces added -> increment AGE
 dnl - interfaces removed -> AGE = 0
 dnl sets GST_LT_LDFLAGS
-AS_LIBTOOL(GST, 3, 0, 3)
+AS_LIBTOOL(GST, 4, 0, 4)
 
 dnl *** required versions of GStreamer stuff ***
 GST_REQ=1.0.0
diff --git a/docs/libs/html/compiling.html b/docs/libs/html/compiling.html
index 5adef07..8272d5b 100644
--- a/docs/libs/html/compiling.html
+++ b/docs/libs/html/compiling.html
@@ -31,7 +31,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp7867760"></a><h2>Compiling against the base plugins libraries</h2>
+<a name="idp7279760"></a><h2>Compiling against the base plugins libraries</h2>
 <p>
 To compile against these libraries, you need to tell the compiler where to 
 find the header files and libraries. This is done with the
diff --git a/docs/libs/html/gst-plugins-base-libs-appsrc.html b/docs/libs/html/gst-plugins-base-libs-appsrc.html
index 9966004..7277d63 100644
--- a/docs/libs/html/gst-plugins-base-libs-appsrc.html
+++ b/docs/libs/html/gst-plugins-base-libs-appsrc.html
@@ -588,7 +588,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
-<td>a <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstBuffer.html#GstBuffer"><span class="type">GstBuffer</span></a> to push</td>
+<td>a <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstBuffer.html#GstBuffer"><span class="type">GstBuffer</span></a> to push. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
diff --git a/docs/libs/html/gst-plugins-base-libs-encoding-profile.html b/docs/libs/html/gst-plugins-base-libs-encoding-profile.html
index d911912..89bbc8a 100644
--- a/docs/libs/html/gst-plugins-base-libs-encoding-profile.html
+++ b/docs/libs/html/gst-plugins-base-libs-encoding-profile.html
@@ -182,7 +182,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp26810864"></a><p>
+<a name="idp26255264"></a><p>
 Functions to create and handle encoding profiles.
 </p>
 <p>
@@ -212,7 +212,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp25516912"></a><h3>Example: Creating a profile</h3>
+<a name="idp26262832"></a><h3>Example: Creating a profile</h3>
 <p>
 </p>
 <div class="informalexample">
@@ -283,7 +283,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp25519904"></a><h3>Example: Listing categories, targets and profiles</h3>
+<a name="idp26265824"></a><h3>Example: Listing categories, targets and profiles</h3>
 <p>
 </p>
 <div class="informalexample">
diff --git a/docs/libs/html/gst-plugins-base-libs-gstaudiocdsrc.html b/docs/libs/html/gst-plugins-base-libs-gstaudiocdsrc.html
index b43da66..4fca995 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstaudiocdsrc.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstaudiocdsrc.html
@@ -92,7 +92,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp5753360"></a><h3>Using GstAudioCdSrc-based elements in applications</h3>
+<a name="idp5923616"></a><h3>Using GstAudioCdSrc-based elements in applications</h3>
 <p>
 GstAudioCdSrc registers two <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstFormat.html#GstFormat"><span class="type">GstFormat</span></a>s of its own, namely
 the "track" format and the "sector" format. Applications will usually
@@ -118,7 +118,7 @@
 setting a new cdda://n+1 URI on playbin (as setting a new URI on playbin
 involves closing and re-opening the CD device, which is much much slower).
 </p>
-<div class="refsect2"><a name="idp5759808"></a></div>
+<div class="refsect2"><a name="idp9080176"></a></div>
 <p>
 CDDA sources will automatically emit a number of tags, details about which
 can be found in the libgsttag documentation. Those tags are:
@@ -131,7 +131,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp8167536"></a><h3>Tracks and Table of Contents (TOC)</h3>
+<a name="idp9085184"></a><h3>Tracks and Table of Contents (TOC)</h3>
 <p>
 Applications will be informed of the available tracks via a TOC message
 on the pipeline's <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstBus.html"><span class="type">GstBus</span></a>. The <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstToc.html#GstToc"><span class="type">GstToc</span></a> will contain a <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstToc.html#GstTocEntry"><span class="type">GstTocEntry</span></a> for
diff --git a/docs/libs/html/gst-plugins-base-libs-gstaudioringbuffer.html b/docs/libs/html/gst-plugins-base-libs-gstaudioringbuffer.html
index 991a632..ae7c0ff 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstaudioringbuffer.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstaudioringbuffer.html
@@ -123,7 +123,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp13484416"></a><p>
+<a name="idp14173696"></a><p>
 This object is the base class for audio ringbuffers used by the base
 audio source and sink classes.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstcolorbalance.html b/docs/libs/html/gst-plugins-base-libs-gstcolorbalance.html
index 250a651..5421f2d 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstcolorbalance.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstcolorbalance.html
@@ -77,7 +77,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp25968464"></a><p>
+<a name="idp27381776"></a><p>
 This interface is implemented by elements which can perform some color
 balance operation on video frames they process. For example, modifying
 the brightness, contrast, hue or saturation.
diff --git a/docs/libs/html/gst-plugins-base-libs-gstcolorbalancechannel.html b/docs/libs/html/gst-plugins-base-libs-gstcolorbalancechannel.html
index 63f2152..51b71fc 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstcolorbalancechannel.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstcolorbalancechannel.html
@@ -67,7 +67,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp26162800"></a><p>The <a class="link" href="gst-plugins-base-libs-gstcolorbalancechannel.html#GstColorBalanceChannel"><span class="type">GstColorBalanceChannel</span></a> object represents a parameter
+<a name="idp25272032"></a><p>The <a class="link" href="gst-plugins-base-libs-gstcolorbalancechannel.html#GstColorBalanceChannel"><span class="type">GstColorBalanceChannel</span></a> object represents a parameter
 for modifying the color balance implemented by an element providing the
 <a class="link" href="gst-plugins-base-libs-gstcolorbalance.html#GstColorBalance"><span class="type">GstColorBalance</span></a> interface. For example, Hue or Saturation.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstpbutils.html b/docs/libs/html/gst-plugins-base-libs-gstpbutils.html
index 2401b12..8b84968 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstpbutils.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstpbutils.html
@@ -48,7 +48,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp6215936"></a><h3>Linking to this library</h3>
+<a name="idp10629744"></a><h3>Linking to this library</h3>
 <p>
 libgstpbutils is a general utility library for plugins and applications.
 It currently provides the
diff --git a/docs/libs/html/gst-plugins-base-libs-gstpbutilscodecutils.html b/docs/libs/html/gst-plugins-base-libs-gstpbutilscodecutils.html
index 93739ce..81c9c86 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstpbutilscodecutils.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstpbutilscodecutils.html
@@ -78,7 +78,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp21971776"></a><p>
+<a name="idp24864800"></a><p>
 Provides codec-specific ulility functions such as functions to provide the
 codec profile and level in human-readable string form from header data.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstpbutilsdescriptions.html b/docs/libs/html/gst-plugins-base-libs-gstpbutilsdescriptions.html
index 31b1b46..d7e9c64 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstpbutilsdescriptions.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstpbutilsdescriptions.html
@@ -62,7 +62,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp24669248"></a><p>
+<a name="idp21929088"></a><p>
 The above functions provide human-readable strings for media formats
 and decoder/demuxer/depayloader/encoder/muxer/payloader elements for use
 in error dialogs or other messages shown to users.
diff --git a/docs/libs/html/gst-plugins-base-libs-gstpbutilsinstallplugins.html b/docs/libs/html/gst-plugins-base-libs-gstpbutilsinstallplugins.html
index 620ba85..e0a54f3 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstpbutilsinstallplugins.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstpbutilsinstallplugins.html
@@ -67,7 +67,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp22445024"></a><h3>Overview</h3>
+<a name="idp25382064"></a><h3>Overview</h3>
 <p>
 Using this API, applications can request the installation of missing
 GStreamer plugins. These may be missing decoders/demuxers or encoders/muxers
diff --git a/docs/libs/html/gst-plugins-base-libs-gstpbutilsmissingplugins.html b/docs/libs/html/gst-plugins-base-libs-gstpbutilsmissingplugins.html
index f29cb53..e639fa4 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstpbutilsmissingplugins.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstpbutilsmissingplugins.html
@@ -74,7 +74,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp22624688"></a><p>
+<a name="idp22096816"></a><p>
 Functions to create, recognise and parse missing-plugins messages for
 applications and elements.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstpluginsbaseversion.html b/docs/libs/html/gst-plugins-base-libs-gstpluginsbaseversion.html
index 0857613..456b826 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstpluginsbaseversion.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstpluginsbaseversion.html
@@ -88,7 +88,7 @@
 <hr>
 <div class="refsect2">
 <a name="GST-PLUGINS-BASE-VERSION-MICRO:CAPS"></a><h3>GST_PLUGINS_BASE_VERSION_MICRO</h3>
-<pre class="programlisting">#define GST_PLUGINS_BASE_VERSION_MICRO (3)
+<pre class="programlisting">#define GST_PLUGINS_BASE_VERSION_MICRO (4)
 </pre>
 <p>
 The micro version of GStreamer's gst-plugins-base libraries at compile time.
diff --git a/docs/libs/html/gst-plugins-base-libs-gstrtcpbuffer.html b/docs/libs/html/gst-plugins-base-libs-gstrtcpbuffer.html
index 9b2ffaf..dbf4ef6 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstrtcpbuffer.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstrtcpbuffer.html
@@ -176,7 +176,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp17012976"></a><p>
+<a name="idp17448256"></a><p>
 The GstRTPCBuffer helper functions makes it easy to parse and create regular 
 <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstBuffer.html#GstBuffer"><span class="type">GstBuffer</span></a> objects that contain compound RTCP packets. These buffers are typically
 of 'application/x-rtcp' <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstCaps.html#GstCaps"><span class="type">GstCaps</span></a>.
diff --git a/docs/libs/html/gst-plugins-base-libs-gstrtpbaseaudiopayload.html b/docs/libs/html/gst-plugins-base-libs-gstrtpbaseaudiopayload.html
index 5cfca37..22908a2 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstrtpbaseaudiopayload.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstrtpbaseaudiopayload.html
@@ -110,7 +110,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp13864976"></a><h3>Usage</h3>
+<a name="idp14680368"></a><h3>Usage</h3>
 <p>
 To use this base class, your child element needs to call either
 <a class="link" href="gst-plugins-base-libs-gstrtpbaseaudiopayload.html#gst-rtp-base-audio-payload-set-frame-based" title="gst_rtp_base_audio_payload_set_frame_based ()"><code class="function">gst_rtp_base_audio_payload_set_frame_based()</code></a> or
diff --git a/docs/libs/html/gst-plugins-base-libs-gstrtpbuffer.html b/docs/libs/html/gst-plugins-base-libs-gstrtpbuffer.html
index a4ad7e7..d12b6ed 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstrtpbuffer.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstrtpbuffer.html
@@ -148,7 +148,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp16205008"></a><p>
+<a name="idp16780640"></a><p>
 The GstRTPBuffer helper functions makes it easy to parse and create regular 
 <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstBuffer.html#GstBuffer"><span class="type">GstBuffer</span></a> objects that contain RTP payloads. These buffers are typically of
 'application/x-rtp' <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstCaps.html#GstCaps"><span class="type">GstCaps</span></a>.
diff --git a/docs/libs/html/gst-plugins-base-libs-gstrtppayloads.html b/docs/libs/html/gst-plugins-base-libs-gstrtppayloads.html
index 1368380..180a681 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstrtppayloads.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstrtppayloads.html
@@ -53,7 +53,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp14997552"></a><p>
+<a name="idp17135296"></a><p>
 The GstRTPPayloads helper functions makes it easy to deal with static and dynamic
 payloads. Its main purpose is to retrieve properties such as the default clock-rate 
 and get session bandwidth information.
diff --git a/docs/libs/html/gst-plugins-base-libs-gstrtspextension.html b/docs/libs/html/gst-plugins-base-libs-gstrtspextension.html
index f10191d..5f281da 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstrtspextension.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstrtspextension.html
@@ -49,7 +49,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp5917696"></a><p>
+<a name="idp7742704"></a><p>
  This interface is implemented e.g. by the Windows Media Streaming RTSP
  exentension (rtspwms) and the RealMedia RTSP extension (rtspreal).
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstrtspmessage.html b/docs/libs/html/gst-plugins-base-libs-gstrtspmessage.html
index 7b23b05..18ac035 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstrtspmessage.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstrtspmessage.html
@@ -339,7 +339,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
-<td>the uri of the request</td>
+<td>the uri of the request. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -372,7 +373,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
-<td>the uri of the request</td>
+<td>the uri of the request. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -458,12 +460,12 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>reason</code></em> :</span></p></td>
-<td>the status reason or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>
+<td>the status reason or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
 </td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>request</code></em> :</span></p></td>
-<td>the request that triggered the response or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>
+<td>the request that triggered the response or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
 </td>
 </tr>
 <tr>
@@ -504,12 +506,12 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>reason</code></em> :</span></p></td>
-<td>the status reason or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>
+<td>the status reason or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
 </td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>request</code></em> :</span></p></td>
-<td>the request that triggered the response or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><span class="type">NULL</span></a>
+<td>the request that triggered the response or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
 </td>
 </tr>
 <tr>
@@ -672,7 +674,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
-<td>the value of the header</td>
+<td>the value of the header. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -810,7 +813,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
-<td>a string</td>
+<td>a string. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -839,7 +843,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
-<td>the data</td>
+<td>the data. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=size][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
@@ -874,7 +879,8 @@
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
-<td>the data</td>
+<td>the data. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=size][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
+</td>
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstsdpmessage.html b/docs/libs/html/gst-plugins-base-libs-gstsdpmessage.html
index 8ca8c4f..16db69f 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstsdpmessage.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstsdpmessage.html
@@ -209,7 +209,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp22889312"></a><p>
+<a name="idp23447968"></a><p>
 The GstSDPMessage helper functions makes it easy to parse and create SDP
 messages.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gststreamvolume.html b/docs/libs/html/gst-plugins-base-libs-gststreamvolume.html
index e6461be..2319700 100644
--- a/docs/libs/html/gst-plugins-base-libs-gststreamvolume.html
+++ b/docs/libs/html/gst-plugins-base-libs-gststreamvolume.html
@@ -86,7 +86,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp13674624"></a><p>
+<a name="idp11600688"></a><p>
 This interface is implemented by elements that provide a stream volume. Examples for
 such elements are <span class="type">volume</span> and <span class="type">playbin</span>.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttag.html b/docs/libs/html/gst-plugins-base-libs-gsttag.html
index a428119..9a6df40 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttag.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttag.html
@@ -90,7 +90,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp18187888"></a><p>
+<a name="idp19371888"></a><p>
 Contains additional standardized GStreamer tag definitions for plugins
 and applications, and functions to register them with the GStreamer
 tag system.
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttagdemux.html b/docs/libs/html/gst-plugins-base-libs-gsttagdemux.html
index 3cca65f..63bf04f 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttagdemux.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttagdemux.html
@@ -51,7 +51,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp15286992"></a><h3>Deriving from GstTagDemux</h3>
+<a name="idp6033920"></a><h3>Deriving from GstTagDemux</h3>
 <p>
 Provides a base class for demuxing tags at the beginning or end of a
 stream and handles things like typefinding, querying, seeking, and
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttagid3.html b/docs/libs/html/gst-plugins-base-libs-gsttagid3.html
index bdd2a61..ca306ee 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttagid3.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttagid3.html
@@ -61,7 +61,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp20373728"></a><p>
+<a name="idp23002432"></a><p>
 Contains various utility functions for plugins to parse or create
 ID3 tags and map ID3v2 identifiers to and from GStreamer identifiers.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttaglanguagecodes.html b/docs/libs/html/gst-plugins-base-libs-gsttaglanguagecodes.html
index 7fbe30c..b9aa79f 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttaglanguagecodes.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttaglanguagecodes.html
@@ -56,7 +56,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp24788720"></a><p>
+<a name="idp22642704"></a><p>
 Provides helper functions to convert between the various ISO-639 language
 codes, and to map language codes to language names.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttagmux.html b/docs/libs/html/gst-plugins-base-libs-gsttagmux.html
index 0275ed0..f26517c 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttagmux.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttagmux.html
@@ -50,7 +50,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp7428352"></a><h3>Deriving from GstTagMux</h3>
+<a name="idp8139664"></a><h3>Deriving from GstTagMux</h3>
 <p>
 Provides a base class for adding tags at the beginning or end of a
 stream.
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttagvorbis.html b/docs/libs/html/gst-plugins-base-libs-gsttagvorbis.html
index 342ae9c..3523a52 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttagvorbis.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttagvorbis.html
@@ -66,7 +66,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp12393184"></a><p>
+<a name="idp17561392"></a><p>
 Contains various utility functions for plugins to parse or create
 vorbiscomments and map them to and from <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstTagList.html#GstTagList"><span class="type">GstTagList</span></a>s.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gsttagxmpwriter.html b/docs/libs/html/gst-plugins-base-libs-gsttagxmpwriter.html
index ae18fe2..d5dd74b 100644
--- a/docs/libs/html/gst-plugins-base-libs-gsttagxmpwriter.html
+++ b/docs/libs/html/gst-plugins-base-libs-gsttagxmpwriter.html
@@ -57,7 +57,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp20970880"></a><p>
+<a name="idp20811168"></a><p>
 This interface is implemented by elements that are able to do XMP serialization. Examples for
 such elements are <span class="type">jifmux</span> and <span class="type">qtmux</span>.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstvideo.html b/docs/libs/html/gst-plugins-base-libs-gstvideo.html
index 01f7ee1..16036fa 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstvideo.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstvideo.html
@@ -323,7 +323,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp29601968"></a><p>
+<a name="idp29588128"></a><p>
 This library contains some helper functions and includes the
 videosink and videofilter base classes.
 </p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstvideofilter.html b/docs/libs/html/gst-plugins-base-libs-gstvideofilter.html
index adf4db2..ef96d8c 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstvideofilter.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstvideofilter.html
@@ -62,7 +62,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp22781376"></a><p>
+<a name="idp9341792"></a><p>
 Provides useful functions and a base class for video filters.
 </p>
 <p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstvideooverlay.html b/docs/libs/html/gst-plugins-base-libs-gstvideooverlay.html
index 19bab84..c40c54c 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstvideooverlay.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstvideooverlay.html
@@ -75,7 +75,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp28046720"></a><p>
+<a name="idp29100736"></a><p>
 The <a class="link" href="gst-plugins-base-libs-gstvideooverlay.html#GstVideoOverlay"><span class="type">GstVideoOverlay</span></a> interface is used for 2 main purposes :
 </p>
 <div class="itemizedlist"><ul class="itemizedlist" type="disc">
@@ -189,7 +189,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp28056832"></a><h3>Two basic usage scenarios</h3>
+<a name="idp29110848"></a><h3>Two basic usage scenarios</h3>
 <p>
 There are two basic usage scenarios: in the simplest case, the application
 knows exactly what particular element is used for video output, which is
@@ -234,7 +234,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp22235088"></a><h3>GstVideoOverlay and Gtk+</h3>
+<a name="idp28743200"></a><h3>GstVideoOverlay and Gtk+</h3>
 <p>
 </p>
 <div class="informalexample">
@@ -337,7 +337,7 @@
 94
 95
 96</pre></td>
-        <td class="listing_code"><pre class="programlisting"><span class="gtkdoc ppc">#include &lt;gst/video/xoverlay.h&gt;</span>
+        <td class="listing_code"><pre class="programlisting"><span class="gtkdoc ppc">#include &lt;gst/video/videooverlay.h&gt;</span>
 <span class="gtkdoc ppc">#include &lt;gtk/gtk.h&gt;</span>
 <span class="gtkdoc ppc">#ifdef GDK_WINDOWING_X11</span>
 <span class="gtkdoc ppc">#include &lt;gdk/gdkx.h&gt;</span>  <span class="gtkdoc slc">// for GDK_WINDOW_XID</span>
@@ -356,11 +356,11 @@
    <span class="keyword">return</span> GST_BUS_PASS<span class="gtkdoc opt">;</span>
 
  <span class="keyword">if</span> <span class="gtkdoc opt">(</span>video_window_handle <span class="gtkdoc opt">!=</span> <span class="number">0</span><span class="gtkdoc opt">) {</span>
-   GstXOverlay <span class="gtkdoc opt">*</span>xoverlay<span class="gtkdoc opt">;</span>
+   GstVideoOverlay <span class="gtkdoc opt">*</span>overlay<span class="gtkdoc opt">;</span>
 
    <span class="gtkdoc slc">// GST_MESSAGE_SRC (message) will be the video sink element</span>
-   xoverlay <span class="gtkdoc opt">=</span> <span class="function">GST_X_OVERLAY</span> <span class="gtkdoc opt">(</span><span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstMessage.html#GST-MESSAGE-SRC:CAPS">GST_MESSAGE_SRC</a></span> <span class="gtkdoc opt">(</span>message<span class="gtkdoc opt">));</span>
-   <span class="function">gst_x_overlay_set_window_handle</span> <span class="gtkdoc opt">(</span>xoverlay<span class="gtkdoc opt">,</span> video_window_handle<span class="gtkdoc opt">);</span>
+   overlay <span class="gtkdoc opt">=</span> <span class="function">GST_VIDEO_OVERLAY</span> <span class="gtkdoc opt">(</span><span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstMessage.html#GST-MESSAGE-SRC:CAPS">GST_MESSAGE_SRC</a></span> <span class="gtkdoc opt">(</span>message<span class="gtkdoc opt">));</span>
+   <span class="function"><a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstvideooverlay.html#gst-video-overlay-set-window-handle">gst_video_overlay_set_window_handle</a></span> <span class="gtkdoc opt">(</span>overlay<span class="gtkdoc opt">,</span> video_window_handle<span class="gtkdoc opt">);</span>
  <span class="gtkdoc opt">}</span> <span class="keyword">else</span> <span class="gtkdoc opt">{</span>
    <span class="function"><a href="http://library.gnome.org/devel/glib/unstable/glib-Message-Logging.html#g-warning">g_warning</a></span> <span class="gtkdoc opt">(</span><span class="string">&quot;Should have obtained video_window_handle by now!&quot;</span><span class="gtkdoc opt">);</span>
  <span class="gtkdoc opt">}</span>
@@ -445,7 +445,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp22240272"></a><h3>GstVideoOverlay and Qt</h3>
+<a name="idp28748400"></a><h3>GstVideoOverlay and Qt</h3>
 <p>
 </p>
 <div class="informalexample">
@@ -657,7 +657,7 @@
                                                          <em class="parameter"><code><span class="type">guintptr</span> handle</code></em>);</pre>
 <p>
 This will call the video overlay's set_window_handle method. You
-should use this method to tell to a XOverlay to display video output to a
+should use this method to tell to an overlay to display video output to a
 specific window (e.g. an XWindow on X11). Passing 0 as the  <em class="parameter"><code>handle</code></em> will
 tell the overlay to stop using that window and create an internal one.
 </p>
@@ -723,7 +723,7 @@
 events are forwarded upstream as navigation events. In some window system,
 events are not propagated in the window hierarchy if a client is listening
 for them. This method allows you to disable events handling completely
-from the XOverlay.
+from the <a class="link" href="gst-plugins-base-libs-gstvideooverlay.html#GstVideoOverlay"><span class="type">GstVideoOverlay</span></a>.
 </p>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
diff --git a/docs/libs/html/gst-plugins-base-libs-gstvideooverlaycomposition.html b/docs/libs/html/gst-plugins-base-libs-gstvideooverlaycomposition.html
index fe0fbdc..2590dcf 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstvideooverlaycomposition.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstvideooverlaycomposition.html
@@ -119,7 +119,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp26619248"></a><p>
+<a name="idp25314688"></a><p>
 Functions to create and handle overlay compositions on video buffers.
 </p>
 <p>
diff --git a/docs/libs/html/gst-plugins-base-libs-gstvideosink.html b/docs/libs/html/gst-plugins-base-libs-gstvideosink.html
index be833f5..d00a72c 100644
--- a/docs/libs/html/gst-plugins-base-libs-gstvideosink.html
+++ b/docs/libs/html/gst-plugins-base-libs-gstvideosink.html
@@ -78,7 +78,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp26341792"></a><p>
+<a name="idp22299888"></a><p>
 Provides useful functions and a base class for video sinks. 
 </p>
 <p>
diff --git a/docs/libs/html/gst-plugins-base-libs.devhelp2 b/docs/libs/html/gst-plugins-base-libs.devhelp2
index 331b941..d4d600a 100644
--- a/docs/libs/html/gst-plugins-base-libs.devhelp2
+++ b/docs/libs/html/gst-plugins-base-libs.devhelp2
@@ -162,9 +162,9 @@
     <keyword type="macro" name="GST_CLOCK_TIME_TO_FRAMES()" link="gst-plugins-base-libs-gstaudio.html#GST-CLOCK-TIME-TO-FRAMES:CAPS"/>
     <keyword type="macro" name="GST_AUDIO_DEF_RATE" link="gst-plugins-base-libs-gstaudio.html#GST-AUDIO-DEF-RATE:CAPS"/>
     <keyword type="function" name="gst_audio_buffer_clip ()" link="gst-plugins-base-libs-gstaudio.html#gst-audio-buffer-clip"/>
-    <keyword type="" name="Using GstAudioCdSrc-based elements in applications" link="gst-plugins-base-libs-gstaudiocdsrc.html#idp5753360"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstaudiocdsrc.html#idp5759808"/>
-    <keyword type="" name="Tracks and Table of Contents (TOC)" link="gst-plugins-base-libs-gstaudiocdsrc.html#idp8167536"/>
+    <keyword type="" name="Using GstAudioCdSrc-based elements in applications" link="gst-plugins-base-libs-gstaudiocdsrc.html#idp5923616"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstaudiocdsrc.html#idp9080176"/>
+    <keyword type="" name="Tracks and Table of Contents (TOC)" link="gst-plugins-base-libs-gstaudiocdsrc.html#idp9085184"/>
     <keyword type="struct" name="struct GstAudioCdSrc" link="gst-plugins-base-libs-gstaudiocdsrc.html#GstAudioCdSrc-struct"/>
     <keyword type="struct" name="struct GstAudioCdSrcClass" link="gst-plugins-base-libs-gstaudiocdsrc.html#GstAudioCdSrcClass"/>
     <keyword type="struct" name="struct GstAudioCdSrcTrack" link="gst-plugins-base-libs-gstaudiocdsrc.html#GstAudioCdSrcTrack"/>
@@ -302,7 +302,7 @@
     <keyword type="property" name="The &quot;provide-clock&quot; property" link="gst-plugins-base-libs-gstaudiobasesrc.html#GstAudioBaseSrc--provide-clock"/>
     <keyword type="property" name="The &quot;slave-method&quot; property" link="gst-plugins-base-libs-gstaudiobasesrc.html#GstAudioBaseSrc--slave-method"/>
     <keyword type="enum" name="enum GstAudioChannelPosition" link="gst-plugins-base-libs-gstmultichannel.html#GstAudioChannelPosition"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstaudioringbuffer.html#idp13484416"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstaudioringbuffer.html#idp14173696"/>
     <keyword type="struct" name="struct GstAudioRingBuffer" link="gst-plugins-base-libs-gstaudioringbuffer.html#GstAudioRingBuffer-struct"/>
     <keyword type="struct" name="struct GstAudioRingBufferClass" link="gst-plugins-base-libs-gstaudioringbuffer.html#GstAudioRingBufferClass"/>
     <keyword type="struct" name="struct GstAudioRingBufferSpec" link="gst-plugins-base-libs-gstaudioringbuffer.html#GstAudioRingBufferSpec"/>
@@ -340,7 +340,7 @@
     <keyword type="function" name="gst_audio_ring_buffer_set_flushing ()" link="gst-plugins-base-libs-gstaudioringbuffer.html#gst-audio-ring-buffer-set-flushing"/>
     <keyword type="function" name="gst_audio_iec61937_frame_size ()" link="gst-plugins-base-libs-gstaudioiec61937.html#gst-audio-iec61937-frame-size"/>
     <keyword type="function" name="gst_audio_iec61937_payload ()" link="gst-plugins-base-libs-gstaudioiec61937.html#gst-audio-iec61937-payload"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gststreamvolume.html#idp13674624"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gststreamvolume.html#idp11600688"/>
     <keyword type="struct" name="GstStreamVolume" link="gst-plugins-base-libs-gststreamvolume.html#GstStreamVolume-struct"/>
     <keyword type="enum" name="enum GstStreamVolumeFormat" link="gst-plugins-base-libs-gststreamvolume.html#GstStreamVolumeFormat"/>
     <keyword type="function" name="gst_stream_volume_get_volume ()" link="gst-plugins-base-libs-gststreamvolume.html#gst-stream-volume-get-volume"/>
@@ -395,7 +395,7 @@
     <keyword type="function" name="gst_riff_parse_strf_vids ()" link="gst-plugins-base-libs-gstriff.html#gst-riff-parse-strf-vids"/>
     <keyword type="function" name="gst_riff_parse_strh ()" link="gst-plugins-base-libs-gstriff.html#gst-riff-parse-strh"/>
     <keyword type="function" name="gst_riff_read_chunk ()" link="gst-plugins-base-libs-gstriff.html#gst-riff-read-chunk"/>
-    <keyword type="" name="Usage" link="gst-plugins-base-libs-gstrtpbaseaudiopayload.html#idp13864976"/>
+    <keyword type="" name="Usage" link="gst-plugins-base-libs-gstrtpbaseaudiopayload.html#idp14680368"/>
     <keyword type="struct" name="struct GstRTPBaseAudioPayload" link="gst-plugins-base-libs-gstrtpbaseaudiopayload.html#GstRTPBaseAudioPayload-struct"/>
     <keyword type="struct" name="struct GstRTPBaseAudioPayloadClass" link="gst-plugins-base-libs-gstrtpbaseaudiopayload.html#GstRTPBaseAudioPayloadClass"/>
     <keyword type="function" name="gst_rtp_base_audio_payload_set_frame_based ()" link="gst-plugins-base-libs-gstrtpbaseaudiopayload.html#gst-rtp-base-audio-payload-set-frame-based"/>
@@ -435,7 +435,7 @@
     <keyword type="property" name="The &quot;ssrc&quot; property" link="gst-plugins-base-libs-gstrtpbasepayload.html#GstRTPBasePayload--ssrc"/>
     <keyword type="property" name="The &quot;timestamp&quot; property" link="gst-plugins-base-libs-gstrtpbasepayload.html#GstRTPBasePayload--timestamp"/>
     <keyword type="property" name="The &quot;timestamp-offset&quot; property" link="gst-plugins-base-libs-gstrtpbasepayload.html#GstRTPBasePayload--timestamp-offset"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstrtpbuffer.html#idp16205008"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstrtpbuffer.html#idp16780640"/>
     <keyword type="macro" name="GST_RTP_VERSION" link="gst-plugins-base-libs-gstrtpbuffer.html#GST-RTP-VERSION:CAPS"/>
     <keyword type="function" name="gst_rtp_buffer_allocate_data ()" link="gst-plugins-base-libs-gstrtpbuffer.html#gst-rtp-buffer-allocate-data"/>
     <keyword type="function" name="gst_rtp_buffer_new_take_data ()" link="gst-plugins-base-libs-gstrtpbuffer.html#gst-rtp-buffer-new-take-data"/>
@@ -481,7 +481,7 @@
     <keyword type="function" name="gst_rtp_buffer_get_extension_twobytes_header ()" link="gst-plugins-base-libs-gstrtpbuffer.html#gst-rtp-buffer-get-extension-twobytes-header"/>
     <keyword type="function" name="gst_rtp_buffer_add_extension_onebyte_header ()" link="gst-plugins-base-libs-gstrtpbuffer.html#gst-rtp-buffer-add-extension-onebyte-header"/>
     <keyword type="function" name="gst_rtp_buffer_add_extension_twobytes_header ()" link="gst-plugins-base-libs-gstrtpbuffer.html#gst-rtp-buffer-add-extension-twobytes-header"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstrtcpbuffer.html#idp17012976"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstrtcpbuffer.html#idp17448256"/>
     <keyword type="macro" name="GST_RTCP_VERSION" link="gst-plugins-base-libs-gstrtcpbuffer.html#GST-RTCP-VERSION:CAPS"/>
     <keyword type="macro" name="GST_RTCP_MAX_SDES" link="gst-plugins-base-libs-gstrtcpbuffer.html#GST-RTCP-MAX-SDES:CAPS"/>
     <keyword type="macro" name="GST_RTCP_MAX_BYE_SSRC_COUNT" link="gst-plugins-base-libs-gstrtcpbuffer.html#GST-RTCP-MAX-BYE-SSRC-COUNT:CAPS"/>
@@ -547,7 +547,7 @@
     <keyword type="function" name="gst_rtcp_unix_to_ntp ()" link="gst-plugins-base-libs-gstrtcpbuffer.html#gst-rtcp-unix-to-ntp"/>
     <keyword type="function" name="gst_rtcp_sdes_name_to_type ()" link="gst-plugins-base-libs-gstrtcpbuffer.html#gst-rtcp-sdes-name-to-type"/>
     <keyword type="function" name="gst_rtcp_sdes_type_to_name ()" link="gst-plugins-base-libs-gstrtcpbuffer.html#gst-rtcp-sdes-type-to-name"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstrtppayloads.html#idp14997552"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstrtppayloads.html#idp17135296"/>
     <keyword type="enum" name="enum GstRTPPayload" link="gst-plugins-base-libs-gstrtppayloads.html#GstRTPPayload"/>
     <keyword type="macro" name="GST_RTP_PAYLOAD_IS_DYNAMIC()" link="gst-plugins-base-libs-gstrtppayloads.html#GST-RTP-PAYLOAD-IS-DYNAMIC:CAPS"/>
     <keyword type="struct" name="struct GstRTPPayloadInfo" link="gst-plugins-base-libs-gstrtppayloads.html#GstRTPPayloadInfo"/>
@@ -608,7 +608,7 @@
     <keyword type="function" name="gst_rtsp_options_as_text ()" link="gst-plugins-base-libs-gstrtspdefs.html#gst-rtsp-options-as-text"/>
     <keyword type="function" name="gst_rtsp_find_header_field ()" link="gst-plugins-base-libs-gstrtspdefs.html#gst-rtsp-find-header-field"/>
     <keyword type="function" name="gst_rtsp_find_method ()" link="gst-plugins-base-libs-gstrtspdefs.html#gst-rtsp-find-method"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstrtspextension.html#idp5917696"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstrtspextension.html#idp7742704"/>
     <keyword type="struct" name="GstRTSPExtension" link="gst-plugins-base-libs-gstrtspextension.html#GstRTSPExtension"/>
     <keyword type="struct" name="struct GstRTSPExtensionInterface" link="gst-plugins-base-libs-gstrtspextension.html#GstRTSPExtensionInterface"/>
     <keyword type="enum" name="enum GstRTSPMsgType" link="gst-plugins-base-libs-gstrtspmessage.html#GstRTSPMsgType"/>
@@ -665,7 +665,7 @@
     <keyword type="function" name="gst_rtsp_url_set_port ()" link="gst-plugins-base-libs-gstrtspurl.html#gst-rtsp-url-set-port"/>
     <keyword type="function" name="gst_rtsp_url_get_port ()" link="gst-plugins-base-libs-gstrtspurl.html#gst-rtsp-url-get-port"/>
     <keyword type="function" name="gst_rtsp_url_decode_path_components ()" link="gst-plugins-base-libs-gstrtspurl.html#gst-rtsp-url-decode-path-components"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstsdpmessage.html#idp22889312"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstsdpmessage.html#idp23447968"/>
     <keyword type="enum" name="enum GstSDPResult" link="gst-plugins-base-libs-gstsdpmessage.html#GstSDPResult"/>
     <keyword type="struct" name="GstSDPOrigin" link="gst-plugins-base-libs-gstsdpmessage.html#GstSDPOrigin"/>
     <keyword type="struct" name="GstSDPConnection" link="gst-plugins-base-libs-gstsdpmessage.html#GstSDPConnection"/>
@@ -759,7 +759,7 @@
     <keyword type="function" name="gst_sdp_media_get_attribute_val_n ()" link="gst-plugins-base-libs-gstsdpmessage.html#gst-sdp-media-get-attribute-val-n"/>
     <keyword type="function" name="gst_sdp_media_add_attribute ()" link="gst-plugins-base-libs-gstsdpmessage.html#gst-sdp-media-add-attribute"/>
     <keyword type="function" name="gst_sdp_media_as_text ()" link="gst-plugins-base-libs-gstsdpmessage.html#gst-sdp-media-as-text"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gsttag.html#idp18187888"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gsttag.html#idp19371888"/>
     <keyword type="macro" name="GST_TAG_MUSICBRAINZ_TRACKID" link="gst-plugins-base-libs-gsttag.html#GST-TAG-MUSICBRAINZ-TRACKID:CAPS"/>
     <keyword type="macro" name="GST_TAG_MUSICBRAINZ_ARTISTID" link="gst-plugins-base-libs-gsttag.html#GST-TAG-MUSICBRAINZ-ARTISTID:CAPS"/>
     <keyword type="macro" name="GST_TAG_MUSICBRAINZ_ALBUMID" link="gst-plugins-base-libs-gsttag.html#GST-TAG-MUSICBRAINZ-ALBUMID:CAPS"/>
@@ -797,14 +797,14 @@
     <keyword type="function" name="gst_tag_freeform_string_to_utf8 ()" link="gst-plugins-base-libs-gsttag.html#gst-tag-freeform-string-to-utf8"/>
     <keyword type="function" name="gst_tag_parse_extended_comment ()" link="gst-plugins-base-libs-gsttag.html#gst-tag-parse-extended-comment"/>
     <keyword type="enum" name="enum GstTagImageType" link="gst-plugins-base-libs-gsttag.html#GstTagImageType"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gsttagvorbis.html#idp12393184"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gsttagvorbis.html#idp17561392"/>
     <keyword type="function" name="gst_tag_from_vorbis_tag ()" link="gst-plugins-base-libs-gsttagvorbis.html#gst-tag-from-vorbis-tag"/>
     <keyword type="function" name="gst_tag_to_vorbis_tag ()" link="gst-plugins-base-libs-gsttagvorbis.html#gst-tag-to-vorbis-tag"/>
     <keyword type="function" name="gst_vorbis_tag_add ()" link="gst-plugins-base-libs-gsttagvorbis.html#gst-vorbis-tag-add"/>
     <keyword type="function" name="gst_tag_to_vorbis_comments ()" link="gst-plugins-base-libs-gsttagvorbis.html#gst-tag-to-vorbis-comments"/>
     <keyword type="function" name="gst_tag_list_from_vorbiscomment_buffer ()" link="gst-plugins-base-libs-gsttagvorbis.html#gst-tag-list-from-vorbiscomment-buffer"/>
     <keyword type="function" name="gst_tag_list_to_vorbiscomment_buffer ()" link="gst-plugins-base-libs-gsttagvorbis.html#gst-tag-list-to-vorbiscomment-buffer"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gsttagid3.html#idp20373728"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gsttagid3.html#idp23002432"/>
     <keyword type="function" name="gst_tag_id3_genre_count ()" link="gst-plugins-base-libs-gsttagid3.html#gst-tag-id3-genre-count"/>
     <keyword type="function" name="gst_tag_id3_genre_get ()" link="gst-plugins-base-libs-gsttagid3.html#gst-tag-id3-genre-get"/>
     <keyword type="function" name="gst_tag_list_new_from_id3v1 ()" link="gst-plugins-base-libs-gsttagid3.html#gst-tag-list-new-from-id3v1"/>
@@ -821,21 +821,21 @@
     <keyword type="function" name="gst_tag_list_from_xmp_buffer ()" link="gst-plugins-base-libs-gsttagxmp.html#gst-tag-list-from-xmp-buffer"/>
     <keyword type="function" name="gst_tag_list_to_xmp_buffer ()" link="gst-plugins-base-libs-gsttagxmp.html#gst-tag-list-to-xmp-buffer"/>
     <keyword type="function" name="gst_tag_xmp_list_schemas ()" link="gst-plugins-base-libs-gsttagxmp.html#gst-tag-xmp-list-schemas"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gsttagxmpwriter.html#idp20970880"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gsttagxmpwriter.html#idp20811168"/>
     <keyword type="function" name="gst_tag_xmp_writer_add_all_schemas ()" link="gst-plugins-base-libs-gsttagxmpwriter.html#gst-tag-xmp-writer-add-all-schemas"/>
     <keyword type="function" name="gst_tag_xmp_writer_add_schema ()" link="gst-plugins-base-libs-gsttagxmpwriter.html#gst-tag-xmp-writer-add-schema"/>
     <keyword type="function" name="gst_tag_xmp_writer_has_schema ()" link="gst-plugins-base-libs-gsttagxmpwriter.html#gst-tag-xmp-writer-has-schema"/>
     <keyword type="function" name="gst_tag_xmp_writer_remove_schema ()" link="gst-plugins-base-libs-gsttagxmpwriter.html#gst-tag-xmp-writer-remove-schema"/>
     <keyword type="function" name="gst_tag_xmp_writer_remove_all_schemas ()" link="gst-plugins-base-libs-gsttagxmpwriter.html#gst-tag-xmp-writer-remove-all-schemas"/>
     <keyword type="function" name="gst_tag_xmp_writer_tag_list_to_xmp_buffer ()" link="gst-plugins-base-libs-gsttagxmpwriter.html#gst-tag-xmp-writer-tag-list-to-xmp-buffer"/>
-    <keyword type="" name="Deriving from GstTagDemux" link="gst-plugins-base-libs-gsttagdemux.html#idp15286992"/>
+    <keyword type="" name="Deriving from GstTagDemux" link="gst-plugins-base-libs-gsttagdemux.html#idp6033920"/>
     <keyword type="struct" name="struct GstTagDemux" link="gst-plugins-base-libs-gsttagdemux.html#GstTagDemux"/>
     <keyword type="struct" name="struct GstTagDemuxClass" link="gst-plugins-base-libs-gsttagdemux.html#GstTagDemuxClass"/>
     <keyword type="enum" name="enum GstTagDemuxResult" link="gst-plugins-base-libs-gsttagdemux.html#GstTagDemuxResult"/>
-    <keyword type="" name="Deriving from GstTagMux" link="gst-plugins-base-libs-gsttagmux.html#idp7428352"/>
+    <keyword type="" name="Deriving from GstTagMux" link="gst-plugins-base-libs-gsttagmux.html#idp8139664"/>
     <keyword type="struct" name="struct GstTagMux" link="gst-plugins-base-libs-gsttagmux.html#GstTagMux"/>
     <keyword type="struct" name="struct GstTagMuxClass" link="gst-plugins-base-libs-gsttagmux.html#GstTagMuxClass"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gsttaglanguagecodes.html#idp24788720"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gsttaglanguagecodes.html#idp22642704"/>
     <keyword type="function" name="gst_tag_get_language_codes ()" link="gst-plugins-base-libs-gsttaglanguagecodes.html#gst-tag-get-language-codes"/>
     <keyword type="function" name="gst_tag_get_language_name ()" link="gst-plugins-base-libs-gsttaglanguagecodes.html#gst-tag-get-language-name"/>
     <keyword type="macro" name="gst_tag_get_language_code()" link="gst-plugins-base-libs-gsttaglanguagecodes.html#gst-tag-get-language-code"/>
@@ -851,7 +851,7 @@
     <keyword type="function" name="gst_tag_get_license_jurisdiction ()" link="gst-plugins-base-libs-gsttaglicenses.html#gst-tag-get-license-jurisdiction"/>
     <keyword type="function" name="gst_tag_get_license_version ()" link="gst-plugins-base-libs-gsttaglicenses.html#gst-tag-get-license-version"/>
     <keyword type="function" name="gst_tag_get_licenses ()" link="gst-plugins-base-libs-gsttaglicenses.html#gst-tag-get-licenses"/>
-    <keyword type="" name="Linking to this library" link="gst-plugins-base-libs-gstpbutils.html#idp6215936"/>
+    <keyword type="" name="Linking to this library" link="gst-plugins-base-libs-gstpbutils.html#idp10629744"/>
     <keyword type="function" name="gst_pb_utils_init ()" link="gst-plugins-base-libs-gstpbutils.html#gst-pb-utils-init"/>
     <keyword type="macro" name="GST_PLUGINS_BASE_VERSION_MAJOR" link="gst-plugins-base-libs-gstpluginsbaseversion.html#GST-PLUGINS-BASE-VERSION-MAJOR:CAPS"/>
     <keyword type="macro" name="GST_PLUGINS_BASE_VERSION_MINOR" link="gst-plugins-base-libs-gstpluginsbaseversion.html#GST-PLUGINS-BASE-VERSION-MINOR:CAPS"/>
@@ -860,7 +860,7 @@
     <keyword type="macro" name="GST_CHECK_PLUGINS_BASE_VERSION()" link="gst-plugins-base-libs-gstpluginsbaseversion.html#GST-CHECK-PLUGINS-BASE-VERSION:CAPS"/>
     <keyword type="function" name="gst_plugins_base_version ()" link="gst-plugins-base-libs-gstpluginsbaseversion.html#gst-plugins-base-version"/>
     <keyword type="function" name="gst_plugins_base_version_string ()" link="gst-plugins-base-libs-gstpluginsbaseversion.html#gst-plugins-base-version-string"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstpbutilscodecutils.html#idp21971776"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstpbutilscodecutils.html#idp24864800"/>
     <keyword type="function" name="gst_codec_utils_aac_get_sample_rate_from_index ()" link="gst-plugins-base-libs-gstpbutilscodecutils.html#gst-codec-utils-aac-get-sample-rate-from-index"/>
     <keyword type="function" name="gst_codec_utils_aac_get_profile ()" link="gst-plugins-base-libs-gstpbutilscodecutils.html#gst-codec-utils-aac-get-profile"/>
     <keyword type="function" name="gst_codec_utils_aac_get_level ()" link="gst-plugins-base-libs-gstpbutilscodecutils.html#gst-codec-utils-aac-get-level"/>
@@ -872,7 +872,7 @@
     <keyword type="function" name="gst_codec_utils_mpeg4video_get_profile ()" link="gst-plugins-base-libs-gstpbutilscodecutils.html#gst-codec-utils-mpeg4video-get-profile"/>
     <keyword type="function" name="gst_codec_utils_mpeg4video_get_level ()" link="gst-plugins-base-libs-gstpbutilscodecutils.html#gst-codec-utils-mpeg4video-get-level"/>
     <keyword type="function" name="gst_codec_utils_mpeg4video_caps_set_level_and_profile ()" link="gst-plugins-base-libs-gstpbutilscodecutils.html#gst-codec-utils-mpeg4video-caps-set-level-and-profile"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#idp24669248"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#idp21929088"/>
     <keyword type="function" name="gst_pb_utils_get_source_description ()" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#gst-pb-utils-get-source-description"/>
     <keyword type="function" name="gst_pb_utils_get_sink_description ()" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#gst-pb-utils-get-sink-description"/>
     <keyword type="function" name="gst_pb_utils_get_decoder_description ()" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#gst-pb-utils-get-decoder-description"/>
@@ -880,7 +880,7 @@
     <keyword type="function" name="gst_pb_utils_get_element_description ()" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#gst-pb-utils-get-element-description"/>
     <keyword type="function" name="gst_pb_utils_add_codec_description_to_tag_list ()" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#gst-pb-utils-add-codec-description-to-tag-list"/>
     <keyword type="function" name="gst_pb_utils_get_codec_description ()" link="gst-plugins-base-libs-gstpbutilsdescriptions.html#gst-pb-utils-get-codec-description"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#idp22624688"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#idp22096816"/>
     <keyword type="function" name="gst_missing_plugin_message_get_installer_detail ()" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#gst-missing-plugin-message-get-installer-detail"/>
     <keyword type="function" name="gst_missing_plugin_message_get_description ()" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#gst-missing-plugin-message-get-description"/>
     <keyword type="function" name="gst_is_missing_plugin_message ()" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#gst-is-missing-plugin-message"/>
@@ -894,7 +894,7 @@
     <keyword type="function" name="gst_missing_element_installer_detail_new ()" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#gst-missing-element-installer-detail-new"/>
     <keyword type="function" name="gst_missing_decoder_installer_detail_new ()" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#gst-missing-decoder-installer-detail-new"/>
     <keyword type="function" name="gst_missing_encoder_installer_detail_new ()" link="gst-plugins-base-libs-gstpbutilsmissingplugins.html#gst-missing-encoder-installer-detail-new"/>
-    <keyword type="" name="Overview" link="gst-plugins-base-libs-gstpbutilsinstallplugins.html#idp22445024"/>
+    <keyword type="" name="Overview" link="gst-plugins-base-libs-gstpbutilsinstallplugins.html#idp25382064"/>
     <keyword type="enum" name="enum GstInstallPluginsReturn" link="gst-plugins-base-libs-gstpbutilsinstallplugins.html#GstInstallPluginsReturn"/>
     <keyword type="function" name="GstInstallPluginsResultFunc ()" link="gst-plugins-base-libs-gstpbutilsinstallplugins.html#GstInstallPluginsResultFunc"/>
     <keyword type="function" name="gst_install_plugins_async ()" link="gst-plugins-base-libs-gstpbutilsinstallplugins.html#gst-install-plugins-async"/>
@@ -969,9 +969,9 @@
     <keyword type="signal" name="The &quot;finished&quot; signal" link="gst-plugins-base-libs-gstdiscoverer.html#GstDiscoverer-finished"/>
     <keyword type="signal" name="The &quot;source-setup&quot; signal" link="gst-plugins-base-libs-gstdiscoverer.html#GstDiscoverer-source-setup"/>
     <keyword type="signal" name="The &quot;starting&quot; signal" link="gst-plugins-base-libs-gstdiscoverer.html#GstDiscoverer-starting"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-encoding-profile.html#idp26810864"/>
-    <keyword type="" name="Example: Creating a profile" link="gst-plugins-base-libs-encoding-profile.html#idp25516912"/>
-    <keyword type="" name="Example: Listing categories, targets and profiles" link="gst-plugins-base-libs-encoding-profile.html#idp25519904"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-encoding-profile.html#idp26255264"/>
+    <keyword type="" name="Example: Creating a profile" link="gst-plugins-base-libs-encoding-profile.html#idp26262832"/>
+    <keyword type="" name="Example: Listing categories, targets and profiles" link="gst-plugins-base-libs-encoding-profile.html#idp26265824"/>
     <keyword type="struct" name="GstEncodingProfile" link="gst-plugins-base-libs-encoding-profile.html#GstEncodingProfile-struct"/>
     <keyword type="macro" name="gst_encoding_profile_unref()" link="gst-plugins-base-libs-encoding-profile.html#gst-encoding-profile-unref"/>
     <keyword type="macro" name="gst_encoding_profile_ref()" link="gst-plugins-base-libs-encoding-profile.html#gst-encoding-profile-ref"/>
@@ -1025,7 +1025,7 @@
     <keyword type="function" name="gst_encoding_target_load_from_file ()" link="gst-plugins-base-libs-encoding-profile.html#gst-encoding-target-load-from-file"/>
     <keyword type="function" name="gst_encoding_list_all_targets ()" link="gst-plugins-base-libs-encoding-profile.html#gst-encoding-list-all-targets"/>
     <keyword type="function" name="gst_encoding_list_available_categories ()" link="gst-plugins-base-libs-encoding-profile.html#gst-encoding-list-available-categories"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstvideo.html#idp29601968"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstvideo.html#idp29588128"/>
     <keyword type="function" name="gst_video_calculate_display_ratio ()" link="gst-plugins-base-libs-gstvideo.html#gst-video-calculate-display-ratio"/>
     <keyword type="function" name="GstVideoConvertSampleCallback ()" link="gst-plugins-base-libs-gstvideo.html#GstVideoConvertSampleCallback"/>
     <keyword type="function" name="gst_video_convert_sample ()" link="gst-plugins-base-libs-gstvideo.html#gst-video-convert-sample"/>
@@ -1167,7 +1167,7 @@
     <keyword type="macro" name="GST_VIDEO_FRAME_COMP_PSTRIDE()" link="gst-plugins-base-libs-gstvideo.html#GST-VIDEO-FRAME-COMP-PSTRIDE:CAPS"/>
     <keyword type="macro" name="GST_VIDEO_FRAME_COMP_POFFSET()" link="gst-plugins-base-libs-gstvideo.html#GST-VIDEO-FRAME-COMP-POFFSET:CAPS"/>
     <keyword type="enum" name="enum GstVideoBufferFlags" link="gst-plugins-base-libs-gstvideo.html#GstVideoBufferFlags"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#idp26619248"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#idp25314688"/>
     <keyword type="struct" name="GstVideoOverlayComposition" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#GstVideoOverlayComposition"/>
     <keyword type="function" name="gst_video_overlay_composition_new ()" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#gst-video-overlay-composition-new"/>
     <keyword type="function" name="gst_video_overlay_composition_ref ()" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#gst-video-overlay-composition-ref"/>
@@ -1195,10 +1195,10 @@
     <keyword type="function" name="gst_video_overlay_rectangle_set_render_rectangle ()" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#gst-video-overlay-rectangle-set-render-rectangle"/>
     <keyword type="function" name="gst_video_overlay_rectangle_copy ()" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#gst-video-overlay-rectangle-copy"/>
     <keyword type="function" name="gst_video_overlay_rectangle_get_flags ()" link="gst-plugins-base-libs-gstvideooverlaycomposition.html#gst-video-overlay-rectangle-get-flags"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstvideofilter.html#idp22781376"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstvideofilter.html#idp9341792"/>
     <keyword type="struct" name="struct GstVideoFilter" link="gst-plugins-base-libs-gstvideofilter.html#GstVideoFilter-struct"/>
     <keyword type="struct" name="struct GstVideoFilterClass" link="gst-plugins-base-libs-gstvideofilter.html#GstVideoFilterClass"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstvideosink.html#idp26341792"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstvideosink.html#idp22299888"/>
     <keyword type="struct" name="struct GstVideoSink" link="gst-plugins-base-libs-gstvideosink.html#GstVideoSink-struct"/>
     <keyword type="struct" name="struct GstVideoSinkClass" link="gst-plugins-base-libs-gstvideosink.html#GstVideoSinkClass"/>
     <keyword type="struct" name="struct GstVideoRectangle" link="gst-plugins-base-libs-gstvideosink.html#GstVideoRectangle"/>
@@ -1207,7 +1207,7 @@
     <keyword type="macro" name="GST_VIDEO_SINK_WIDTH()" link="gst-plugins-base-libs-gstvideosink.html#GST-VIDEO-SINK-WIDTH:CAPS"/>
     <keyword type="function" name="gst_video_sink_center_rect ()" link="gst-plugins-base-libs-gstvideosink.html#gst-video-sink-center-rect"/>
     <keyword type="property" name="The &quot;show-preroll-frame&quot; property" link="gst-plugins-base-libs-gstvideosink.html#GstVideoSink--show-preroll-frame"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstcolorbalance.html#idp25968464"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstcolorbalance.html#idp27381776"/>
     <keyword type="struct" name="GstColorBalance" link="gst-plugins-base-libs-gstcolorbalance.html#GstColorBalance-struct"/>
     <keyword type="struct" name="struct GstColorBalanceInterface" link="gst-plugins-base-libs-gstcolorbalance.html#GstColorBalanceInterface"/>
     <keyword type="enum" name="enum GstColorBalanceType" link="gst-plugins-base-libs-gstcolorbalance.html#GstColorBalanceType"/>
@@ -1217,7 +1217,7 @@
     <keyword type="function" name="gst_color_balance_value_changed ()" link="gst-plugins-base-libs-gstcolorbalance.html#gst-color-balance-value-changed"/>
     <keyword type="function" name="gst_color_balance_get_balance_type ()" link="gst-plugins-base-libs-gstcolorbalance.html#gst-color-balance-get-balance-type"/>
     <keyword type="signal" name="The &quot;value-changed&quot; signal" link="gst-plugins-base-libs-gstcolorbalance.html#GstColorBalance-value-changed"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstcolorbalancechannel.html#idp26162800"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstcolorbalancechannel.html#idp25272032"/>
     <keyword type="struct" name="struct GstColorBalanceChannel" link="gst-plugins-base-libs-gstcolorbalancechannel.html#GstColorBalanceChannel-struct"/>
     <keyword type="struct" name="struct GstColorBalanceChannelClass" link="gst-plugins-base-libs-gstcolorbalancechannel.html#GstColorBalanceChannelClass"/>
     <keyword type="signal" name="The &quot;value-changed&quot; signal" link="gst-plugins-base-libs-gstcolorbalancechannel.html#GstColorBalanceChannel-value-changed"/>
@@ -1231,10 +1231,10 @@
     <keyword type="function" name="gst_video_orientation_set_hflip ()" link="gst-plugins-base-libs-gstvideoorientation.html#gst-video-orientation-set-hflip"/>
     <keyword type="function" name="gst_video_orientation_set_vcenter ()" link="gst-plugins-base-libs-gstvideoorientation.html#gst-video-orientation-set-vcenter"/>
     <keyword type="function" name="gst_video_orientation_set_vflip ()" link="gst-plugins-base-libs-gstvideoorientation.html#gst-video-orientation-set-vflip"/>
-    <keyword type="" name="" link="gst-plugins-base-libs-gstvideooverlay.html#idp28046720"/>
-    <keyword type="" name="Two basic usage scenarios" link="gst-plugins-base-libs-gstvideooverlay.html#idp28056832"/>
-    <keyword type="" name="GstVideoOverlay and Gtk+" link="gst-plugins-base-libs-gstvideooverlay.html#idp22235088"/>
-    <keyword type="" name="GstVideoOverlay and Qt" link="gst-plugins-base-libs-gstvideooverlay.html#idp22240272"/>
+    <keyword type="" name="" link="gst-plugins-base-libs-gstvideooverlay.html#idp29100736"/>
+    <keyword type="" name="Two basic usage scenarios" link="gst-plugins-base-libs-gstvideooverlay.html#idp29110848"/>
+    <keyword type="" name="GstVideoOverlay and Gtk+" link="gst-plugins-base-libs-gstvideooverlay.html#idp28743200"/>
+    <keyword type="" name="GstVideoOverlay and Qt" link="gst-plugins-base-libs-gstvideooverlay.html#idp28748400"/>
     <keyword type="struct" name="GstVideoOverlay" link="gst-plugins-base-libs-gstvideooverlay.html#GstVideoOverlay-struct"/>
     <keyword type="struct" name="struct GstVideoOverlayInterface" link="gst-plugins-base-libs-gstvideooverlay.html#GstVideoOverlayInterface"/>
     <keyword type="function" name="gst_video_overlay_got_window_handle ()" link="gst-plugins-base-libs-gstvideooverlay.html#gst-video-overlay-got-window-handle"/>
diff --git a/docs/libs/html/index.html b/docs/libs/html/index.html
index e457aad..1521bb0 100644
--- a/docs/libs/html/index.html
+++ b/docs/libs/html/index.html
@@ -15,7 +15,7 @@
 <div>
 <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GStreamer Base Plugins 1.0 Library Reference Manual</p></th></tr></table></div>
 <div><p class="releaseinfo">
-      for GStreamer Base Library 1.0 (1.0.3)
+      for GStreamer Base Library 1.0 (1.0.4)
       <a class="ulink" href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/" target="_top">http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/</a>.
     </p></div>
 </div>
diff --git a/docs/plugins/html/ch01.html b/docs/plugins/html/ch01.html
index 3f22c35..0f55950 100644
--- a/docs/plugins/html/ch01.html
+++ b/docs/plugins/html/ch01.html
@@ -21,7 +21,7 @@
 </tr></table>
 <div class="chapter">
 <div class="titlepage"><div><div><h2 class="title">
-<a name="idp283264"></a>gst-plugins-base Elements</h2></div></div></div>
+<a name="idp590864"></a>gst-plugins-base Elements</h2></div></div></div>
 <div class="toc"><dl>
 <dt>
 <span class="refentrytitle"><a href="gst-plugins-base-plugins-adder.html">adder</a></span><span class="refpurpose"> — Add N audio channels together</span>
diff --git a/docs/plugins/html/ch02.html b/docs/plugins/html/ch02.html
index 0e813bd..7e0fea1 100644
--- a/docs/plugins/html/ch02.html
+++ b/docs/plugins/html/ch02.html
@@ -21,7 +21,7 @@
 </tr></table>
 <div class="chapter">
 <div class="titlepage"><div><div><h2 class="title">
-<a name="idp34640"></a>gst-plugins-base Plugins</h2></div></div></div>
+<a name="idp86320"></a>gst-plugins-base Plugins</h2></div></div></div>
 <div class="toc"><dl>
 <dt>
 <span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-adder.html">adder</a></span><span class="refpurpose"> — <a name="plugin-adder"></a>Adds multiple streams</span>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-adder.html b/docs/plugins/html/gst-plugins-base-plugins-adder.html
index d8fef7d..3150cc3 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-adder.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-adder.html
@@ -73,7 +73,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp8307408"></a><h3>Example launch line</h3>
+<a name="idp8499952"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -94,7 +94,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp8294048"></a><h3>Element Information</h3>
+<a name="idp7178016"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -117,7 +117,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp5281840"></a><h3>Element Pads</h3>
+<a name="idp20304"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-alsasink.html b/docs/plugins/html/gst-plugins-base-plugins-alsasink.html
index 53bd08d..af0ac57 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-alsasink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-alsasink.html
@@ -78,7 +78,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp7992528"></a><h3>Element Information</h3>
+<a name="idp6666768"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -101,7 +101,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp7999984"></a><h3>Element Pads</h3>
+<a name="idp6674224"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-alsasrc.html b/docs/plugins/html/gst-plugins-base-plugins-alsasrc.html
index fe136c8..907e9bf 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-alsasrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-alsasrc.html
@@ -79,7 +79,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp8149344"></a><h3>Element Information</h3>
+<a name="idp9291984"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -102,7 +102,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp10711808"></a><h3>Element Pads</h3>
+<a name="idp9214592"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-appsink.html b/docs/plugins/html/gst-plugins-base-plugins-appsink.html
index 6acd0ac..5c69e0e 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-appsink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-appsink.html
@@ -104,7 +104,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp10838272"></a><h3>Element Information</h3>
+<a name="idp10054544"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -127,7 +127,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp10845680"></a><h3>Element Pads</h3>
+<a name="idp10061952"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-appsrc.html b/docs/plugins/html/gst-plugins-base-plugins-appsrc.html
index 1d74d0f..9f1b073 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-appsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-appsrc.html
@@ -106,7 +106,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp6448768"></a><h3>Element Information</h3>
+<a name="idp7696336"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -129,7 +129,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp6456176"></a><h3>Element Pads</h3>
+<a name="idp7703744"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-audioconvert.html b/docs/plugins/html/gst-plugins-base-plugins-audioconvert.html
index ac8c736..0127fef 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-audioconvert.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-audioconvert.html
@@ -74,7 +74,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp7291968"></a><h3>Example launch line</h3>
+<a name="idp8684096"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -108,7 +108,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp5710512"></a><h3>Element Information</h3>
+<a name="idp5543520"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -131,7 +131,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp7694512"></a><h3>Element Pads</h3>
+<a name="idp10028432"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-audiorate.html b/docs/plugins/html/gst-plugins-base-plugins-audiorate.html
index b133673..d179773 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-audiorate.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-audiorate.html
@@ -103,7 +103,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp8595744"></a><h3>Example pipelines</h3>
+<a name="idp7868496"></a><h3>Example pipelines</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -122,7 +122,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp11214880"></a><h3>Element Information</h3>
+<a name="idp10491264"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -145,7 +145,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11222336"></a><h3>Element Pads</h3>
+<a name="idp10498720"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-audioresample.html b/docs/plugins/html/gst-plugins-base-plugins-audioresample.html
index d22b958..effaec1 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-audioresample.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-audioresample.html
@@ -71,7 +71,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp7198704"></a><h3>Example launch line</h3>
+<a name="idp7077152"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -90,7 +90,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp5402592"></a><h3>Element Information</h3>
+<a name="idp6196320"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -113,7 +113,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp7869872"></a><h3>Element Pads</h3>
+<a name="idp5887248"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-audiotestsrc.html b/docs/plugins/html/gst-plugins-base-plugins-audiotestsrc.html
index eaca203..39a8f77 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-audiotestsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-audiotestsrc.html
@@ -78,7 +78,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp5750352"></a><h3>Example launch line</h3>
+<a name="idp7113504"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -110,7 +110,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp5754224"></a><h3>Element Information</h3>
+<a name="idp7117376"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -133,7 +133,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11031248"></a><h3>Element Pads</h3>
+<a name="idp10575072"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-cdparanoiasrc.html b/docs/plugins/html/gst-plugins-base-plugins-cdparanoiasrc.html
index a76b921..7456277 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-cdparanoiasrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-cdparanoiasrc.html
@@ -89,7 +89,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp8740128"></a><h3>Element Information</h3>
+<a name="idp10360336"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -112,7 +112,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11492512"></a><h3>Element Pads</h3>
+<a name="idp7028064"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-clockoverlay.html b/docs/plugins/html/gst-plugins-base-plugins-clockoverlay.html
index bd50a8f..06adf02 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-clockoverlay.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-clockoverlay.html
@@ -66,7 +66,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp10251344"></a><h3>Element Information</h3>
+<a name="idp6794320"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -89,7 +89,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp7045776"></a><h3>Element Pads</h3>
+<a name="idp9927280"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-decodebin.html b/docs/plugins/html/gst-plugins-base-plugins-decodebin.html
index 911ad6b..9571272 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-decodebin.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-decodebin.html
@@ -110,7 +110,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp11606096"></a><h3>Element Information</h3>
+<a name="idp10717808"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -133,7 +133,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11613616"></a><h3>Element Pads</h3>
+<a name="idp10725328"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-encodebin.html b/docs/plugins/html/gst-plugins-base-plugins-encodebin.html
index 3bb479c..2de4296 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-encodebin.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-encodebin.html
@@ -99,7 +99,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp9131200"></a><h3>Features</h3>
+<a name="idp8725200"></a><h3>Features</h3>
 <div class="itemizedlist"><ul class="itemizedlist" type="disc">
 <li class="listitem">
 Automatic encoder and muxer selection based on elements available on the
@@ -164,7 +164,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12272192"></a><h3>Element Information</h3>
+<a name="idp11109680"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -187,7 +187,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12279600"></a><h3>Element Pads</h3>
+<a name="idp11117088"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-giosink.html b/docs/plugins/html/gst-plugins-base-plugins-giosink.html
index fa361fa..09f26db 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-giosink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-giosink.html
@@ -101,7 +101,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp5962672"></a><h3>Example pipelines</h3>
+<a name="idp11507072"></a><h3>Example pipelines</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -144,7 +144,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12120560"></a><h3>Element Information</h3>
+<a name="idp8591616"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -167,7 +167,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12128080"></a><h3>Element Pads</h3>
+<a name="idp8599136"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-giosrc.html b/docs/plugins/html/gst-plugins-base-plugins-giosrc.html
index d4f30bb..164c854 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-giosrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-giosrc.html
@@ -95,7 +95,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp12361776"></a><h3>Example launch lines</h3>
+<a name="idp11213344"></a><h3>Example launch lines</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -139,7 +139,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12366624"></a><h3>Element Information</h3>
+<a name="idp11218192"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -162,7 +162,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12374144"></a><h3>Element Pads</h3>
+<a name="idp11722256"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-giostreamsink.html b/docs/plugins/html/gst-plugins-base-plugins-giostreamsink.html
index 2924e7d..289151c 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-giostreamsink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-giostreamsink.html
@@ -74,7 +74,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp10719136"></a><h3>Example code</h3>
+<a name="idp11462256"></a><h3>Example code</h3>
 <p>
 The following example writes the received data to a <a href="http://library.gnome.org/devel/gio/unstable/GMemoryOutputStream.html"><span class="type">GMemoryOutputStream</span></a>.
 </p>
@@ -141,7 +141,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp10723600"></a><h3>Element Information</h3>
+<a name="idp9941152"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -164,7 +164,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp10455296"></a><h3>Element Pads</h3>
+<a name="idp11385696"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-giostreamsrc.html b/docs/plugins/html/gst-plugins-base-plugins-giostreamsrc.html
index cc6f3a5..f07ab0e 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-giostreamsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-giostreamsrc.html
@@ -75,7 +75,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp12198080"></a><h3>Example code</h3>
+<a name="idp6830480"></a><h3>Example code</h3>
 <p>
 The following example reads data from a <a href="http://library.gnome.org/devel/gio/unstable/GMemoryInputStream.html"><span class="type">GMemoryInputStream</span></a>.
 </p>
@@ -140,7 +140,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp9266512"></a><h3>Element Information</h3>
+<a name="idp6834880"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -163,7 +163,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12408240"></a><h3>Element Pads</h3>
+<a name="idp11666048"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-multifdsink.html b/docs/plugins/html/gst-plugins-base-plugins-multifdsink.html
index 56f1d22..5e26365 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-multifdsink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-multifdsink.html
@@ -194,7 +194,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12665776"></a><h3>Element Information</h3>
+<a name="idp12094000"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -217,7 +217,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12673184"></a><h3>Element Pads</h3>
+<a name="idp12101408"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-multisocketsink.html b/docs/plugins/html/gst-plugins-base-plugins-multisocketsink.html
index d9b0efa..eb32aa6 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-multisocketsink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-multisocketsink.html
@@ -192,7 +192,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp13575616"></a><h3>Element Information</h3>
+<a name="idp9091360"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -215,7 +215,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp13583184"></a><h3>Element Pads</h3>
+<a name="idp9098928"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-oggdemux.html b/docs/plugins/html/gst-plugins-base-plugins-oggdemux.html
index b50f0fb..330b92d 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-oggdemux.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-oggdemux.html
@@ -57,7 +57,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp11142208"></a><h3>Element Information</h3>
+<a name="idp11693056"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -80,7 +80,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp8953376"></a><h3>Element Pads</h3>
+<a name="idp7178576"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-oggmux.html b/docs/plugins/html/gst-plugins-base-plugins-oggmux.html
index e35dc3c..a5e617a 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-oggmux.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-oggmux.html
@@ -76,7 +76,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp10184288"></a><h3>Element Information</h3>
+<a name="idp12499152"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -99,7 +99,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp8767664"></a><h3>Element Pads</h3>
+<a name="idp12492736"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-playbin.html b/docs/plugins/html/gst-plugins-base-plugins-playbin.html
index 1efecb6..5c880e3 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-playbin.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-playbin.html
@@ -162,7 +162,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp14000464"></a><h3>Usage</h3>
+<a name="idp13152768"></a><h3>Usage</h3>
 <p>
 A playbin element can be created just like any other element using
 <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstElementFactory.html#gst-element-factory-make"><code class="function">gst_element_factory_make()</code></a>. The file/URI to play should be set via the <a class="link" href="gst-plugins-base-plugins-playbin.html#GstPlayBin--uri" title='The "uri" property'><span class="type">"uri"</span></a>
@@ -210,7 +210,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14016576"></a><h3>Advanced Usage: specifying the audio and video sink</h3>
+<a name="idp13168880"></a><h3>Advanced Usage: specifying the audio and video sink</h3>
 <p>
 By default, if no audio sink or video sink has been specified via the
 <a class="link" href="gst-plugins-base-plugins-playbin.html#GstPlayBin--audio-sink" title='The "audio-sink" property'><span class="type">"audio-sink"</span></a> or <a class="link" href="gst-plugins-base-plugins-playbin.html#GstPlayBin--video-sink" title='The "video-sink" property'><span class="type">"video-sink"</span></a> property, playbin will use the autoaudiosink
@@ -251,7 +251,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14027136"></a><h3>Retrieving Tags and Other Meta Data</h3>
+<a name="idp13179440"></a><h3>Retrieving Tags and Other Meta Data</h3>
 <p>
 Most of the common meta data (artist, title, etc.) can be retrieved by
 watching for TAG messages on the pipeline's bus (see above).
@@ -266,7 +266,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14029248"></a><h3>Buffering</h3>
+<a name="idp13181552"></a><h3>Buffering</h3>
 Playbin handles buffering automatically for the most part, but applications
 need to handle parts of the buffering process as well. Whenever playbin is
 buffering, it will post BUFFERING messages on the bus with a percentage
@@ -311,7 +311,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14032016"></a><h3>Embedding the video window in your application</h3>
+<a name="idp13184320"></a><h3>Embedding the video window in your application</h3>
 By default, playbin (or rather the video sinks used) will create their own
 window. Applications will usually want to force output to a window of their
 own, however. This can be done using the <a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstvideooverlay.html#GstVideoOverlay"><span class="type">GstVideoOverlay</span></a> interface, which most
@@ -321,7 +321,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14033984"></a><h3>Specifying which CD/DVD device to use</h3>
+<a name="idp13186288"></a><h3>Specifying which CD/DVD device to use</h3>
 The device to use for CDs/DVDs needs to be set on the source element
 playbin creates before it is opened. The most generic way of doing this
 is to connect to playbin's "source-setup" (or "notify::source") signal,
@@ -337,7 +337,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14035552"></a><h3>Handling redirects</h3>
+<a name="idp13187856"></a><h3>Handling redirects</h3>
 <p>
 Some elements may post 'redirect' messages on the bus to tell the
 application to open another location. These are element messages containing
@@ -350,7 +350,7 @@
 </p>
 <hr>
 <div class="refsect2">
-<a name="idp14037232"></a><h3>Examples</h3>
+<a name="idp13189536"></a><h3>Examples</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -396,7 +396,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14042128"></a><h3>Element Information</h3>
+<a name="idp13194432"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -419,7 +419,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14049584"></a><h3>Element Pads</h3>
+<a name="idp13201888"></a><h3>Element Pads</h3>
 </div>
 </div>
 <p>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-adder.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-adder.html
index d799a0a..09a4d23 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-adder.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-adder.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp7749872"></a><h2>Plugin Information</h2>
+<a name="idp5632992"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7877600"></a><h2>Elements</h2>
+<a name="idp6809568"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-alsa.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-alsa.html
index 0081a9f..3e35cbc 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-alsa.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-alsa.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp13166128"></a><h2>Plugin Information</h2>
+<a name="idp8843088"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp12388896"></a><h2>Elements</h2>
+<a name="idp5709424"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-app.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-app.html
index 44b21d1..94e2739 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-app.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-app.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp16267040"></a><h2>Plugin Information</h2>
+<a name="idp6259408"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7465232"></a><h2>Elements</h2>
+<a name="idp9025328"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-audioconvert.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-audioconvert.html
index de6c1c0..1abea67 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-audioconvert.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-audioconvert.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp6622832"></a><h2>Plugin Information</h2>
+<a name="idp5807952"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7494752"></a><h2>Elements</h2>
+<a name="idp9406992"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-audiorate.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-audiorate.html
index 0b702d1..0e345b9 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-audiorate.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-audiorate.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp6286000"></a><h2>Plugin Information</h2>
+<a name="idp7870496"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp8275280"></a><h2>Elements</h2>
+<a name="idp5982608"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-audioresample.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-audioresample.html
index 894d31c..8157233 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-audioresample.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-audioresample.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp12247328"></a><h2>Plugin Information</h2>
+<a name="idp8940992"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp6630880"></a><h2>Elements</h2>
+<a name="idp6988816"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-audiotestsrc.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-audiotestsrc.html
index 2dc6eb3..113dafb 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-audiotestsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-audiotestsrc.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp5806432"></a><h2>Plugin Information</h2>
+<a name="idp8061392"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp9174368"></a><h2>Elements</h2>
+<a name="idp6735280"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-cdparanoia.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-cdparanoia.html
index 7f75183..7e8a363 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-cdparanoia.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-cdparanoia.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp7280480"></a><h2>Plugin Information</h2>
+<a name="idp5492608"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7610480"></a><h2>Elements</h2>
+<a name="idp7015664"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-encoding.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-encoding.html
index 46510ff..da46905 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-encoding.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-encoding.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp12573040"></a><h2>Plugin Information</h2>
+<a name="idp7056400"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp5436144"></a><h2>Elements</h2>
+<a name="idp11225568"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-gio.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-gio.html
index c731d5c..bab6777 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-gio.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-gio.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp8410064"></a><h2>Plugin Information</h2>
+<a name="idp8633024"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp6226864"></a><h2>Elements</h2>
+<a name="idp6201472"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-libvisual.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-libvisual.html
index b24babc..26f660b 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-libvisual.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-libvisual.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp11973280"></a><h2>Plugin Information</h2>
+<a name="idp16205600"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp6283472"></a><h2>Elements</h2>
+<a name="idp5465936"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-ogg.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-ogg.html
index 9b004d8..61a83e0 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-ogg.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-ogg.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp16459232"></a><h2>Plugin Information</h2>
+<a name="idp15719968"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp16054448"></a><h2>Elements</h2>
+<a name="idp7906288"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-pango.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-pango.html
index 34d69e6..52493b7 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-pango.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-pango.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp17320464"></a><h2>Plugin Information</h2>
+<a name="idp16586848"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp9110880"></a><h2>Elements</h2>
+<a name="idp9460032"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-playback.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-playback.html
index be70f6b..c9f4dea 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-playback.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-playback.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp8828000"></a><h2>Plugin Information</h2>
+<a name="idp16122080"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp6083568"></a><h2>Elements</h2>
+<a name="idp8252816"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-subparse.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-subparse.html
index 2a8d7da..6c26450 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-subparse.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-subparse.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp6004368"></a><h2>Plugin Information</h2>
+<a name="idp9801856"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp12905440"></a><h2>Elements</h2>
+<a name="idp7525696"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-tcp.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-tcp.html
index 31451f9..d445906 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-tcp.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-tcp.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp16519104"></a><h2>Plugin Information</h2>
+<a name="idp5598400"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7982288"></a><h2>Elements</h2>
+<a name="idp5936576"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-theora.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-theora.html
index d1cdb0d..9716c8c 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-theora.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-theora.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp6431744"></a><h2>Plugin Information</h2>
+<a name="idp16613712"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp5571344"></a><h2>Elements</h2>
+<a name="idp9548192"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-typefindfunctions.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-typefindfunctions.html
index 3854b30..dec0cc3 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-typefindfunctions.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-typefindfunctions.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp16685424"></a><h2>Plugin Information</h2>
+<a name="idp16780784"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7411024"></a><h2>Elements</h2>
+<a name="idp11471552"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody></tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-videoconvert.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-videoconvert.html
index 83df33f..702d93f 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-videoconvert.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-videoconvert.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp5905808"></a><h2>Plugin Information</h2>
+<a name="idp5639616"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp12446848"></a><h2>Elements</h2>
+<a name="idp5291232"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-videorate.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-videorate.html
index 0ef1d23..99e1595 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-videorate.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-videorate.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp6981152"></a><h2>Plugin Information</h2>
+<a name="idp11160592"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp6746816"></a><h2>Elements</h2>
+<a name="idp7915056"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-videoscale.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-videoscale.html
index c50ca64..50d47b8 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-videoscale.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-videoscale.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp9259280"></a><h2>Plugin Information</h2>
+<a name="idp6867056"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp7451056"></a><h2>Elements</h2>
+<a name="idp8723520"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-videotestsrc.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-videotestsrc.html
index 1f34528..1301f3c 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-videotestsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-videotestsrc.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp5707264"></a><h2>Plugin Information</h2>
+<a name="idp7494848"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp9347056"></a><h2>Elements</h2>
+<a name="idp9951904"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-volume.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-volume.html
index 3b653fc..0a40b5f 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-volume.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-volume.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp6918128"></a><h2>Plugin Information</h2>
+<a name="idp8685616"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp9257728"></a><h2>Elements</h2>
+<a name="idp13397488"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-vorbis.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-vorbis.html
index 807aa36..147378a 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-vorbis.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-vorbis.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp8548336"></a><h2>Plugin Information</h2>
+<a name="idp8238480"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp6105152"></a><h2>Elements</h2>
+<a name="idp7512240"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-ximagesink.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-ximagesink.html
index e2f59ea..6320271 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-ximagesink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-ximagesink.html
@@ -29,7 +29,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp10545168"></a><h2>Plugin Information</h2>
+<a name="idp11860288"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -39,7 +39,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -57,7 +57,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp8938160"></a><h2>Elements</h2>
+<a name="idp8286576"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-plugin-xvimagesink.html b/docs/plugins/html/gst-plugins-base-plugins-plugin-xvimagesink.html
index ccf2833..8ba90d6 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-plugin-xvimagesink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-plugin-xvimagesink.html
@@ -28,7 +28,7 @@
 <td valign="top" align="right"></td>
 </tr></table></div>
 <div class="refsect1">
-<a name="idp12014832"></a><h2>Plugin Information</h2>
+<a name="idp8101072"></a><h2>Plugin Information</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -38,7 +38,7 @@
 </tr>
 <tr>
 <td><p><span class="term">version</span></p></td>
-<td>1.0.3</td>
+<td>1.0.4</td>
 </tr>
 <tr>
 <td><p><span class="term">run-time license</span></p></td>
@@ -56,7 +56,7 @@
 </table></div>
 </div>
 <div class="refsect1">
-<a name="idp5838368"></a><h2>Elements</h2>
+<a name="idp8684256"></a><h2>Elements</h2>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody><tr>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-subtitleoverlay.html b/docs/plugins/html/gst-plugins-base-plugins-subtitleoverlay.html
index f7e466a..5e21065 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-subtitleoverlay.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-subtitleoverlay.html
@@ -84,7 +84,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp7623520"></a><h3>Examples</h3>
+<a name="idp6024816"></a><h3>Examples</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -102,7 +102,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp7243632"></a><h3>Element Information</h3>
+<a name="idp5758256"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -125,7 +125,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11833296"></a><h3>Element Pads</h3>
+<a name="idp13413472"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-tcpclientsink.html b/docs/plugins/html/gst-plugins-base-plugins-tcpclientsink.html
index b92afe5..b481c16 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-tcpclientsink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-tcpclientsink.html
@@ -68,7 +68,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp12568544"></a><h3>Example launch line</h3>
+<a name="idp13819568"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -92,7 +92,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12571104"></a><h3>Element Information</h3>
+<a name="idp13822176"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -115,7 +115,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp13792816"></a><h3>Element Pads</h3>
+<a name="idp11795616"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-tcpclientsrc.html b/docs/plugins/html/gst-plugins-base-plugins-tcpclientsrc.html
index ab82635..b2ce73a 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-tcpclientsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-tcpclientsrc.html
@@ -69,7 +69,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp12951760"></a><h3>Example launch line</h3>
+<a name="idp11869344"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -93,7 +93,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12954368"></a><h3>Element Information</h3>
+<a name="idp11871952"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -116,7 +116,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12961776"></a><h3>Element Pads</h3>
+<a name="idp11832256"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-tcpserversink.html b/docs/plugins/html/gst-plugins-base-plugins-tcpserversink.html
index 1407d7c..f9ce3f2 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-tcpserversink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-tcpserversink.html
@@ -70,7 +70,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp13809600"></a><h3>Example launch line</h3>
+<a name="idp13537664"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -94,7 +94,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14201568"></a><h3>Element Information</h3>
+<a name="idp13540432"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -117,7 +117,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14208976"></a><h3>Element Pads</h3>
+<a name="idp13547840"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-tcpserversrc.html b/docs/plugins/html/gst-plugins-base-plugins-tcpserversrc.html
index 58c469d..6aba2f9 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-tcpserversrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-tcpserversrc.html
@@ -70,7 +70,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp14192016"></a><h3>Example launch line</h3>
+<a name="idp11779888"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -94,7 +94,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp11838848"></a><h3>Element Information</h3>
+<a name="idp11782656"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -117,7 +117,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp12555264"></a><h3>Element Pads</h3>
+<a name="idp13504656"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-textoverlay.html b/docs/plugins/html/gst-plugins-base-plugins-textoverlay.html
index 3a85369..b3f077a 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-textoverlay.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-textoverlay.html
@@ -85,7 +85,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14986800"></a><h3>Element Information</h3>
+<a name="idp14224192"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -108,7 +108,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14994208"></a><h3>Element Pads</h3>
+<a name="idp14230576"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-textrender.html b/docs/plugins/html/gst-plugins-base-plugins-textrender.html
index 314f870..905f722 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-textrender.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-textrender.html
@@ -70,7 +70,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp5715312"></a><h3>Element Information</h3>
+<a name="idp8261264"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -93,7 +93,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11875408"></a><h3>Element Pads</h3>
+<a name="idp13716992"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-theoradec.html b/docs/plugins/html/gst-plugins-base-plugins-theoradec.html
index b474c57..9bce12c 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-theoradec.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-theoradec.html
@@ -66,7 +66,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp10588560"></a><h3>Element Information</h3>
+<a name="idp11242944"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -89,7 +89,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14954064"></a><h3>Element Pads</h3>
+<a name="idp8487104"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-theoraenc.html b/docs/plugins/html/gst-plugins-base-plugins-theoraenc.html
index 635e794..ebba4fb 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-theoraenc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-theoraenc.html
@@ -94,7 +94,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14613472"></a><h3>Element Information</h3>
+<a name="idp14614016"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -117,7 +117,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14620928"></a><h3>Element Pads</h3>
+<a name="idp14621472"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-theoraparse.html b/docs/plugins/html/gst-plugins-base-plugins-theoraparse.html
index 24aac41..9f45888 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-theoraparse.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-theoraparse.html
@@ -65,7 +65,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp15148128"></a><h3>Element Information</h3>
+<a name="idp9686672"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -88,7 +88,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14801424"></a><h3>Element Pads</h3>
+<a name="idp11264560"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-timeoverlay.html b/docs/plugins/html/gst-plugins-base-plugins-timeoverlay.html
index 9135cd9..9f337ed 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-timeoverlay.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-timeoverlay.html
@@ -58,7 +58,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idm46032"></a><h3>Element Information</h3>
+<a name="idp11710272"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -81,7 +81,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp8450576"></a><h3>Element Pads</h3>
+<a name="idp8481360"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-uridecodebin.html b/docs/plugins/html/gst-plugins-base-plugins-uridecodebin.html
index 3b6c790..1d0d099 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-uridecodebin.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-uridecodebin.html
@@ -103,7 +103,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp15610640"></a><h3>Element Information</h3>
+<a name="idp14866688"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -126,7 +126,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp15618096"></a><h3>Element Pads</h3>
+<a name="idp14874144"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-videoconvert.html b/docs/plugins/html/gst-plugins-base-plugins-videoconvert.html
index 3d25d62..00464ec 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-videoconvert.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-videoconvert.html
@@ -70,7 +70,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp8423056"></a><h3>Example launch line</h3>
+<a name="idp6549584"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -88,7 +88,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp6299872"></a><h3>Element Information</h3>
+<a name="idp9752976"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -111,7 +111,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp10682592"></a><h3>Element Pads</h3>
+<a name="idp11524032"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-videorate.html b/docs/plugins/html/gst-plugins-base-plugins-videorate.html
index 0ef748f..379e525 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-videorate.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-videorate.html
@@ -115,7 +115,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp14411184"></a><h3>Example pipelines</h3>
+<a name="idp14555888"></a><h3>Example pipelines</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -149,7 +149,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14415552"></a><h3>Element Information</h3>
+<a name="idp14560304"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -172,7 +172,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14423008"></a><h3>Element Pads</h3>
+<a name="idp14567760"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-videoscale.html b/docs/plugins/html/gst-plugins-base-plugins-videoscale.html
index 1369a1b..f66d04c 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-videoscale.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-videoscale.html
@@ -84,7 +84,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp14435680"></a><h3>Example pipelines</h3>
+<a name="idp14360704"></a><h3>Example pipelines</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -120,7 +120,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14440080"></a><h3>Element Information</h3>
+<a name="idp14365104"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -143,7 +143,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14556992"></a><h3>Element Pads</h3>
+<a name="idp15303616"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-videotestsrc.html b/docs/plugins/html/gst-plugins-base-plugins-videotestsrc.html
index c0fd290..87079c6 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-videotestsrc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-videotestsrc.html
@@ -92,7 +92,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp15506208"></a><h3>Example launch line</h3>
+<a name="idp15387456"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -110,7 +110,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp15508864"></a><h3>Element Information</h3>
+<a name="idp15390112"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -133,7 +133,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp15572016"></a><h3>Element Pads</h3>
+<a name="idp15397568"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-volume.html b/docs/plugins/html/gst-plugins-base-plugins-volume.html
index ddc550d..8fc71b4 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-volume.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-volume.html
@@ -79,7 +79,7 @@
 <p>
 </p>
 <div class="refsect2">
-<a name="idp5470432"></a><h3>Example launch line</h3>
+<a name="idp5991520"></a><h3>Example launch line</h3>
 <div class="informalexample">
   <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
     <tbody>
@@ -99,7 +99,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp16144752"></a><h3>Element Information</h3>
+<a name="idp13554032"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -122,7 +122,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp15526800"></a><h3>Element Pads</h3>
+<a name="idp15293008"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-vorbisdec.html b/docs/plugins/html/gst-plugins-base-plugins-vorbisdec.html
index 47308b2..7a3206c 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-vorbisdec.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-vorbisdec.html
@@ -58,7 +58,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp15148816"></a><h3>Element Information</h3>
+<a name="idp5606240"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -81,7 +81,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11397120"></a><h3>Element Pads</h3>
+<a name="idp7284304"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-vorbisenc.html b/docs/plugins/html/gst-plugins-base-plugins-vorbisenc.html
index 4eb44ca..18536b1 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-vorbisenc.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-vorbisenc.html
@@ -79,7 +79,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp10219888"></a><h3>Element Information</h3>
+<a name="idp15201568"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -102,7 +102,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp16115360"></a><h3>Element Pads</h3>
+<a name="idp15208976"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-vorbisparse.html b/docs/plugins/html/gst-plugins-base-plugins-vorbisparse.html
index b970546..ab3429a 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-vorbisparse.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-vorbisparse.html
@@ -58,7 +58,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp7898704"></a><h3>Element Information</h3>
+<a name="idp7848400"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -81,7 +81,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp11465760"></a><h3>Element Pads</h3>
+<a name="idp7423872"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-vorbistag.html b/docs/plugins/html/gst-plugins-base-plugins-vorbistag.html
index c45c53e..a11f1ee 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-vorbistag.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-vorbistag.html
@@ -66,7 +66,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp12538576"></a><h3>Element Information</h3>
+<a name="idp7449184"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -89,7 +89,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp6430464"></a><h3>Element Pads</h3>
+<a name="idp13649200"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-ximagesink.html b/docs/plugins/html/gst-plugins-base-plugins-ximagesink.html
index cea613b..efecacc 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-ximagesink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-ximagesink.html
@@ -82,7 +82,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp16949392"></a><h3>Element Information</h3>
+<a name="idp15227152"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -105,7 +105,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp16550752"></a><h3>Element Pads</h3>
+<a name="idp15629216"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins-xvimagesink.html b/docs/plugins/html/gst-plugins-base-plugins-xvimagesink.html
index cf56a68..733d16a 100644
--- a/docs/plugins/html/gst-plugins-base-plugins-xvimagesink.html
+++ b/docs/plugins/html/gst-plugins-base-plugins-xvimagesink.html
@@ -92,7 +92,7 @@
 <div class="refsynopsisdiv">
 <h2>Synopsis</h2>
 <div class="refsect2">
-<a name="idp14535856"></a><h3>Element Information</h3>
+<a name="idp16457936"></a><h3>Element Information</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
@@ -115,7 +115,7 @@
 </div>
 <hr>
 <div class="refsect2">
-<a name="idp14543312"></a><h3>Element Pads</h3>
+<a name="idp16465392"></a><h3>Element Pads</h3>
 <div class="variablelist"><table border="0">
 <col align="left" valign="top">
 <tbody>
diff --git a/docs/plugins/html/gst-plugins-base-plugins.devhelp2 b/docs/plugins/html/gst-plugins-base-plugins.devhelp2
index fcbb889..207db62 100644
--- a/docs/plugins/html/gst-plugins-base-plugins.devhelp2
+++ b/docs/plugins/html/gst-plugins-base-plugins.devhelp2
@@ -79,13 +79,13 @@
     </sub>
   </chapters>
   <functions>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-adder.html#idp8307408"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-adder.html#idp8294048"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-adder.html#idp5281840"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-adder.html#idp8499952"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-adder.html#idp7178016"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-adder.html#idp20304"/>
     <keyword type="struct" name="struct GstAdder" link="gst-plugins-base-plugins-adder.html#GstAdder-struct"/>
     <keyword type="property" name="The &quot;caps&quot; property" link="gst-plugins-base-plugins-adder.html#GstAdder--caps"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-appsrc.html#idp6448768"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-appsrc.html#idp6456176"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-appsrc.html#idp7696336"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-appsrc.html#idp7703744"/>
     <keyword type="struct" name="struct GstAppSrc" link="gst-plugins-base-plugins-appsrc.html#GstAppSrc-struct"/>
     <keyword type="property" name="The &quot;block&quot; property" link="gst-plugins-base-plugins-appsrc.html#GstAppSrc--block"/>
     <keyword type="property" name="The &quot;caps&quot; property" link="gst-plugins-base-plugins-appsrc.html#GstAppSrc--caps"/>
@@ -103,8 +103,8 @@
     <keyword type="signal" name="The &quot;need-data&quot; signal" link="gst-plugins-base-plugins-appsrc.html#GstAppSrc-need-data"/>
     <keyword type="signal" name="The &quot;push-buffer&quot; signal" link="gst-plugins-base-plugins-appsrc.html#GstAppSrc-push-buffer"/>
     <keyword type="signal" name="The &quot;seek-data&quot; signal" link="gst-plugins-base-plugins-appsrc.html#GstAppSrc-seek-data"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-appsink.html#idp10838272"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-appsink.html#idp10845680"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-appsink.html#idp10054544"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-appsink.html#idp10061952"/>
     <keyword type="struct" name="struct GstAppSink" link="gst-plugins-base-plugins-appsink.html#GstAppSink-struct"/>
     <keyword type="property" name="The &quot;caps&quot; property" link="gst-plugins-base-plugins-appsink.html#GstAppSink--caps"/>
     <keyword type="property" name="The &quot;drop&quot; property" link="gst-plugins-base-plugins-appsink.html#GstAppSink--drop"/>
@@ -120,29 +120,29 @@
     <keyword type="signal" name="The &quot;pull-buffer-list&quot; signal" link="gst-plugins-base-plugins-appsink.html#GstAppSink-pull-buffer-list"/>
     <keyword type="signal" name="The &quot;new-sample&quot; signal" link="gst-plugins-base-plugins-appsink.html#GstAppSink-new-sample"/>
     <keyword type="signal" name="The &quot;pull-sample&quot; signal" link="gst-plugins-base-plugins-appsink.html#GstAppSink-pull-sample"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-alsasink.html#idp7992528"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-alsasink.html#idp7999984"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-alsasink.html#idp6666768"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-alsasink.html#idp6674224"/>
     <keyword type="struct" name="struct GstAlsaSink" link="gst-plugins-base-plugins-alsasink.html#GstAlsaSink-struct"/>
     <keyword type="property" name="The &quot;device&quot; property" link="gst-plugins-base-plugins-alsasink.html#GstAlsaSink--device"/>
     <keyword type="property" name="The &quot;device-name&quot; property" link="gst-plugins-base-plugins-alsasink.html#GstAlsaSink--device-name"/>
     <keyword type="property" name="The &quot;card-name&quot; property" link="gst-plugins-base-plugins-alsasink.html#GstAlsaSink--card-name"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-alsasrc.html#idp8149344"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-alsasrc.html#idp10711808"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-alsasrc.html#idp9291984"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-alsasrc.html#idp9214592"/>
     <keyword type="struct" name="struct GstAlsaSrc" link="gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc-struct"/>
     <keyword type="property" name="The &quot;device&quot; property" link="gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc--device"/>
     <keyword type="property" name="The &quot;device-name&quot; property" link="gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc--device-name"/>
     <keyword type="property" name="The &quot;card-name&quot; property" link="gst-plugins-base-plugins-alsasrc.html#GstAlsaSrc--card-name"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-audioconvert.html#idp7291968"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audioconvert.html#idp5710512"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audioconvert.html#idp7694512"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-audioconvert.html#idp8684096"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audioconvert.html#idp5543520"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audioconvert.html#idp10028432"/>
     <keyword type="struct" name="struct GstAudioConvert" link="gst-plugins-base-plugins-audioconvert.html#GstAudioConvert-struct"/>
     <keyword type="enum" name="enum GstAudioConvertDithering" link="gst-plugins-base-plugins-audioconvert.html#GstAudioConvertDithering"/>
     <keyword type="enum" name="enum GstAudioConvertNoiseShaping" link="gst-plugins-base-plugins-audioconvert.html#GstAudioConvertNoiseShaping"/>
     <keyword type="property" name="The &quot;dithering&quot; property" link="gst-plugins-base-plugins-audioconvert.html#GstAudioConvert--dithering"/>
     <keyword type="property" name="The &quot;noise-shaping&quot; property" link="gst-plugins-base-plugins-audioconvert.html#GstAudioConvert--noise-shaping"/>
-    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-audiorate.html#idp8595744"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audiorate.html#idp11214880"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audiorate.html#idp11222336"/>
+    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-audiorate.html#idp7868496"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audiorate.html#idp10491264"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audiorate.html#idp10498720"/>
     <keyword type="struct" name="struct GstAudioRate" link="gst-plugins-base-plugins-audiorate.html#GstAudioRate-struct"/>
     <keyword type="property" name="The &quot;add&quot; property" link="gst-plugins-base-plugins-audiorate.html#GstAudioRate--add"/>
     <keyword type="property" name="The &quot;drop&quot; property" link="gst-plugins-base-plugins-audiorate.html#GstAudioRate--drop"/>
@@ -151,15 +151,15 @@
     <keyword type="property" name="The &quot;silent&quot; property" link="gst-plugins-base-plugins-audiorate.html#GstAudioRate--silent"/>
     <keyword type="property" name="The &quot;tolerance&quot; property" link="gst-plugins-base-plugins-audiorate.html#GstAudioRate--tolerance"/>
     <keyword type="property" name="The &quot;skip-to-first&quot; property" link="gst-plugins-base-plugins-audiorate.html#GstAudioRate--skip-to-first"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-audioresample.html#idp7198704"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audioresample.html#idp5402592"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audioresample.html#idp7869872"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-audioresample.html#idp7077152"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audioresample.html#idp6196320"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audioresample.html#idp5887248"/>
     <keyword type="struct" name="struct GstAudioResample" link="gst-plugins-base-plugins-audioresample.html#GstAudioResample-struct"/>
     <keyword type="property" name="The &quot;filter-length&quot; property" link="gst-plugins-base-plugins-audioresample.html#GstAudioResample--filter-length"/>
     <keyword type="property" name="The &quot;quality&quot; property" link="gst-plugins-base-plugins-audioresample.html#GstAudioResample--quality"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-audiotestsrc.html#idp5750352"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audiotestsrc.html#idp5754224"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audiotestsrc.html#idp11031248"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-audiotestsrc.html#idp7113504"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-audiotestsrc.html#idp7117376"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-audiotestsrc.html#idp10575072"/>
     <keyword type="struct" name="struct GstAudioTestSrc" link="gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc-struct"/>
     <keyword type="enum" name="enum GstAudioTestSrcWave" link="gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrcWave"/>
     <keyword type="property" name="The &quot;freq&quot; property" link="gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--freq"/>
@@ -170,8 +170,8 @@
     <keyword type="property" name="The &quot;wave&quot; property" link="gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--wave"/>
     <keyword type="property" name="The &quot;can-activate-pull&quot; property" link="gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--can-activate-pull"/>
     <keyword type="property" name="The &quot;can-activate-push&quot; property" link="gst-plugins-base-plugins-audiotestsrc.html#GstAudioTestSrc--can-activate-push"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-cdparanoiasrc.html#idp8740128"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-cdparanoiasrc.html#idp11492512"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-cdparanoiasrc.html#idp10360336"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-cdparanoiasrc.html#idp7028064"/>
     <keyword type="struct" name="struct GstCdParanoiaSrc" link="gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc-struct"/>
     <keyword type="property" name="The &quot;generic-device&quot; property" link="gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--generic-device"/>
     <keyword type="property" name="The &quot;paranoia-mode&quot; property" link="gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--paranoia-mode"/>
@@ -180,12 +180,12 @@
     <keyword type="property" name="The &quot;cache-size&quot; property" link="gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc--cache-size"/>
     <keyword type="signal" name="The &quot;transport-error&quot; signal" link="gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc-transport-error"/>
     <keyword type="signal" name="The &quot;uncorrected-error&quot; signal" link="gst-plugins-base-plugins-cdparanoiasrc.html#GstCdParanoiaSrc-uncorrected-error"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-clockoverlay.html#idp10251344"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-clockoverlay.html#idp7045776"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-clockoverlay.html#idp6794320"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-clockoverlay.html#idp9927280"/>
     <keyword type="struct" name="struct GstClockOverlay" link="gst-plugins-base-plugins-clockoverlay.html#GstClockOverlay-struct"/>
     <keyword type="property" name="The &quot;time-format&quot; property" link="gst-plugins-base-plugins-clockoverlay.html#GstClockOverlay--time-format"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-decodebin.html#idp11606096"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-decodebin.html#idp11613616"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-decodebin.html#idp10717808"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-decodebin.html#idp10725328"/>
     <keyword type="struct" name="struct GstDecodeBin" link="gst-plugins-base-plugins-decodebin.html#GstDecodeBin-struct"/>
     <keyword type="property" name="The &quot;threaded&quot; property" link="gst-plugins-base-plugins-decodebin.html#GstDecodeBin--threaded"/>
     <keyword type="property" name="The &quot;sink-caps&quot; property" link="gst-plugins-base-plugins-decodebin.html#GstDecodeBin--sink-caps"/>
@@ -208,9 +208,9 @@
     <keyword type="signal" name="The &quot;autoplug-select&quot; signal" link="gst-plugins-base-plugins-decodebin.html#GstDecodeBin-autoplug-select"/>
     <keyword type="signal" name="The &quot;autoplug-sort&quot; signal" link="gst-plugins-base-plugins-decodebin.html#GstDecodeBin-autoplug-sort"/>
     <keyword type="signal" name="The &quot;drained&quot; signal" link="gst-plugins-base-plugins-decodebin.html#GstDecodeBin-drained"/>
-    <keyword type="" name="Features" link="gst-plugins-base-plugins-encodebin.html#idp9131200"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-encodebin.html#idp12272192"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-encodebin.html#idp12279600"/>
+    <keyword type="" name="Features" link="gst-plugins-base-plugins-encodebin.html#idp8725200"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-encodebin.html#idp11109680"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-encodebin.html#idp11117088"/>
     <keyword type="struct" name="GstEncodeBin" link="gst-plugins-base-plugins-encodebin.html#GstEncodeBin-struct"/>
     <keyword type="property" name="The &quot;audio-jitter-tolerance&quot; property" link="gst-plugins-base-plugins-encodebin.html#GstEncodeBin--audio-jitter-tolerance"/>
     <keyword type="property" name="The &quot;avoid-reencoding&quot; property" link="gst-plugins-base-plugins-encodebin.html#GstEncodeBin--avoid-reencoding"/>
@@ -220,35 +220,35 @@
     <keyword type="property" name="The &quot;queue-time-max&quot; property" link="gst-plugins-base-plugins-encodebin.html#GstEncodeBin--queue-time-max"/>
     <keyword type="property" name="The &quot;flags&quot; property" link="gst-plugins-base-plugins-encodebin.html#GstEncodeBin--flags"/>
     <keyword type="signal" name="The &quot;request-pad&quot; signal" link="gst-plugins-base-plugins-encodebin.html#GstEncodeBin-request-pad"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-videoconvert.html#idp8423056"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videoconvert.html#idp6299872"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videoconvert.html#idp10682592"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-videoconvert.html#idp6549584"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videoconvert.html#idp9752976"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videoconvert.html#idp11524032"/>
     <keyword type="struct" name="struct GstVideoConvert" link="gst-plugins-base-plugins-videoconvert.html#GstVideoConvert-struct"/>
     <keyword type="property" name="The &quot;dither&quot; property" link="gst-plugins-base-plugins-videoconvert.html#GstVideoConvert--dither"/>
-    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-giosink.html#idp5962672"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giosink.html#idp12120560"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giosink.html#idp12128080"/>
+    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-giosink.html#idp11507072"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giosink.html#idp8591616"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giosink.html#idp8599136"/>
     <keyword type="struct" name="struct GstGioSink" link="gst-plugins-base-plugins-giosink.html#GstGioSink-struct"/>
     <keyword type="property" name="The &quot;location&quot; property" link="gst-plugins-base-plugins-giosink.html#GstGioSink--location"/>
     <keyword type="property" name="The &quot;file&quot; property" link="gst-plugins-base-plugins-giosink.html#GstGioSink--file"/>
-    <keyword type="" name="Example launch lines" link="gst-plugins-base-plugins-giosrc.html#idp12361776"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giosrc.html#idp12366624"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giosrc.html#idp12374144"/>
+    <keyword type="" name="Example launch lines" link="gst-plugins-base-plugins-giosrc.html#idp11213344"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giosrc.html#idp11218192"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giosrc.html#idp11722256"/>
     <keyword type="struct" name="struct GstGioSrc" link="gst-plugins-base-plugins-giosrc.html#GstGioSrc-struct"/>
     <keyword type="property" name="The &quot;location&quot; property" link="gst-plugins-base-plugins-giosrc.html#GstGioSrc--location"/>
     <keyword type="property" name="The &quot;file&quot; property" link="gst-plugins-base-plugins-giosrc.html#GstGioSrc--file"/>
-    <keyword type="" name="Example code" link="gst-plugins-base-plugins-giostreamsink.html#idp10719136"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giostreamsink.html#idp10723600"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giostreamsink.html#idp10455296"/>
+    <keyword type="" name="Example code" link="gst-plugins-base-plugins-giostreamsink.html#idp11462256"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giostreamsink.html#idp9941152"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giostreamsink.html#idp11385696"/>
     <keyword type="struct" name="struct GstGioStreamSink" link="gst-plugins-base-plugins-giostreamsink.html#GstGioStreamSink-struct"/>
     <keyword type="property" name="The &quot;stream&quot; property" link="gst-plugins-base-plugins-giostreamsink.html#GstGioStreamSink--stream"/>
-    <keyword type="" name="Example code" link="gst-plugins-base-plugins-giostreamsrc.html#idp12198080"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giostreamsrc.html#idp9266512"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giostreamsrc.html#idp12408240"/>
+    <keyword type="" name="Example code" link="gst-plugins-base-plugins-giostreamsrc.html#idp6830480"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-giostreamsrc.html#idp6834880"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-giostreamsrc.html#idp11666048"/>
     <keyword type="struct" name="struct GstGioStreamSrc" link="gst-plugins-base-plugins-giostreamsrc.html#GstGioStreamSrc-struct"/>
     <keyword type="property" name="The &quot;stream&quot; property" link="gst-plugins-base-plugins-giostreamsrc.html#GstGioStreamSrc--stream"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-multifdsink.html#idp12665776"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-multifdsink.html#idp12673184"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-multifdsink.html#idp12094000"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-multifdsink.html#idp12101408"/>
     <keyword type="struct" name="struct GstMultiFdSink" link="gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-struct"/>
     <keyword type="enum" name="enum GstRecoverPolicy" link="gst-plugins-base-plugins-multifdsink.html#GstRecoverPolicy"/>
     <keyword type="enum" name="enum GstSyncMethod" link="gst-plugins-base-plugins-multifdsink.html#GstSyncMethod"/>
@@ -286,8 +286,8 @@
     <keyword type="signal" name="The &quot;add-full&quot; signal" link="gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-add-full"/>
     <keyword type="signal" name="The &quot;remove-flush&quot; signal" link="gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-remove-flush"/>
     <keyword type="signal" name="The &quot;client-handle-removed&quot; signal" link="gst-plugins-base-plugins-multifdsink.html#GstMultiFdSink-client-handle-removed"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-multisocketsink.html#idp13575616"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-multisocketsink.html#idp13583184"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-multisocketsink.html#idp9091360"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-multisocketsink.html#idp9098928"/>
     <keyword type="struct" name="struct GstMultiSocketSink" link="gst-plugins-base-plugins-multisocketsink.html#GstMultiSocketSink-struct"/>
     <keyword type="enum" name="enum GstRecoverPolicy" link="gst-plugins-base-plugins-multisocketsink.html#GstRecoverPolicy"/>
     <keyword type="enum" name="enum GstSyncMethod" link="gst-plugins-base-plugins-multisocketsink.html#GstSyncMethod"/>
@@ -322,26 +322,26 @@
     <keyword type="signal" name="The &quot;remove&quot; signal" link="gst-plugins-base-plugins-multisocketsink.html#GstMultiSocketSink-remove"/>
     <keyword type="signal" name="The &quot;remove-flush&quot; signal" link="gst-plugins-base-plugins-multisocketsink.html#GstMultiSocketSink-remove-flush"/>
     <keyword type="signal" name="The &quot;client-handle-removed&quot; signal" link="gst-plugins-base-plugins-multisocketsink.html#GstMultiSocketSink-client-handle-removed"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-oggdemux.html#idp11142208"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-oggdemux.html#idp8953376"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-oggdemux.html#idp11693056"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-oggdemux.html#idp7178576"/>
     <keyword type="struct" name="struct GstOggDemux" link="gst-plugins-base-plugins-oggdemux.html#GstOggDemux-struct"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-oggmux.html#idp10184288"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-oggmux.html#idp8767664"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-oggmux.html#idp12499152"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-oggmux.html#idp12492736"/>
     <keyword type="struct" name="struct GstOggMux" link="gst-plugins-base-plugins-oggmux.html#GstOggMux-struct"/>
     <keyword type="property" name="The &quot;max-delay&quot; property" link="gst-plugins-base-plugins-oggmux.html#GstOggMux--max-delay"/>
     <keyword type="property" name="The &quot;max-page-delay&quot; property" link="gst-plugins-base-plugins-oggmux.html#GstOggMux--max-page-delay"/>
     <keyword type="property" name="The &quot;max-tolerance&quot; property" link="gst-plugins-base-plugins-oggmux.html#GstOggMux--max-tolerance"/>
     <keyword type="property" name="The &quot;skeleton&quot; property" link="gst-plugins-base-plugins-oggmux.html#GstOggMux--skeleton"/>
-    <keyword type="" name="Usage" link="gst-plugins-base-plugins-playbin.html#idp14000464"/>
-    <keyword type="" name="Advanced Usage: specifying the audio and video sink" link="gst-plugins-base-plugins-playbin.html#idp14016576"/>
-    <keyword type="" name="Retrieving Tags and Other Meta Data" link="gst-plugins-base-plugins-playbin.html#idp14027136"/>
-    <keyword type="" name="Buffering" link="gst-plugins-base-plugins-playbin.html#idp14029248"/>
-    <keyword type="" name="Embedding the video window in your application" link="gst-plugins-base-plugins-playbin.html#idp14032016"/>
-    <keyword type="" name="Specifying which CD/DVD device to use" link="gst-plugins-base-plugins-playbin.html#idp14033984"/>
-    <keyword type="" name="Handling redirects" link="gst-plugins-base-plugins-playbin.html#idp14035552"/>
-    <keyword type="" name="Examples" link="gst-plugins-base-plugins-playbin.html#idp14037232"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-playbin.html#idp14042128"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-playbin.html#idp14049584"/>
+    <keyword type="" name="Usage" link="gst-plugins-base-plugins-playbin.html#idp13152768"/>
+    <keyword type="" name="Advanced Usage: specifying the audio and video sink" link="gst-plugins-base-plugins-playbin.html#idp13168880"/>
+    <keyword type="" name="Retrieving Tags and Other Meta Data" link="gst-plugins-base-plugins-playbin.html#idp13179440"/>
+    <keyword type="" name="Buffering" link="gst-plugins-base-plugins-playbin.html#idp13181552"/>
+    <keyword type="" name="Embedding the video window in your application" link="gst-plugins-base-plugins-playbin.html#idp13184320"/>
+    <keyword type="" name="Specifying which CD/DVD device to use" link="gst-plugins-base-plugins-playbin.html#idp13186288"/>
+    <keyword type="" name="Handling redirects" link="gst-plugins-base-plugins-playbin.html#idp13187856"/>
+    <keyword type="" name="Examples" link="gst-plugins-base-plugins-playbin.html#idp13189536"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-playbin.html#idp13194432"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-playbin.html#idp13201888"/>
     <keyword type="struct" name="struct GstPlayBin" link="gst-plugins-base-plugins-playbin.html#GstPlayBin-struct"/>
     <keyword type="enum" name="enum GstPlayFlags" link="gst-plugins-base-plugins-playbin.html#GstPlayFlags"/>
     <keyword type="property" name="The &quot;audio-sink&quot; property" link="gst-plugins-base-plugins-playbin.html#GstPlayBin--audio-sink"/>
@@ -387,44 +387,44 @@
     <keyword type="signal" name="The &quot;text-tags-changed&quot; signal" link="gst-plugins-base-plugins-playbin.html#GstPlayBin-text-tags-changed"/>
     <keyword type="signal" name="The &quot;video-changed&quot; signal" link="gst-plugins-base-plugins-playbin.html#GstPlayBin-video-changed"/>
     <keyword type="signal" name="The &quot;video-tags-changed&quot; signal" link="gst-plugins-base-plugins-playbin.html#GstPlayBin-video-tags-changed"/>
-    <keyword type="" name="Examples" link="gst-plugins-base-plugins-subtitleoverlay.html#idp7623520"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-subtitleoverlay.html#idp7243632"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-subtitleoverlay.html#idp11833296"/>
+    <keyword type="" name="Examples" link="gst-plugins-base-plugins-subtitleoverlay.html#idp6024816"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-subtitleoverlay.html#idp5758256"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-subtitleoverlay.html#idp13413472"/>
     <keyword type="struct" name="struct GstSubtitleOverlay" link="gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay-struct"/>
     <keyword type="property" name="The &quot;font-desc&quot; property" link="gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay--font-desc"/>
     <keyword type="property" name="The &quot;silent&quot; property" link="gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay--silent"/>
     <keyword type="property" name="The &quot;subtitle-encoding&quot; property" link="gst-plugins-base-plugins-subtitleoverlay.html#GstSubtitleOverlay--subtitle-encoding"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpclientsrc.html#idp12951760"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpclientsrc.html#idp12954368"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpclientsrc.html#idp12961776"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpclientsrc.html#idp11869344"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpclientsrc.html#idp11871952"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpclientsrc.html#idp11832256"/>
     <keyword type="struct" name="struct GstTCPClientSrc" link="gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc-struct"/>
     <keyword type="property" name="The &quot;host&quot; property" link="gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc--host"/>
     <keyword type="property" name="The &quot;port&quot; property" link="gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc--port"/>
     <keyword type="property" name="The &quot;protocol&quot; property" link="gst-plugins-base-plugins-tcpclientsrc.html#GstTCPClientSrc--protocol"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpclientsink.html#idp12568544"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpclientsink.html#idp12571104"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpclientsink.html#idp13792816"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpclientsink.html#idp13819568"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpclientsink.html#idp13822176"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpclientsink.html#idp11795616"/>
     <keyword type="struct" name="struct GstTCPClientSink" link="gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink-struct"/>
     <keyword type="property" name="The &quot;host&quot; property" link="gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink--host"/>
     <keyword type="property" name="The &quot;port&quot; property" link="gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink--port"/>
     <keyword type="property" name="The &quot;protocol&quot; property" link="gst-plugins-base-plugins-tcpclientsink.html#GstTCPClientSink--protocol"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpserversrc.html#idp14192016"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpserversrc.html#idp11838848"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpserversrc.html#idp12555264"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpserversrc.html#idp11779888"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpserversrc.html#idp11782656"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpserversrc.html#idp13504656"/>
     <keyword type="struct" name="struct GstTCPServerSrc" link="gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc-struct"/>
     <keyword type="property" name="The &quot;host&quot; property" link="gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--host"/>
     <keyword type="property" name="The &quot;port&quot; property" link="gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--port"/>
     <keyword type="property" name="The &quot;protocol&quot; property" link="gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--protocol"/>
     <keyword type="property" name="The &quot;current-port&quot; property" link="gst-plugins-base-plugins-tcpserversrc.html#GstTCPServerSrc--current-port"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpserversink.html#idp13809600"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpserversink.html#idp14201568"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpserversink.html#idp14208976"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-tcpserversink.html#idp13537664"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-tcpserversink.html#idp13540432"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-tcpserversink.html#idp13547840"/>
     <keyword type="struct" name="struct GstTCPServerSink" link="gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink-struct"/>
     <keyword type="property" name="The &quot;host&quot; property" link="gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink--host"/>
     <keyword type="property" name="The &quot;port&quot; property" link="gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink--port"/>
     <keyword type="property" name="The &quot;current-port&quot; property" link="gst-plugins-base-plugins-tcpserversink.html#GstTCPServerSink--current-port"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-textoverlay.html#idp14986800"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-textoverlay.html#idp14994208"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-textoverlay.html#idp14224192"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-textoverlay.html#idp14230576"/>
     <keyword type="struct" name="struct GstTextOverlay" link="gst-plugins-base-plugins-textoverlay.html#GstTextOverlay-struct"/>
     <keyword type="property" name="The &quot;deltax&quot; property" link="gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--deltax"/>
     <keyword type="property" name="The &quot;deltay&quot; property" link="gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--deltay"/>
@@ -446,8 +446,8 @@
     <keyword type="property" name="The &quot;color&quot; property" link="gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--color"/>
     <keyword type="property" name="The &quot;xpos&quot; property" link="gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--xpos"/>
     <keyword type="property" name="The &quot;ypos&quot; property" link="gst-plugins-base-plugins-textoverlay.html#GstTextOverlay--ypos"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-textrender.html#idp5715312"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-textrender.html#idp11875408"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-textrender.html#idp8261264"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-textrender.html#idp13716992"/>
     <keyword type="struct" name="struct GstTextRender" link="gst-plugins-base-plugins-textrender.html#GstTextRender-struct"/>
     <keyword type="property" name="The &quot;font-desc&quot; property" link="gst-plugins-base-plugins-textrender.html#GstTextRender--font-desc"/>
     <keyword type="property" name="The &quot;halignment&quot; property" link="gst-plugins-base-plugins-textrender.html#GstTextRender--halignment"/>
@@ -455,12 +455,12 @@
     <keyword type="property" name="The &quot;valignment&quot; property" link="gst-plugins-base-plugins-textrender.html#GstTextRender--valignment"/>
     <keyword type="property" name="The &quot;xpad&quot; property" link="gst-plugins-base-plugins-textrender.html#GstTextRender--xpad"/>
     <keyword type="property" name="The &quot;ypad&quot; property" link="gst-plugins-base-plugins-textrender.html#GstTextRender--ypad"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-theoradec.html#idp10588560"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-theoradec.html#idp14954064"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-theoradec.html#idp11242944"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-theoradec.html#idp8487104"/>
     <keyword type="struct" name="struct GstTheoraDec" link="gst-plugins-base-plugins-theoradec.html#GstTheoraDec-struct"/>
     <keyword type="property" name="The &quot;crop&quot; property" link="gst-plugins-base-plugins-theoradec.html#GstTheoraDec--crop"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-theoraenc.html#idp14613472"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-theoraenc.html#idp14620928"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-theoraenc.html#idp14614016"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-theoraenc.html#idp14621472"/>
     <keyword type="struct" name="struct GstTheoraEnc" link="gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc-struct"/>
     <keyword type="property" name="The &quot;bitrate&quot; property" link="gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--bitrate"/>
     <keyword type="property" name="The &quot;border&quot; property" link="gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--border"/>
@@ -483,15 +483,15 @@
     <keyword type="property" name="The &quot;multipass-cache-file&quot; property" link="gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--multipass-cache-file"/>
     <keyword type="property" name="The &quot;multipass-mode&quot; property" link="gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--multipass-mode"/>
     <keyword type="property" name="The &quot;dup-on-gap&quot; property" link="gst-plugins-base-plugins-theoraenc.html#GstTheoraEnc--dup-on-gap"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-theoraparse.html#idp15148128"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-theoraparse.html#idp14801424"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-theoraparse.html#idp9686672"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-theoraparse.html#idp11264560"/>
     <keyword type="struct" name="struct GstTheoraParse" link="gst-plugins-base-plugins-theoraparse.html#GstTheoraParse-struct"/>
     <keyword type="property" name="The &quot;synchronization-points&quot; property" link="gst-plugins-base-plugins-theoraparse.html#GstTheoraParse--synchronization-points"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-timeoverlay.html#idm46032"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-timeoverlay.html#idp8450576"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-timeoverlay.html#idp11710272"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-timeoverlay.html#idp8481360"/>
     <keyword type="struct" name="struct GstTimeOverlay" link="gst-plugins-base-plugins-timeoverlay.html#GstTimeOverlay-struct"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-uridecodebin.html#idp15610640"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-uridecodebin.html#idp15618096"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-uridecodebin.html#idp14866688"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-uridecodebin.html#idp14874144"/>
     <keyword type="struct" name="struct GstURIDecodeBin" link="gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-struct"/>
     <keyword type="enum" name="enum GstAutoplugSelectResult" link="gst-plugins-base-plugins-uridecodebin.html#GstAutoplugSelectResult"/>
     <keyword type="property" name="The &quot;uri&quot; property" link="gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin--uri"/>
@@ -512,9 +512,9 @@
     <keyword type="signal" name="The &quot;drained&quot; signal" link="gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-drained"/>
     <keyword type="signal" name="The &quot;autoplug-sort&quot; signal" link="gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-autoplug-sort"/>
     <keyword type="signal" name="The &quot;source-setup&quot; signal" link="gst-plugins-base-plugins-uridecodebin.html#GstURIDecodeBin-source-setup"/>
-    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-videorate.html#idp14411184"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videorate.html#idp14415552"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videorate.html#idp14423008"/>
+    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-videorate.html#idp14555888"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videorate.html#idp14560304"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videorate.html#idp14567760"/>
     <keyword type="struct" name="struct GstVideoRate" link="gst-plugins-base-plugins-videorate.html#GstVideoRate-struct"/>
     <keyword type="property" name="The &quot;drop&quot; property" link="gst-plugins-base-plugins-videorate.html#GstVideoRate--drop"/>
     <keyword type="property" name="The &quot;duplicate&quot; property" link="gst-plugins-base-plugins-videorate.html#GstVideoRate--duplicate"/>
@@ -526,9 +526,9 @@
     <keyword type="property" name="The &quot;average-period&quot; property" link="gst-plugins-base-plugins-videorate.html#GstVideoRate--average-period"/>
     <keyword type="property" name="The &quot;drop-only&quot; property" link="gst-plugins-base-plugins-videorate.html#GstVideoRate--drop-only"/>
     <keyword type="property" name="The &quot;max-rate&quot; property" link="gst-plugins-base-plugins-videorate.html#GstVideoRate--max-rate"/>
-    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-videoscale.html#idp14435680"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videoscale.html#idp14440080"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videoscale.html#idp14556992"/>
+    <keyword type="" name="Example pipelines" link="gst-plugins-base-plugins-videoscale.html#idp14360704"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videoscale.html#idp14365104"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videoscale.html#idp15303616"/>
     <keyword type="struct" name="struct GstVideoScale" link="gst-plugins-base-plugins-videoscale.html#GstVideoScale-struct"/>
     <keyword type="enum" name="enum GstVideoScaleMethod" link="gst-plugins-base-plugins-videoscale.html#GstVideoScaleMethod"/>
     <keyword type="property" name="The &quot;method&quot; property" link="gst-plugins-base-plugins-videoscale.html#GstVideoScale--method"/>
@@ -537,9 +537,9 @@
     <keyword type="property" name="The &quot;envelope&quot; property" link="gst-plugins-base-plugins-videoscale.html#GstVideoScale--envelope"/>
     <keyword type="property" name="The &quot;sharpen&quot; property" link="gst-plugins-base-plugins-videoscale.html#GstVideoScale--sharpen"/>
     <keyword type="property" name="The &quot;sharpness&quot; property" link="gst-plugins-base-plugins-videoscale.html#GstVideoScale--sharpness"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-videotestsrc.html#idp15506208"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videotestsrc.html#idp15508864"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videotestsrc.html#idp15572016"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-videotestsrc.html#idp15387456"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-videotestsrc.html#idp15390112"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-videotestsrc.html#idp15397568"/>
     <keyword type="struct" name="struct GstVideoTestSrc" link="gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc-struct"/>
     <keyword type="enum" name="enum GstVideoTestSrcPattern" link="gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrcPattern"/>
     <keyword type="property" name="The &quot;pattern&quot; property" link="gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--pattern"/>
@@ -562,17 +562,17 @@
     <keyword type="property" name="The &quot;background-color&quot; property" link="gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--background-color"/>
     <keyword type="property" name="The &quot;foreground-color&quot; property" link="gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--foreground-color"/>
     <keyword type="property" name="The &quot;horizontal-speed&quot; property" link="gst-plugins-base-plugins-videotestsrc.html#GstVideoTestSrc--horizontal-speed"/>
-    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-volume.html#idp5470432"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-volume.html#idp16144752"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-volume.html#idp15526800"/>
+    <keyword type="" name="Example launch line" link="gst-plugins-base-plugins-volume.html#idp5991520"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-volume.html#idp13554032"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-volume.html#idp15293008"/>
     <keyword type="struct" name="struct GstVolume" link="gst-plugins-base-plugins-volume.html#GstVolume-struct"/>
     <keyword type="property" name="The &quot;mute&quot; property" link="gst-plugins-base-plugins-volume.html#GstVolume--mute"/>
     <keyword type="property" name="The &quot;volume&quot; property" link="gst-plugins-base-plugins-volume.html#GstVolume--volume"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbisdec.html#idp15148816"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbisdec.html#idp11397120"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbisdec.html#idp5606240"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbisdec.html#idp7284304"/>
     <keyword type="struct" name="struct GstVorbisDec" link="gst-plugins-base-plugins-vorbisdec.html#GstVorbisDec-struct"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbisenc.html#idp10219888"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbisenc.html#idp16115360"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbisenc.html#idp15201568"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbisenc.html#idp15208976"/>
     <keyword type="struct" name="struct GstVorbisEnc" link="gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc-struct"/>
     <keyword type="property" name="The &quot;bitrate&quot; property" link="gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--bitrate"/>
     <keyword type="property" name="The &quot;last-message&quot; property" link="gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--last-message"/>
@@ -580,14 +580,14 @@
     <keyword type="property" name="The &quot;max-bitrate&quot; property" link="gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--max-bitrate"/>
     <keyword type="property" name="The &quot;min-bitrate&quot; property" link="gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--min-bitrate"/>
     <keyword type="property" name="The &quot;quality&quot; property" link="gst-plugins-base-plugins-vorbisenc.html#GstVorbisEnc--quality"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbisparse.html#idp7898704"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbisparse.html#idp11465760"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbisparse.html#idp7848400"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbisparse.html#idp7423872"/>
     <keyword type="struct" name="struct GstVorbisParse" link="gst-plugins-base-plugins-vorbisparse.html#GstVorbisParse-struct"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbistag.html#idp12538576"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbistag.html#idp6430464"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-vorbistag.html#idp7449184"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-vorbistag.html#idp13649200"/>
     <keyword type="struct" name="struct GstVorbisTag" link="gst-plugins-base-plugins-vorbistag.html#GstVorbisTag-struct"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-ximagesink.html#idp16949392"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-ximagesink.html#idp16550752"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-ximagesink.html#idp15227152"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-ximagesink.html#idp15629216"/>
     <keyword type="struct" name="struct GstXImageSink" link="gst-plugins-base-plugins-ximagesink.html#GstXImageSink-struct"/>
     <keyword type="property" name="The &quot;display&quot; property" link="gst-plugins-base-plugins-ximagesink.html#GstXImageSink--display"/>
     <keyword type="property" name="The &quot;pixel-aspect-ratio&quot; property" link="gst-plugins-base-plugins-ximagesink.html#GstXImageSink--pixel-aspect-ratio"/>
@@ -597,8 +597,8 @@
     <keyword type="property" name="The &quot;handle-expose&quot; property" link="gst-plugins-base-plugins-ximagesink.html#GstXImageSink--handle-expose"/>
     <keyword type="property" name="The &quot;window-height&quot; property" link="gst-plugins-base-plugins-ximagesink.html#GstXImageSink--window-height"/>
     <keyword type="property" name="The &quot;window-width&quot; property" link="gst-plugins-base-plugins-ximagesink.html#GstXImageSink--window-width"/>
-    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-xvimagesink.html#idp14535856"/>
-    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-xvimagesink.html#idp14543312"/>
+    <keyword type="" name="Element Information" link="gst-plugins-base-plugins-xvimagesink.html#idp16457936"/>
+    <keyword type="" name="Element Pads" link="gst-plugins-base-plugins-xvimagesink.html#idp16465392"/>
     <keyword type="struct" name="struct GstXvImageSink" link="gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink-struct"/>
     <keyword type="property" name="The &quot;brightness&quot; property" link="gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--brightness"/>
     <keyword type="property" name="The &quot;contrast&quot; property" link="gst-plugins-base-plugins-xvimagesink.html#GstXvImageSink--contrast"/>
diff --git a/docs/plugins/html/index.html b/docs/plugins/html/index.html
index 0effaef..6557b06 100644
--- a/docs/plugins/html/index.html
+++ b/docs/plugins/html/index.html
@@ -15,7 +15,7 @@
 <div>
 <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GStreamer Base Plugins 1.0 Plugins Reference Manual</p></th></tr></table></div>
 <div><p class="releaseinfo">
-      for GStreamer Base Plugins 1.0 (1.0.3)
+      for GStreamer Base Plugins 1.0 (1.0.4)
       The latest version of this documentation can be found on-line at
       <a class="ulink" href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base/html/" target="_top">http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base/html/</a>.
     </p></div>
diff --git a/docs/plugins/inspect/plugin-adder.xml b/docs/plugins/inspect/plugin-adder.xml
index 65518ae..7c99175 100644
--- a/docs/plugins/inspect/plugin-adder.xml
+++ b/docs/plugins/inspect/plugin-adder.xml
@@ -3,7 +3,7 @@
   <description>Adds multiple streams</description>
   <filename>../../gst/adder/.libs/libgstadder.so</filename>
   <basename>libgstadder.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-alsa.xml b/docs/plugins/inspect/plugin-alsa.xml
index 04635c2..1e8aa7c 100644
--- a/docs/plugins/inspect/plugin-alsa.xml
+++ b/docs/plugins/inspect/plugin-alsa.xml
@@ -3,7 +3,7 @@
   <description>ALSA plugin library</description>
   <filename>../../ext/alsa/.libs/libgstalsa.so</filename>
   <basename>libgstalsa.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-app.xml b/docs/plugins/inspect/plugin-app.xml
index 8c9fc68..636994b 100644
--- a/docs/plugins/inspect/plugin-app.xml
+++ b/docs/plugins/inspect/plugin-app.xml
@@ -3,7 +3,7 @@
   <description>Elements used to communicate with applications</description>
   <filename>../../gst/app/.libs/libgstapp.so</filename>
   <basename>libgstapp.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-audioconvert.xml b/docs/plugins/inspect/plugin-audioconvert.xml
index 81ecab7..481592a 100644
--- a/docs/plugins/inspect/plugin-audioconvert.xml
+++ b/docs/plugins/inspect/plugin-audioconvert.xml
@@ -3,7 +3,7 @@
   <description>Convert audio to different formats</description>
   <filename>../../gst/audioconvert/.libs/libgstaudioconvert.so</filename>
   <basename>libgstaudioconvert.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-audiorate.xml b/docs/plugins/inspect/plugin-audiorate.xml
index c2e7759..4e18aed 100644
--- a/docs/plugins/inspect/plugin-audiorate.xml
+++ b/docs/plugins/inspect/plugin-audiorate.xml
@@ -3,7 +3,7 @@
   <description>Adjusts audio frames</description>
   <filename>../../gst/audiorate/.libs/libgstaudiorate.so</filename>
   <basename>libgstaudiorate.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-audioresample.xml b/docs/plugins/inspect/plugin-audioresample.xml
index 2949bed..628312b 100644
--- a/docs/plugins/inspect/plugin-audioresample.xml
+++ b/docs/plugins/inspect/plugin-audioresample.xml
@@ -3,7 +3,7 @@
   <description>Resamples audio</description>
   <filename>../../gst/audioresample/.libs/libgstaudioresample.so</filename>
   <basename>libgstaudioresample.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-audiotestsrc.xml b/docs/plugins/inspect/plugin-audiotestsrc.xml
index 0f0dd5d..f31515d 100644
--- a/docs/plugins/inspect/plugin-audiotestsrc.xml
+++ b/docs/plugins/inspect/plugin-audiotestsrc.xml
@@ -3,7 +3,7 @@
   <description>Creates audio test signals of given frequency and volume</description>
   <filename>../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so</filename>
   <basename>libgstaudiotestsrc.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-cdparanoia.xml b/docs/plugins/inspect/plugin-cdparanoia.xml
index f9cbd20..5ad6373 100644
--- a/docs/plugins/inspect/plugin-cdparanoia.xml
+++ b/docs/plugins/inspect/plugin-cdparanoia.xml
@@ -3,7 +3,7 @@
   <description>Read audio from CD in paranoid mode</description>
   <filename>../../ext/cdparanoia/.libs/libgstcdparanoia.so</filename>
   <basename>libgstcdparanoia.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-encoding.xml b/docs/plugins/inspect/plugin-encoding.xml
index 1ade9b3..c1e2894 100644
--- a/docs/plugins/inspect/plugin-encoding.xml
+++ b/docs/plugins/inspect/plugin-encoding.xml
@@ -3,7 +3,7 @@
   <description>various encoding-related elements</description>
   <filename>../../gst/encoding/.libs/libgstencodebin.so</filename>
   <basename>libgstencodebin.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-gio.xml b/docs/plugins/inspect/plugin-gio.xml
index e40975e..8935f3e 100644
--- a/docs/plugins/inspect/plugin-gio.xml
+++ b/docs/plugins/inspect/plugin-gio.xml
@@ -3,7 +3,7 @@
   <description>GIO elements</description>
   <filename>../../gst/gio/.libs/libgstgio.so</filename>
   <basename>libgstgio.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-ivorbisdec.xml b/docs/plugins/inspect/plugin-ivorbisdec.xml
index e6161ab..929b6e3 100644
--- a/docs/plugins/inspect/plugin-ivorbisdec.xml
+++ b/docs/plugins/inspect/plugin-ivorbisdec.xml
@@ -3,7 +3,7 @@
   <description>Vorbis Tremor decoder</description>
   <filename>../../ext/vorbis/.libs/libgstivorbisdec.so</filename>
   <basename>libgstivorbisdec.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-libvisual.xml b/docs/plugins/inspect/plugin-libvisual.xml
index 0de426c..21a463f 100644
--- a/docs/plugins/inspect/plugin-libvisual.xml
+++ b/docs/plugins/inspect/plugin-libvisual.xml
@@ -3,7 +3,7 @@
   <description>libvisual visualization plugins</description>
   <filename>../../ext/libvisual/.libs/libgstlibvisual.so</filename>
   <basename>libgstlibvisual.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-ogg.xml b/docs/plugins/inspect/plugin-ogg.xml
index 2898ee4..987a399 100644
--- a/docs/plugins/inspect/plugin-ogg.xml
+++ b/docs/plugins/inspect/plugin-ogg.xml
@@ -3,7 +3,7 @@
   <description>ogg stream manipulation (info about ogg: http://xiph.org)</description>
   <filename>../../ext/ogg/.libs/libgstogg.so</filename>
   <basename>libgstogg.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-pango.xml b/docs/plugins/inspect/plugin-pango.xml
index 3d059b2..dd705d9 100644
--- a/docs/plugins/inspect/plugin-pango.xml
+++ b/docs/plugins/inspect/plugin-pango.xml
@@ -3,7 +3,7 @@
   <description>Pango-based text rendering and overlay</description>
   <filename>../../ext/pango/.libs/libgstpango.so</filename>
   <basename>libgstpango.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-playback.xml b/docs/plugins/inspect/plugin-playback.xml
index ad9e37c..6f0ecb8 100644
--- a/docs/plugins/inspect/plugin-playback.xml
+++ b/docs/plugins/inspect/plugin-playback.xml
@@ -3,7 +3,7 @@
   <description>various playback elements</description>
   <filename>../../gst/playback/.libs/libgstplayback.so</filename>
   <basename>libgstplayback.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-subparse.xml b/docs/plugins/inspect/plugin-subparse.xml
index fb0e975..c70fa3c 100644
--- a/docs/plugins/inspect/plugin-subparse.xml
+++ b/docs/plugins/inspect/plugin-subparse.xml
@@ -3,7 +3,7 @@
   <description>Subtitle parsing</description>
   <filename>../../gst/subparse/.libs/libgstsubparse.so</filename>
   <basename>libgstsubparse.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-tcp.xml b/docs/plugins/inspect/plugin-tcp.xml
index ab096d3..afa0456 100644
--- a/docs/plugins/inspect/plugin-tcp.xml
+++ b/docs/plugins/inspect/plugin-tcp.xml
@@ -3,7 +3,7 @@
   <description>transfer data over the network via TCP</description>
   <filename>../../gst/tcp/.libs/libgsttcp.so</filename>
   <basename>libgsttcp.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-theora.xml b/docs/plugins/inspect/plugin-theora.xml
index 7fb6469..602f429 100644
--- a/docs/plugins/inspect/plugin-theora.xml
+++ b/docs/plugins/inspect/plugin-theora.xml
@@ -3,7 +3,7 @@
   <description>Theora plugin library</description>
   <filename>../../ext/theora/.libs/libgsttheora.so</filename>
   <basename>libgsttheora.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-typefindfunctions.xml b/docs/plugins/inspect/plugin-typefindfunctions.xml
index 70701d3..c3f0365 100644
--- a/docs/plugins/inspect/plugin-typefindfunctions.xml
+++ b/docs/plugins/inspect/plugin-typefindfunctions.xml
@@ -3,7 +3,7 @@
   <description>default typefind functions</description>
   <filename>../../gst/typefind/.libs/libgsttypefindfunctions.so</filename>
   <basename>libgsttypefindfunctions.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-videoconvert.xml b/docs/plugins/inspect/plugin-videoconvert.xml
index d48d441..b71747d 100644
--- a/docs/plugins/inspect/plugin-videoconvert.xml
+++ b/docs/plugins/inspect/plugin-videoconvert.xml
@@ -3,7 +3,7 @@
   <description>Colorspace conversion</description>
   <filename>../../gst/videoconvert/.libs/libgstvideoconvert.so</filename>
   <basename>libgstvideoconvert.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-videorate.xml b/docs/plugins/inspect/plugin-videorate.xml
index 4627697..f59f44a 100644
--- a/docs/plugins/inspect/plugin-videorate.xml
+++ b/docs/plugins/inspect/plugin-videorate.xml
@@ -3,7 +3,7 @@
   <description>Adjusts video frames</description>
   <filename>../../gst/videorate/.libs/libgstvideorate.so</filename>
   <basename>libgstvideorate.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-videoscale.xml b/docs/plugins/inspect/plugin-videoscale.xml
index ea8691c..cfca8df 100644
--- a/docs/plugins/inspect/plugin-videoscale.xml
+++ b/docs/plugins/inspect/plugin-videoscale.xml
@@ -3,7 +3,7 @@
   <description>Resizes video</description>
   <filename>../../gst/videoscale/.libs/libgstvideoscale.so</filename>
   <basename>libgstvideoscale.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-videotestsrc.xml b/docs/plugins/inspect/plugin-videotestsrc.xml
index 7e80284..d2cabb8 100644
--- a/docs/plugins/inspect/plugin-videotestsrc.xml
+++ b/docs/plugins/inspect/plugin-videotestsrc.xml
@@ -3,7 +3,7 @@
   <description>Creates a test video stream</description>
   <filename>../../gst/videotestsrc/.libs/libgstvideotestsrc.so</filename>
   <basename>libgstvideotestsrc.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-volume.xml b/docs/plugins/inspect/plugin-volume.xml
index 5ca7a11..ca80f11 100644
--- a/docs/plugins/inspect/plugin-volume.xml
+++ b/docs/plugins/inspect/plugin-volume.xml
@@ -3,7 +3,7 @@
   <description>plugin for controlling audio volume</description>
   <filename>../../gst/volume/.libs/libgstvolume.so</filename>
   <basename>libgstvolume.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-vorbis.xml b/docs/plugins/inspect/plugin-vorbis.xml
index eeb11fe..e491829 100644
--- a/docs/plugins/inspect/plugin-vorbis.xml
+++ b/docs/plugins/inspect/plugin-vorbis.xml
@@ -3,7 +3,7 @@
   <description>Vorbis plugin library</description>
   <filename>../../ext/vorbis/.libs/libgstvorbis.so</filename>
   <basename>libgstvorbis.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-ximagesink.xml b/docs/plugins/inspect/plugin-ximagesink.xml
index 162bff8..5077d7a 100644
--- a/docs/plugins/inspect/plugin-ximagesink.xml
+++ b/docs/plugins/inspect/plugin-ximagesink.xml
@@ -3,7 +3,7 @@
   <description>X11 video output element based on standard Xlib calls</description>
   <filename>../../sys/ximage/.libs/libgstximagesink.so</filename>
   <basename>libgstximagesink.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/docs/plugins/inspect/plugin-xvimagesink.xml b/docs/plugins/inspect/plugin-xvimagesink.xml
index b454aeb..de39308 100644
--- a/docs/plugins/inspect/plugin-xvimagesink.xml
+++ b/docs/plugins/inspect/plugin-xvimagesink.xml
@@ -3,7 +3,7 @@
   <description>XFree86 video output plugin using Xv extension</description>
   <filename>../../sys/xvimage/.libs/libgstxvimagesink.so</filename>
   <basename>libgstxvimagesink.so</basename>
-  <version>1.0.3</version>
+  <version>1.0.4</version>
   <license>LGPL</license>
   <source>gst-plugins-base</source>
   <package>GStreamer Base Plug-ins source release</package>
diff --git a/ext/alsa/gstalsasink.c b/ext/alsa/gstalsasink.c
index 0439e97..a203567 100644
--- a/ext/alsa/gstalsasink.c
+++ b/ext/alsa/gstalsasink.c
@@ -955,7 +955,7 @@
 static gint
 xrun_recovery (GstAlsaSink * alsa, snd_pcm_t * handle, gint err)
 {
-  GST_DEBUG_OBJECT (alsa, "xrun recovery %d", err);
+  GST_DEBUG_OBJECT (alsa, "xrun recovery %d: %s", err, g_strerror (err));
 
   if (err == -EPIPE) {          /* under-run */
     err = snd_pcm_prepare (handle);
@@ -1019,6 +1019,8 @@
       GST_DEBUG_OBJECT (asink, "Write error: %s", snd_strerror (err));
       if (err == -EAGAIN) {
         continue;
+      } else if (err == -ENODEV) {
+        goto device_disappeared;
       } else if (xrun_recovery (alsa, alsa->handle, err) < 0) {
         goto write_error;
       }
@@ -1037,6 +1039,13 @@
     GST_ALSA_SINK_UNLOCK (asink);
     return length;              /* skip one period */
   }
+device_disappeared:
+  {
+    GST_ELEMENT_ERROR (asink, RESOURCE, WRITE,
+        (_("Error outputting to audio device. "
+                "The device has been disconnected.")), (NULL));
+    goto write_error;
+  }
 }
 
 static guint
diff --git a/ext/alsa/gstalsasrc.c b/ext/alsa/gstalsasrc.c
index a74d6bb..9e2b4ae 100644
--- a/ext/alsa/gstalsasrc.c
+++ b/ext/alsa/gstalsasrc.c
@@ -805,7 +805,7 @@
 static gint
 xrun_recovery (GstAlsaSrc * alsa, snd_pcm_t * handle, gint err)
 {
-  GST_DEBUG_OBJECT (alsa, "xrun recovery %d", err);
+  GST_DEBUG_OBJECT (alsa, "xrun recovery %d: %s", err, g_strerror (err));
 
   if (err == -EPIPE) {          /* under-run */
     err = snd_pcm_prepare (handle);
@@ -907,6 +907,8 @@
       if (err == -EAGAIN) {
         GST_DEBUG_OBJECT (asrc, "Read error: %s", snd_strerror (err));
         continue;
+      } else if (err == -ENODEV) {
+        goto device_disappeared;
       } else if (xrun_recovery (alsa, alsa->handle, err) < 0) {
         goto read_error;
       }
@@ -929,6 +931,13 @@
     GST_ALSA_SRC_UNLOCK (asrc);
     return length;              /* skip one period */
   }
+device_disappeared:
+  {
+    GST_ELEMENT_ERROR (asrc, RESOURCE, READ,
+        (_("Error recording from audio device. "
+                "The device has been disconnected.")), (NULL));
+    goto read_error;
+  }
 }
 
 static guint
diff --git a/ext/vorbis/gstvorbisdec.c b/ext/vorbis/gstvorbisdec.c
index ac0632f..a062261 100644
--- a/ext/vorbis/gstvorbisdec.c
+++ b/ext/vorbis/gstvorbisdec.c
@@ -623,9 +623,9 @@
 static void
 vorbis_dec_flush (GstAudioDecoder * dec, gboolean hard)
 {
+#ifdef HAVE_VORBIS_SYNTHESIS_RESTART
   GstVorbisDec *vd = GST_VORBIS_DEC (dec);
 
-#ifdef HAVE_VORBIS_SYNTHESIS_RESTART
   vorbis_synthesis_restart (&vd->vd);
 #endif
 }
diff --git a/gst-libs/gst/app/gstappsrc.c b/gst-libs/gst/app/gstappsrc.c
index f7634ba..2ed8134 100644
--- a/gst-libs/gst/app/gstappsrc.c
+++ b/gst-libs/gst/app/gstappsrc.c
@@ -1501,7 +1501,7 @@
 /**
  * gst_app_src_push_buffer:
  * @appsrc: a #GstAppSrc
- * @buffer: a #GstBuffer to push
+ * @buffer: (transfer full): a #GstBuffer to push
  *
  * Adds a buffer to the queue of buffers that the appsrc element will
  * push to its source pad.  This function takes ownership of the buffer.
diff --git a/gst-libs/gst/audio/gstaudioringbuffer.c b/gst-libs/gst/audio/gstaudioringbuffer.c
index dcc0d5a..62b4786 100644
--- a/gst-libs/gst/audio/gstaudioringbuffer.c
+++ b/gst-libs/gst/audio/gstaudioringbuffer.c
@@ -1955,8 +1955,6 @@
  * Set a new timestamp on the buffer.
  *
  * MT safe.
- *
- * Since:
  */
 void
 gst_audio_ring_buffer_set_timestamp (GstAudioRingBuffer * buf, gint readseg,
diff --git a/gst-libs/gst/rtp/gstrtpbuffer.c b/gst-libs/gst/rtp/gstrtpbuffer.c
index 266083c..836ad69 100644
--- a/gst-libs/gst/rtp/gstrtpbuffer.c
+++ b/gst-libs/gst/rtp/gstrtpbuffer.c
@@ -106,7 +106,6 @@
 
   g_return_if_fail (csrc_count <= 15);
   g_return_if_fail (GST_IS_BUFFER (buffer));
-  g_return_if_fail (pad_len <= 255);
   g_return_if_fail (gst_buffer_is_writable (buffer));
 
   gst_buffer_remove_all_memory (buffer);
diff --git a/gst-libs/gst/rtsp/gstrtspmessage.c b/gst-libs/gst/rtsp/gstrtspmessage.c
index 97c8f02..6bc6b0d 100644
--- a/gst-libs/gst/rtsp/gstrtspmessage.c
+++ b/gst-libs/gst/rtsp/gstrtspmessage.c
@@ -138,7 +138,7 @@
  * gst_rtsp_message_new_request:
  * @msg: (out) (transfer full): a location for the new #GstRTSPMessage
  * @method: the request method to use
- * @uri: the uri of the request
+ * @uri: (transfer none): the uri of the request
  *
  * Create a new #GstRTSPMessage with @method and @uri and store the result
  * request message in @msg. Free with gst_rtsp_message_free().
@@ -165,7 +165,7 @@
  * gst_rtsp_message_init_request:
  * @msg: a #GstRTSPMessage
  * @method: the request method to use
- * @uri: the uri of the request
+ * @uri: (transfer none): the uri of the request
  *
  * Initialize @msg as a request message with @method and @uri. To clear @msg
  * again, use gst_rtsp_message_unset().
@@ -227,8 +227,8 @@
  * gst_rtsp_message_new_response:
  * @msg: (out) (transfer full): a location for the new #GstRTSPMessage
  * @code: the status code
- * @reason: the status reason or #NULL
- * @request: the request that triggered the response or #NULL
+ * @reason: (transfer none) (allow-none): the status reason or %NULL
+ * @request: (transfer none) (allow-none): the request that triggered the response or %NULL
  *
  * Create a new response #GstRTSPMessage with @code and @reason and store the
  * result message in @msg. Free with gst_rtsp_message_free().
@@ -259,8 +259,8 @@
  * gst_rtsp_message_init_response:
  * @msg: a #GstRTSPMessage
  * @code: the status code
- * @reason: the status reason or #NULL
- * @request: the request that triggered the response or #NULL
+ * @reason: (transfer none) (allow-none): the status reason or %NULL
+ * @request: (transfer none) (allow-none): the request that triggered the response or %NULL
  *
  * Initialize @msg with @code and @reason.
  *
@@ -528,7 +528,7 @@
  * gst_rtsp_message_add_header:
  * @msg: a #GstRTSPMessage
  * @field: a #GstRTSPHeaderField
- * @value: the value of the header
+ * @value: (transfer none): the value of the header
  *
  * Add a header with key @field and @value to @msg. This function takes a copy
  * of @value.
@@ -621,7 +621,7 @@
 /**
  * gst_rtsp_message_append_headers:
  * @msg: a #GstRTSPMessage
- * @str: a string
+ * @str: (transfer none): a string
  *
  * Append the currently configured headers in @msg to the #GString @str suitable
  * for transmission.
@@ -651,7 +651,7 @@
 /**
  * gst_rtsp_message_set_body:
  * @msg: a #GstRTSPMessage
- * @data: the data
+ * @data: (array length=size) (transfer none): the data
  * @size: the size of @data
  *
  * Set the body of @msg to a copy of @data.
@@ -670,7 +670,7 @@
 /**
  * gst_rtsp_message_take_body:
  * @msg: a #GstRTSPMessage
- * @data: the data
+ * @data: (array length=size) (transfer full): the data
  * @size: the size of @data
  *
  * Set the body of @msg to @data and @size. This method takes ownership of
diff --git a/gst-libs/gst/video/gstvideodecoder.c b/gst-libs/gst/video/gstvideodecoder.c
index 3270e27..fdbf053 100644
--- a/gst-libs/gst/video/gstvideodecoder.c
+++ b/gst-libs/gst/video/gstvideodecoder.c
@@ -1678,7 +1678,7 @@
   if (priv->current_frame == NULL)
     priv->current_frame = gst_video_decoder_new_frame (decoder);
 
-  if (GST_BUFFER_PTS_IS_VALID (buf)) {
+  if (GST_BUFFER_PTS_IS_VALID (buf) && !priv->packetized) {
     gst_video_decoder_add_timestamp (decoder, buf);
   }
   priv->input_offset += gst_buffer_get_size (buf);
diff --git a/gst-libs/gst/video/gstvideometa.c b/gst-libs/gst/video/gstvideometa.c
index e7af9b0..e573dd8 100644
--- a/gst-libs/gst/video/gstvideometa.c
+++ b/gst-libs/gst/video/gstvideometa.c
@@ -232,7 +232,8 @@
   for (i = 0; i < n_planes; i++) {
     meta->offset[i] = offset[i];
     meta->stride[i] = stride[i];
-    GST_LOG ("plane %d, offset %u, stride %d", i, offset[i], stride[i]);
+    GST_LOG ("plane %d, offset %" G_GSIZE_FORMAT ", stride %d", i, offset[i],
+        stride[i]);
   }
   meta->map = default_map;
   meta->unmap = default_unmap;
diff --git a/gst-libs/gst/video/videooverlay.c b/gst-libs/gst/video/videooverlay.c
index 6e9e8b4..7c2d9b0 100644
--- a/gst-libs/gst/video/videooverlay.c
+++ b/gst-libs/gst/video/videooverlay.c
@@ -141,7 +141,7 @@
  * <title>GstVideoOverlay and Gtk+</title>
  * <para>
  * |[
- * #include &lt;gst/video/xoverlay.h&gt;
+ * #include &lt;gst/video/videooverlay.h&gt;
  * #include &lt;gtk/gtk.h&gt;
  * #ifdef GDK_WINDOWING_X11
  * #include &lt;gdk/gdkx.h&gt;  // for GDK_WINDOW_XID
@@ -160,11 +160,11 @@
  *    return GST_BUS_PASS;
  *
  *  if (video_window_handle != 0) {
- *    GstXOverlay *xoverlay;
+ *    GstVideoOverlay *overlay;
  *
  *    // GST_MESSAGE_SRC (message) will be the video sink element
- *    xoverlay = GST_X_OVERLAY (GST_MESSAGE_SRC (message));
- *    gst_x_overlay_set_window_handle (xoverlay, video_window_handle);
+ *    overlay = GST_VIDEO_OVERLAY (GST_MESSAGE_SRC (message));
+ *    gst_video_overlay_set_window_handle (overlay, video_window_handle);
  *  } else {
  *    g_warning ("Should have obtained video_window_handle by now!");
  *  }
@@ -339,7 +339,7 @@
  * @handle: a handle referencing the window.
  *
  * This will call the video overlay's set_window_handle method. You
- * should use this method to tell to a XOverlay to display video output to a
+ * should use this method to tell to an overlay to display video output to a
  * specific window (e.g. an XWindow on X11). Passing 0 as the  @handle will
  * tell the overlay to stop using that window and create an internal one.
  */
@@ -441,7 +441,7 @@
  * events are forwarded upstream as navigation events. In some window system,
  * events are not propagated in the window hierarchy if a client is listening
  * for them. This method allows you to disable events handling completely
- * from the XOverlay.
+ * from the #GstVideoOverlay.
  */
 void
 gst_video_overlay_handle_events (GstVideoOverlay * overlay,
diff --git a/gst-plugins-base.doap b/gst-plugins-base.doap
index d5ec54a..43fd973 100644
--- a/gst-plugins-base.doap
+++ b/gst-plugins-base.doap
@@ -36,6 +36,16 @@
 
  <release>
   <Version>
+   <revision>1.0.4</revision>
+   <branch>1.0</branch>
+   <name></name>
+   <created>2012-12-18</created>
+   <file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.0.4.tar.xz" />
+  </Version>
+ </release>
+
+ <release>
+  <Version>
    <revision>1.0.3</revision>
    <branch>1.0</branch>
    <name></name>
diff --git a/gst-plugins-base.spec b/gst-plugins-base.spec
index b7aa021..30e5468 100644
--- a/gst-plugins-base.spec
+++ b/gst-plugins-base.spec
@@ -4,7 +4,7 @@
 %define gst_minver  0.11.0
 
 Name: 		%{gstreamer}-plugins-base
-Version: 	1.0.3
+Version: 	1.0.4
 Release: 	1.gst
 Summary: 	GStreamer streaming media framework plug-ins
 
diff --git a/gst/playback/gstplaysink.c b/gst/playback/gstplaysink.c
index 36fc5da..214274c 100644
--- a/gst/playback/gstplaysink.c
+++ b/gst/playback/gstplaysink.c
@@ -133,7 +133,8 @@
   GstElement *queue;
   GstElement *conv;
   GstElement *resample;
-  GstPad *blockpad;             /* srcpad of resample, used for switching the vis */
+  GstPad *blockpad;             /* srcpad of queue, used for blocking the vis */
+  GstPad *vispeerpad;           /* srcpad of resample, used for unlinking the vis */
   GstPad *vissinkpad;           /* visualisation sinkpad, */
   GstElement *vis;
   GstPad *vissrcpad;            /* visualisation srcpad, */
@@ -911,7 +912,7 @@
     goto done;
 
   /* unlink the old plugin and unghost the pad */
-  gst_pad_unlink (chain->blockpad, chain->vissinkpad);
+  gst_pad_unlink (chain->vispeerpad, chain->vissinkpad);
   gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (chain->srcpad), NULL);
 
   /* set the old plugin to NULL and remove */
@@ -928,7 +929,7 @@
   chain->vissrcpad = gst_element_get_static_pad (chain->vis, "src");
 
   /* link pads */
-  gst_pad_link_full (chain->blockpad, chain->vissinkpad,
+  gst_pad_link_full (chain->vispeerpad, chain->vissinkpad,
       GST_PAD_LINK_CHECK_NOTHING);
   gst_ghost_pad_set_target (GST_GHOST_PAD_CAST (chain->srcpad),
       chain->vissrcpad);
@@ -2846,8 +2847,12 @@
   gst_bin_add (bin, chain->resample);
 
   /* this pad will be used for blocking the dataflow and switching the vis
+   * plugin, we block right after the queue, this makes it possible for the
+   * resample and convert to convert to a format supported by the new vis
    * plugin */
-  chain->blockpad = gst_element_get_static_pad (chain->resample, "src");
+  chain->blockpad = gst_element_get_static_pad (chain->queue, "src");
+  /* this is the pad where the vis is linked to */
+  chain->vispeerpad = gst_element_get_static_pad (chain->resample, "src");
 
   if (playsink->visualisation) {
     GST_DEBUG_OBJECT (playsink, "trying configure vis");
diff --git a/gst/playback/gststreamsynchronizer.c b/gst/playback/gststreamsynchronizer.c
index fbae337..c714521 100644
--- a/gst/playback/gststreamsynchronizer.c
+++ b/gst/playback/gststreamsynchronizer.c
@@ -26,18 +26,18 @@
 GST_DEBUG_CATEGORY_STATIC (stream_synchronizer_debug);
 #define GST_CAT_DEFAULT stream_synchronizer_debug
 
-#define GST_STREAM_SYNCHRONIZER_LOCK(obj) G_STMT_START {                   \
-    GST_LOG_OBJECT (obj,                                                \
+#define GST_STREAM_SYNCHRONIZER_LOCK(obj) G_STMT_START {                \
+    GST_TRACE_OBJECT (obj,                                              \
                     "locking from thread %p",                           \
                     g_thread_self ());                                  \
-    g_mutex_lock (&GST_STREAM_SYNCHRONIZER_CAST(obj)->lock);                \
-    GST_LOG_OBJECT (obj,                                                \
+    g_mutex_lock (&GST_STREAM_SYNCHRONIZER_CAST(obj)->lock);            \
+    GST_TRACE_OBJECT (obj,                                              \
                     "locked from thread %p",                            \
                     g_thread_self ());                                  \
 } G_STMT_END
 
-#define GST_STREAM_SYNCHRONIZER_UNLOCK(obj) G_STMT_START {                 \
-    GST_LOG_OBJECT (obj,                                                \
+#define GST_STREAM_SYNCHRONIZER_UNLOCK(obj) G_STMT_START {              \
+    GST_TRACE_OBJECT (obj,                                              \
                     "unlocking from thread %p",                         \
                     g_thread_self ());                                  \
     g_mutex_unlock (&GST_STREAM_SYNCHRONIZER_CAST(obj)->lock);              \
@@ -565,6 +565,11 @@
 
     /* Advance EOS streams if necessary. For non-EOS
      * streams the demuxers should already do this! */
+    if (!GST_CLOCK_TIME_IS_VALID (timestamp_end) &&
+        GST_CLOCK_TIME_IS_VALID (timestamp)) {
+      timestamp_end = timestamp + GST_SECOND;
+    }
+
     for (l = self->streams; l; l = l->next) {
       GstStream *ostream = l->data;
       gint64 position;
@@ -578,7 +583,8 @@
         position = ostream->segment.start;
 
       /* Is there a 1 second lag? */
-      if (position != -1 && position + GST_SECOND < timestamp_end) {
+      if (position != -1 && GST_CLOCK_TIME_IS_VALID (timestamp_end) &&
+          position + GST_SECOND < timestamp_end) {
         gint64 new_start;
 
         new_start = timestamp_end - GST_SECOND;
diff --git a/gst/subparse/gstssaparse.c b/gst/subparse/gstssaparse.c
index 8b8b06f..88b5d9b 100644
--- a/gst/subparse/gstssaparse.c
+++ b/gst/subparse/gstssaparse.c
@@ -150,10 +150,11 @@
   const GValue *val;
   GstStructure *s;
   const guchar bom_utf8[] = { 0xEF, 0xBB, 0xBF };
+  const gchar *end;
   GstBuffer *priv;
   GstMapInfo map;
   gchar *ptr;
-  gsize left;
+  gsize left, bad_offset;
   gboolean ret;
 
   s = gst_caps_get_structure (caps, 0);
@@ -172,7 +173,10 @@
 
   gst_buffer_ref (priv);
 
-  gst_buffer_map (priv, &map, GST_MAP_READ);
+  if (!gst_buffer_map (priv, &map, GST_MAP_READ))
+    return FALSE;
+
+  GST_MEMDUMP_OBJECT (parse, "init section", map.data, map.size);
 
   ptr = (gchar *) map.data;
   left = map.size;
@@ -186,8 +190,13 @@
   if (!strstr (ptr, "[Script Info]"))
     goto invalid_init;
 
-  if (!g_utf8_validate (ptr, left, NULL))
-    goto invalid_utf8;
+  if (!g_utf8_validate (ptr, left, &end)) {
+    bad_offset = (gsize) (end - ptr);
+    GST_WARNING_OBJECT (parse, "Init section is not valid UTF-8. Problem at "
+        "byte offset %" G_GSIZE_FORMAT, bad_offset);
+    /* continue with valid UTF-8 data */
+    left = bad_offset;
+  }
 
   /* FIXME: parse initial section */
   parse->ini = g_strndup (ptr, left);
@@ -212,13 +221,6 @@
     gst_buffer_unref (priv);
     return FALSE;
   }
-invalid_utf8:
-  {
-    GST_WARNING_OBJECT (parse, "Init section is not valid UTF-8");
-    gst_buffer_unmap (priv, &map);
-    gst_buffer_unref (priv);
-    return FALSE;
-  }
 }
 
 static gboolean
diff --git a/gst/subparse/gstsubparse.c b/gst/subparse/gstsubparse.c
index f3513aa..f39f583 100644
--- a/gst/subparse/gstsubparse.c
+++ b/gst/subparse/gstsubparse.c
@@ -1740,7 +1740,6 @@
    * otherwise convert as always */
   if (!g_utf8_validate (str, 128, &end) && (end - str) < 120) {
     gchar *converted_str;
-    GError *err = NULL;
     gsize tmp;
     const gchar *enc;
 
@@ -1752,7 +1751,7 @@
         enc = "ISO-8859-15";
       }
     }
-    converted_str = gst_convert_to_utf8 (str, 128, enc, &tmp, &err);
+    converted_str = gst_convert_to_utf8 (str, 128, enc, &tmp, NULL);
     if (converted_str != NULL) {
       g_free (str);
       str = converted_str;
diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c
index 04acca5..1ec9e73 100644
--- a/gst/typefind/gsttypefindfunctions.c
+++ b/gst/typefind/gsttypefindfunctions.c
@@ -1040,7 +1040,7 @@
         count = aac_type_find_scan_loas_frames (tf, &c, 20);
 
       if (count >= 3 && count > best_count) {
-        gst_caps_unref (best_caps);
+        gst_caps_replace (&best_caps, NULL);
         best_caps = gst_caps_new_simple ("audio/mpeg",
             "framed", G_TYPE_BOOLEAN, FALSE,
             "mpegversion", G_TYPE_INT, 4,
diff --git a/ltmain.sh b/ltmain.sh
index 33f642a..499e473 100644
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -70,7 +70,7 @@
 #         compiler:		$LTCC
 #         compiler flags:		$LTCFLAGS
 #         linker:		$LD (gnu? $with_gnu_ld)
-#         $progname:	(GNU libtool) 2.4.2 Debian-2.4.2-1.1
+#         $progname:	(GNU libtool) 2.4.2 Debian-2.4.2-1.2
 #         automake:	$automake_version
 #         autoconf:	$autoconf_version
 #
@@ -80,7 +80,7 @@
 
 PROGRAM=libtool
 PACKAGE=libtool
-VERSION="2.4.2 Debian-2.4.2-1.1"
+VERSION="2.4.2 Debian-2.4.2-1.2"
 TIMESTAMP=""
 package_revision=1.3337
 
diff --git a/m4/libtool.m4 b/m4/libtool.m4
index 534d1cc..02b4bbe 100644
--- a/m4/libtool.m4
+++ b/m4/libtool.m4
@@ -1324,7 +1324,14 @@
 	    LD="${LD-ld} -m elf_i386_fbsd"
 	    ;;
 	  x86_64-*linux*)
-	    LD="${LD-ld} -m elf_i386"
+	    case `/usr/bin/file conftest.o` in
+	      *x86-64*)
+		LD="${LD-ld} -m elf32_x86_64"
+		;;
+	      *)
+		LD="${LD-ld} -m elf_i386"
+		;;
+	    esac
 	    ;;
 	  ppc64-*linux*|powerpc64-*linux*)
 	    LD="${LD-ld} -m elf32ppclinux"
@@ -1688,7 +1695,8 @@
     ;;
   *)
     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
-    if test -n "$lt_cv_sys_max_cmd_len"; then
+    if test -n "$lt_cv_sys_max_cmd_len" && \
+	test undefined != "$lt_cv_sys_max_cmd_len"; then
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
     else
diff --git a/po/LINGUAS b/po/LINGUAS
index 2f56e09..2c2d95d 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -1 +1 @@
-af az bg ca cs da de el en_GB eo es eu fi fr gl hu id it ja lt lv nb nl or pl pt_BR ro ru sk sl sq sr sv tr uk vi zh_CN
+af az bg ca cs da de el en_GB eo es eu fi fr gl hr hu id it ja lt lv nb nl or pl pt_BR ro ru sk sl sq sr sv tr uk vi zh_CN
diff --git a/po/af.gmo b/po/af.gmo
index 602a634..9ca5a66 100644
--- a/po/af.gmo
+++ b/po/af.gmo
Binary files differ
diff --git a/po/af.po b/po/af.po
index f61a6af..994ccc1 100644
--- a/po/af.po
+++ b/po/af.po
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins 0.7.6\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2004-03-18 14:16+0200\n"
 "Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
 "Language-Team: Afrikaans <i18n@af.org.za>\n"
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Kon nie oudio-toestel \"%s\" oopmaak vir skryf nie."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 #, fuzzy
 msgid "Could not open device for recording in mono mode."
 msgstr "Kon nie CD-toestel oopmaak om te lees nie."
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Kon nie CD-toestel oopmaak om te lees nie."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Kon nie CD-toestel oopmaak om te lees nie."
 
diff --git a/po/az.gmo b/po/az.gmo
index ca1fde2..7c2bb3f 100644
--- a/po/az.gmo
+++ b/po/az.gmo
Binary files differ
diff --git a/po/az.po b/po/az.po
index 42f7c34..7f76bb2 100644
--- a/po/az.po
+++ b/po/az.po
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-0.8.0\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2004-03-19 18:29+0200\n"
 "Last-Translator: Metin Amiroff <metin@karegen.com>\n"
 "Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -38,6 +38,9 @@
 msgid "Could not open audio device for playback."
 msgstr "\"%s\" audio avadanlığı yazma üçün açıla bilmədi."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 #, fuzzy
 msgid "Could not open device for recording in mono mode."
 msgstr "CD avadanlığı oxuma üçün açıla bilmədi."
@@ -60,6 +63,9 @@
 msgid "Could not open audio device for recording."
 msgstr "CD avadanlığı oxuma üçün açıla bilmədi."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "CD avadanlığı oxuma üçün açıla bilmədi."
 
diff --git a/po/bg.gmo b/po/bg.gmo
index f3e9db8..66d363f 100644
--- a/po/bg.gmo
+++ b/po/bg.gmo
Binary files differ
diff --git a/po/bg.po b/po/bg.po
index a518159..ada29c0 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-04-26 22:31+0300\n"
 "Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
 "Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -38,6 +38,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Звуковото устройство не може да се отвори за изпълнение."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Устройството не може да се отвори за запис в моно режим."
 
@@ -58,6 +61,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Звуковото устройство не може да се отвори за запис."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Устройството за CD-та не може да се отвори за четене."
 
diff --git a/po/ca.gmo b/po/ca.gmo
index f450e6d..0ccb08e 100644
--- a/po/ca.gmo
+++ b/po/ca.gmo
Binary files differ
diff --git a/po/ca.po b/po/ca.po
index 09764eb..bc92a51 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2012-01-01 14:19+0100\n"
 "Last-Translator: Gil Forcada <gforcada@gnome.org>\n"
 "Language-Team: Catalan <ca@dodds.net>\n"
@@ -41,6 +41,9 @@
 msgid "Could not open audio device for playback."
 msgstr "No s'ha pogut obrir el dispositiu d'àudio per a la reproducció."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "No s'ha pogut obrir el dispositiu per a l'enregistrament en mode mono."
 
@@ -63,6 +66,9 @@
 msgid "Could not open audio device for recording."
 msgstr "No s'ha pogut obrir el dispositiu d'àudio per a l'enregistrament."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "No s'ha pogut obrir el dispositiu del CD per a la lectura."
 
diff --git a/po/cs.gmo b/po/cs.gmo
index 509dac6..169a5e2 100644
--- a/po/cs.gmo
+++ b/po/cs.gmo
Binary files differ
diff --git a/po/cs.po b/po/cs.po
index 25d8658..c6406cf 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base-0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-05-29 16:49+0200\n"
 "Last-Translator: Petr Kovar <pknbe@volny.cz>\n"
 "Language-Team: Czech <translation-team-cs@lists.sourceforge.net>\n"
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nezdařilo se otevření zvukového zařízení k přehrávání."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Nezdařilo se otevření zařízení k záznamu v režimu mono."
 
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nezdařilo se otevření zvukového zařízení k záznamu."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nezdařilo se otevření zařízení CD ke čtení."
 
diff --git a/po/da.gmo b/po/da.gmo
index 853e972..5967919 100644
--- a/po/da.gmo
+++ b/po/da.gmo
Binary files differ
diff --git a/po/da.po b/po/da.po
index 283031e..5193cdd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -33,7 +33,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-04-28 16:38+0100\n"
 "Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
 "Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
@@ -62,6 +62,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Kunne ikke åbne lydenhed til afspilning."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Kunne ikke optage fra enheden i mono-tilstand."
 
@@ -81,6 +84,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Kunne ikke åbne lydenhed til optagelse."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Kunne ikke læse fra cd-enhed."
 
diff --git a/po/de.gmo b/po/de.gmo
index 99a8a9c..2ce71ef 100644
--- a/po/de.gmo
+++ b/po/de.gmo
Binary files differ
diff --git a/po/de.po b/po/de.po
index c9ce518..75e08da 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,17 +1,17 @@
-# German messages for gst-plugins-base 0.10.32.2
+# German messages for gst-plugins-base 1.0.3
 # Copyright © 2006 Karl Eichwalder
 # This file is distributed under the same license as the gst-plugins-base package.
 # Karl Eichwalder <ke@suse.de>, 2006.
 # Mario Blättermann <mariobl@gnome.org>, 2010.
-# Christian Kirbach <christian.kirbach@googlemail.com>, 2009, 2010, 2011.
+# Christian Kirbach <christian.kirbach@gmail.com>, 2009, 2010, 2011, 2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-04-28 00:04+0200\n"
-"Last-Translator: Christian Kirbach <christian.kirbach@googlemail.com>\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-11-28 19:39+0100\n"
+"Last-Translator: Christian Kirbach <christian.kirbach@gmail.com>\n"
 "Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
 "Language: de\n"
 "MIME-Version: 1.0\n"
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Audio-Gerät konnte nicht zur Wiedergabe geöffnet werden."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Gerät konnte nicht zur Aufnahme in Mono geöffnet werden."
 
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Audio-Gerät konnte nicht zur Aufnahme geöffnet werden."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Das CD-Laufwerk konnte nicht zum Lesen geöffnet werden."
 
@@ -95,7 +101,6 @@
 msgid "The autovideosink element is missing."
 msgstr "Das Element »autovideosink« fehlt."
 
-# »Senke« hört sich echt scheußlich an.
 #, c-format
 msgid "Configured videosink %s is not working."
 msgstr "Das konfigurierte Videoziel »%s« funktioniert nicht."
@@ -209,7 +214,6 @@
 msgid "capturing focal ratio"
 msgstr "Blendenwert"
 
-# F-Nummer kennt bei uns kein Mensch. Oder doch...?
 msgid "Focal ratio (f-number) used when capturing the image"
 msgstr "Der verwendete Blendenwert bei Bildaufnahme"
 
@@ -327,10 +331,10 @@
 msgstr "Vertikale Auflösung des Bildes oder Videos in ppi (Pixel pro Zoll)"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "ID3v2-Rahmen"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "unverarbeiteter ID3v2-Kennzeichnungsrahmen"
 
 msgid "ID3 tag"
 msgstr "ID3-Kennzeichnung"
@@ -366,19 +370,16 @@
 msgstr "RLE-Codierung"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Untertitel"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "Untertitel-Format TMPlayer"
+msgstr "Untertitel-Format MPL2"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Untertitel-Format Sami"
+msgstr "Untertitel-Format DKS"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Untertitel-Format Kate"
+msgstr "Untertitel-Format QTtext"
 
 msgid "Sami subtitle format"
 msgstr "Untertitel-Format Sami"
@@ -389,33 +390,30 @@
 msgid "Kate subtitle format"
 msgstr "Untertitel-Format Kate"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "Unkomprimiertes YUV"
+msgstr "Unkomprimiertes Video"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Unkomprimiertes Graubild"
+msgstr "Unkomprimiertes Grau"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "Unkomprimiertes YUV"
+msgstr "Unkomprimiertes %s YUV %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Unkomprimiertes palettiertes %d-Bit %s"
+msgstr "Unkomprimiertes %s%d-Bit %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 Version %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "Unkomprimiertes YUV"
+msgstr "Unkomprimiertes Audio"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Rohes %d-bit PCM-Audio"
+msgstr "Rohes %d-Bit %s Audio"
 
 msgid "Audio CD source"
 msgstr "Musik-CD-Quelle"
@@ -528,48 +526,6 @@
 #~ msgid "Capture"
 #~ msgstr "Aufnahme"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Verbindung nach %s:%d wurde verweigert."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Unkomprimiertes ungepacktes YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Unkomprimiertes ungepacktes YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Unkomprimiertes gepacktes YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Unkomprimiertes gepacktes YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Unkomprimiertes gepacktes YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Unkomprimiertes gepacktes YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Unkomprimiertes gepacktes  YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Unkomprimiertes ungepacktes YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Unkomprimiertes ungepacktes YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Unkomprimiertes schwarz-weißes Y-plane"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Rohes PCM-Audio"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Rohes %d-Bit Gleitkomma-Audio"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Rohes Gleitkomma-Audio"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "VFS-Datei »%s« konnte nicht zum Schreiben geöffnet werden: %s."
 
@@ -619,6 +575,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "Beide Elemente »autoaudiosink« und »alsasink« fehlen."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Fehler beim Senden der GDP-Kopfdaten nach »%s:%d«."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Fehler beim Senden der GDP-Nutzdaten nach »%s:%d«."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Verbindung nach %s:%d wurde verweigert."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Unkomprimiertes ungepacktes YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Unkomprimiertes ungepacktes YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Unkomprimiertes gepacktes YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Unkomprimiertes gepacktes YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Unkomprimiertes gepacktes YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Unkomprimiertes gepacktes YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Unkomprimiertes gepacktes  YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Unkomprimiertes ungepacktes YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Unkomprimiertes ungepacktes YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Unkomprimiertes schwarz-weißes Y-plane"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Rohes PCM-Audio"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Rohes %d-Bit Gleitkomma-Audio"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Rohes Gleitkomma-Audio"
+
 #~ msgid "No device specified."
 #~ msgstr "Kein Gerät angegeben."
 
@@ -632,12 +636,6 @@
 #~ msgstr ""
 #~ "Das Gerät »%s« konnte nicht zum Lesen und Schreiben geöffnet werden."
 
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Fehler beim Senden der GDP-Kopfdaten nach »%s:%d«."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Fehler beim Senden der GDP-Nutzdaten nach »%s:%d«."
-
 #~ msgid "Can't display both text subtitles and subpictures."
 #~ msgstr ""
 #~ "Es können nicht Untertiteltexte und Kleinbilder zugleich angezeigt werden."
diff --git a/po/el.gmo b/po/el.gmo
index 0b2bcb0..9bced63 100644
--- a/po/el.gmo
+++ b/po/el.gmo
Binary files differ
diff --git a/po/el.po b/po/el.po
index 2061fb0..b74ad55 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2,15 +2,16 @@
 # This file is put in the public domain.
 #
 # Simos Xenitellis <simos.lists@googlemail.com>, 2010.
-# Michael Kotsarinis <mk73628@gmail.com>, 2010. 
+# Michael Kotsarinis <mk73628@gmail.com>, 2010.
+# Savvas Radevic <vicedar@gmail.com>, 2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.30.3\n"
+"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2010-10-27 12:05+0200\n"
-"Last-Translator: Michael Kotsarinis <mk73628@gmail.com>\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-05-05 19:13+0100\n"
+"Last-Translator: Savvas Radevic <vicedar@gmail.com>\n"
 "Language-Team: Greek <team@lists.gnome.gr>\n"
 "Language: el\n"
 "MIME-Version: 1.0\n"
@@ -40,6 +41,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Αδυναμία ανοίγματος συσκευής για αναπαραγωγή."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Αδυναμία ανοίγματος συσκευής για μονοφωνική εγγραφή."
 
@@ -60,6 +64,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Αδυναμία ανοίγματος συσκευής ήχου για εγγραφή."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Αδυναμία ανοίγματος συσκευής CD για ανάγνωση."
 
@@ -243,13 +250,11 @@
 msgid "The exposure mode used when capturing an image"
 msgstr "Ο τρόπος έκθεσης που χρησιμοποιήθηκε για τη λήψη μιας εικόνας"
 
-#, fuzzy
 msgid "capturing exposure compensation"
-msgstr "τρόπος έκθεσης λήψης"
+msgstr "αντιστάθμιση έκθεσης λήψης"
 
-#, fuzzy
 msgid "The exposure compensation used when capturing an image"
-msgstr "Ο τρόπος έκθεσης που χρησιμοποιήθηκε για τη λήψη μιας εικόνας"
+msgstr "Η αντιστάθμιση έκθεσης που χρησιμοποιήθηκε για τη λήψη μιας εικόνας"
 
 msgid "capturing scene capture type"
 msgstr "τύπος σύλληψης σκηνής της λήψης"
@@ -537,48 +542,6 @@
 #~ msgid "Capture"
 #~ msgstr "Σύλληψη"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Άρνηση σύνδεσης σε %s:%d."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Ασυμπίεστο planar YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Ασυμπίεστο planar YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Ασυμπίεστο packed YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Ασυμπίεστο packed YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Ασυμπίεστο packed YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Ασυμπίεστο packed YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Ασυμπίεστο packed YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Ασυμπίεστο planar YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Ασυμπίεστο planar YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Ασυμπίεστο ασπρόμαυρο Y-plane"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Καθαρός ήχος PCM "
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Καθαρός ήχος %d-bit floating-point"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Καθαρός floating-point ήχος"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "Αδυναμία ανοίγματος αρχείου vfs «%s» για εγγραφή: %s."
 
@@ -629,6 +592,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "Λείπουν και τα δύο στοιχεία autoaudiosink και alsasink."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Σφάλμα κατά την αποστολή δεδομένων κεφαλίδας gdp σε «%s:%d»."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Σφάλμα κατά την αποστολή δεδομένων φόρτου gdp σε «%s:%d»."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Άρνηση σύνδεσης σε %s:%d."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Ασυμπίεστο planar YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Ασυμπίεστο planar YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Ασυμπίεστο packed YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Ασυμπίεστο packed YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Ασυμπίεστο packed YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Ασυμπίεστο packed YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Ασυμπίεστο packed YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Ασυμπίεστο planar YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Ασυμπίεστο planar YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Ασυμπίεστο ασπρόμαυρο Y-plane"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Καθαρός ήχος PCM "
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Καθαρός ήχος %d-bit floating-point"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Καθαρός floating-point ήχος"
+
 #~ msgid "No device specified."
 #~ msgstr "Δεν ορίσθηκε συσκευή."
 
@@ -640,9 +651,3 @@
 
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Αδυναμία ανοίγματος συσκευής «%s» για ανάγνωση και εγγραφή."
-
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Σφάλμα κατά την αποστολή δεδομένων κεφαλίδας gdp σε «%s:%d»."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Σφάλμα κατά την αποστολή δεδομένων φόρτου gdp σε «%s:%d»."
diff --git a/po/en_GB.gmo b/po/en_GB.gmo
index 4e130eb..2b08092 100644
--- a/po/en_GB.gmo
+++ b/po/en_GB.gmo
Binary files differ
diff --git a/po/en_GB.po b/po/en_GB.po
index e12fd6f..18268c8 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins 0.8.1\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2004-04-26 10:41-0400\n"
 "Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
 "Language-Team: English (British) <en_gb@li.org>\n"
@@ -36,6 +36,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Could not open audio device \"%s\" for writing."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 #, fuzzy
 msgid "Could not open device for recording in mono mode."
 msgstr "Could not open CD device for reading."
@@ -58,6 +61,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Could not open CD device for reading."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Could not open CD device for reading."
 
diff --git a/po/eo.gmo b/po/eo.gmo
index 0914dd9..9780604 100644
--- a/po/eo.gmo
+++ b/po/eo.gmo
Binary files differ
diff --git a/po/eo.po b/po/eo.po
index e5a0653..9fff21e 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-06-04 21:11+0100\n"
 "Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
 "Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Ne eblis malfermi la sonaparaton por reproduktado."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Ne eblis malfermi la aparaton por registrado per unukanala reĝimo."
 
@@ -57,6 +60,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Ne eblis malfermi sonaparaton por registrado."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Ne eblis malfermi KD-aparaton por legado."
 
diff --git a/po/es.gmo b/po/es.gmo
index 7b676fd..8d53f11 100644
--- a/po/es.gmo
+++ b/po/es.gmo
Binary files differ
diff --git a/po/es.po b/po/es.po
index 1561de7..9176d2a 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-10-02 15:46+0200\n"
 "Last-Translator: Jorge González González <aloriel@gmail.com>\n"
 "Language-Team: Spanish <es@li.org>\n"
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "No se pudo abrir el dispositivo para la reproducir."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "No se pudo abrir el dispositivo para grabar en modo mono."
 
@@ -57,6 +60,9 @@
 msgid "Could not open audio device for recording."
 msgstr "No se pudo abrir el dispositivo de sonido para grabar."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "No se pudo abrir el dispositivo de CD para leer."
 
diff --git a/po/eu.gmo b/po/eu.gmo
index a45779f..eb09572 100644
--- a/po/eu.gmo
+++ b/po/eu.gmo
Binary files differ
diff --git a/po/eu.po b/po/eu.po
index aeccac9..f5fce4d 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base-0.10.26.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-03-25 12:32+0100\n"
 "Last-Translator: Mikel Olasagasti Uranga <hey_neken@mundurat.net>\n"
 "Language-Team: Basque <translation-team-eu@lists.sourceforge.net>\n"
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Ezin izan da audioaren gailua ireki erreproduzitzeko."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Ezin izan da gailua ireki mono moduan grabatzeko."
 
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Ezin izan da audioaren gailua ireki grabatzeko."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Ezin izan da CD gailua ireki irakurtzeko."
 
diff --git a/po/fi.gmo b/po/fi.gmo
index 6e174a8..7781438 100644
--- a/po/fi.gmo
+++ b/po/fi.gmo
Binary files differ
diff --git a/po/fi.po b/po/fi.po
index cfa9144..427d77b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -12,7 +12,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.30.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-12-31 23:21+0200\n"
 "Last-Translator: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>\n"
 "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
@@ -41,6 +41,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Laitetta ei voitu avata toistoa varten."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Laitetta ei voitu avata nauhoitusta varten monona."
 
@@ -61,6 +64,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Äänilaitetta ei voitu avat nauhoitusta varten."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "CD-laitetta ei voitu avata luettavaksi."
 
diff --git a/po/fr.gmo b/po/fr.gmo
index 41c2656..d66d598 100644
--- a/po/fr.gmo
+++ b/po/fr.gmo
Binary files differ
diff --git a/po/fr.po b/po/fr.po
index 6ab42e8..a69df59 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-04-28 09:19+0200\n"
 "Last-Translator: Claude Paroz <claude@2xlibre.net>\n"
 "Language-Team: French <traduc@traduc.org>\n"
@@ -40,6 +40,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Impossible d'utiliser le périphérique audio pour la lecture."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr ""
 "Impossible d'utiliser le périphérique pour l'enregistrement en mode mono."
@@ -64,6 +67,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Impossible d'utiliser le périphérique audio pour l'enregistrement."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Impossible d'utiliser le lecteur CD pour la lecture."
 
diff --git a/po/gl.gmo b/po/gl.gmo
index ee6bb93..85e78fb 100644
--- a/po/gl.gmo
+++ b/po/gl.gmo
Binary files differ
diff --git a/po/gl.po b/po/gl.po
index 443d383..f4191f0 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,21 +3,23 @@
 # This file is distributed under the same license as the gst-plugins-base package.
 # Fran Diéguez <frandieguez@ubuntu.com>, 2010, 2011.
 # Fran Dieguez <frandieguez@ubuntu.com>, 2011.
-#
+# Fran Dieguez <frandieguez@gnome.org>, 2012.
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-09-05 12:48+0200\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-12-15 03:40+0200\n"
 "Last-Translator: Fran Dieguez <frandieguez@ubuntu.com>\n"
 "Language-Team: Galician <proxecto@trasno.net>\n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Virtaal 0.7.1\n"
 "X-Poedit-Language: galego\n"
+"X-Project-Style: gnome\n"
 
 msgid "Could not open device for playback in mono mode."
 msgstr "Non foi posíbel abrir o dispositivo para a reprodución en modo mono."
@@ -40,6 +42,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Non foi posíbel abrir o dispositivo de son para reproducir."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Non foi posíbel abrir o dispositivo para gravar en modo mono."
 
@@ -60,6 +65,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Non foi posíbel abrir o dispositivo de son para gravar."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Non foi posíbel abrir o dispositivo de CD para ler."
 
@@ -320,10 +328,10 @@
 msgstr "Densidade vertical de píxeles, en ppi, do medio (imaxe ou vídeo)"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "Marco ID3v2"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "marco da etiqueta id3v2 non analizado"
 
 msgid "ID3 tag"
 msgstr "Etiqueta ID3"
@@ -359,19 +367,16 @@
 msgstr "Codificación do tamaño durante a execución"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Subtítulo"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "Formato de subtítulos TMPlayer"
+msgstr "Formato de subtítulos MPL2"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Formato de subtítulos Sami"
+msgstr "Formato de subtítulos DKS"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Formato de subtítulos Kate"
+msgstr "Formato de subtítulos QTtext"
 
 msgid "Sami subtitle format"
 msgstr "Formato de subtítulos Sami"
@@ -382,33 +387,30 @@
 msgid "Kate subtitle format"
 msgstr "Formato de subtítulos Kate"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "YUV sen comprimir"
+msgstr "Vídeo sen comprimir"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Imaxe en escala de grises sen comprimir"
+msgstr "Gris non comprimido"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "YUV sen comprimir"
+msgstr "%s YUV %s sen comprimir"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Paletizado sen comprimir de %d-bit %s"
+msgstr "%s%d-bit %s sen comprimir"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 Versión %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "YUV sen comprimir"
+msgstr "Son sen comprimir"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Audio PCM sen comprimir de %d-bits"
+msgstr "Son RAW de %d-bit %s"
 
 msgid "Audio CD source"
 msgstr "Fonte: CD de son"
@@ -521,9 +523,6 @@
 #~ msgid "Capture"
 #~ msgstr "Capturar"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Rexeitouse a conexión a %s:%d."
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "Non foi posíbel abrir o ficheiro vfs «%s» para escribir: %s."
 
@@ -581,6 +580,9 @@
 #~ msgid "Error while sending gdp payload data to \"%s:%d\"."
 #~ msgstr "Produciuse un erro ao enviar a carga de datos de gdp a «%s:%d»."
 
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Rexeitouse a conexión a %s:%d."
+
 #~ msgid "Uncompressed planar YUV 4:2:0"
 #~ msgstr "YUV 4:2:0 plano sen comprimir"
 
diff --git a/po/gst-plugins-base-1.0.pot b/po/gst-plugins-base-1.0.pot
index 4aec0ed..28d3e77 100644
--- a/po/gst-plugins-base-1.0.pot
+++ b/po/gst-plugins-base-1.0.pot
@@ -5,9 +5,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 1.0.3\n"
+"Project-Id-Version: gst-plugins-base 1.0.4\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -39,6 +39,10 @@
 msgid "Could not open audio device for playback."
 msgstr ""
 
+#: ext/alsa/gstalsasink.c:1045
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 #: ext/alsa/gstalsasrc.c:408
 msgid "Could not open device for recording in mono mode."
 msgstr ""
@@ -62,6 +66,10 @@
 msgid "Could not open audio device for recording."
 msgstr ""
 
+#: ext/alsa/gstalsasrc.c:937
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 #: ext/cdparanoia/gstcdparanoiasrc.c:279 ext/cdparanoia/gstcdparanoiasrc.c:285
 msgid "Could not open CD device for reading."
 msgstr ""
@@ -91,73 +99,73 @@
 msgid "This appears to be a text file"
 msgstr ""
 
-#: gst/playback/gstplaysink.c:1359 gst/playback/gstplaysink.c:1376
-#: gst/playback/gstplaysink.c:1688 gst/playback/gstplaysink.c:2279
-#: gst/playback/gstplaysink.c:2328 gst/playback/gstplaysink.c:2343
-#: gst/playback/gstplaysink.c:2368 gst/playback/gstplaysink.c:2400
-#: gst/playback/gstplaysink.c:2530 gst/playback/gstplaysink.c:2895
-#: gst/playback/gstplaysink.c:2904 gst/playback/gstplaysink.c:2913
-#: gst/playback/gstplaysink.c:2922 gst/playback/gstplaysink.c:4036
+#: gst/playback/gstplaysink.c:1360 gst/playback/gstplaysink.c:1377
+#: gst/playback/gstplaysink.c:1689 gst/playback/gstplaysink.c:2280
+#: gst/playback/gstplaysink.c:2329 gst/playback/gstplaysink.c:2344
+#: gst/playback/gstplaysink.c:2369 gst/playback/gstplaysink.c:2401
+#: gst/playback/gstplaysink.c:2531 gst/playback/gstplaysink.c:2900
+#: gst/playback/gstplaysink.c:2909 gst/playback/gstplaysink.c:2918
+#: gst/playback/gstplaysink.c:2927 gst/playback/gstplaysink.c:4041
 #: gst/playback/gsturidecodebin.c:1390
 #, c-format
 msgid "Missing element '%s' - check your GStreamer installation."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:1776
+#: gst/playback/gstplaysink.c:1777
 #, c-format
 msgid "Both autovideosink and %s elements are missing."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:1780
+#: gst/playback/gstplaysink.c:1781
 msgid "The autovideosink element is missing."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:1785
+#: gst/playback/gstplaysink.c:1786
 #, c-format
 msgid "Configured videosink %s is not working."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:1789
+#: gst/playback/gstplaysink.c:1790
 #, c-format
 msgid "Both autovideosink and %s elements are not working."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:1793
+#: gst/playback/gstplaysink.c:1794
 msgid "The autovideosink element is not working."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2316
+#: gst/playback/gstplaysink.c:2317
 msgid "Custom text sink element is not usable."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2648
+#: gst/playback/gstplaysink.c:2649
 msgid "No volume control found"
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2678
+#: gst/playback/gstplaysink.c:2679
 #, c-format
 msgid "Both autoaudiosink and %s elements are missing."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2682
+#: gst/playback/gstplaysink.c:2683
 msgid "The autoaudiosink element is missing."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2687
+#: gst/playback/gstplaysink.c:2688
 #, c-format
 msgid "Configured audiosink %s is not working."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2691
+#: gst/playback/gstplaysink.c:2692
 #, c-format
 msgid "Both autoaudiosink and %s elements are not working."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2695
+#: gst/playback/gstplaysink.c:2696
 msgid "The autoaudiosink element is not working."
 msgstr ""
 
-#: gst/playback/gstplaysink.c:2998 gst/playback/gstplaysink.c:3003
+#: gst/playback/gstplaysink.c:3003 gst/playback/gstplaysink.c:3008
 msgid "Can't play a text file without video or visualizations."
 msgstr ""
 
diff --git a/po/hr.gmo b/po/hr.gmo
new file mode 100644
index 0000000..653d8a7
--- /dev/null
+++ b/po/hr.gmo
Binary files differ
diff --git a/po/hr.po b/po/hr.po
new file mode 100644
index 0000000..85ff9d4
--- /dev/null
+++ b/po/hr.po
@@ -0,0 +1,632 @@
+# Translation of gst-plugins-base to Croatian.
+# This file is put in the public domain.
+# Tomislav Krznar <tomislav.krznar@gmail.com>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-04-16 04:19+0200\n"
+"Last-Translator: Tomislav Krznar <tomislav.krznar@gmail.com>\n"
+"Language-Team: Croatian <lokalizacija@linux.hr>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n"
+
+msgid "Could not open device for playback in mono mode."
+msgstr "Ne mogu otvoriti uređaj za reprodukciju u mono načinu."
+
+msgid "Could not open device for playback in stereo mode."
+msgstr "Ne mogu otvoriti uređaj za reprodukciju u stereo načinu."
+
+#, c-format
+msgid "Could not open device for playback in %d-channel mode."
+msgstr "Ne mogu otvoriti uređaj za reprodukciju u %d-kanalnom načinu."
+
+msgid ""
+"Could not open audio device for playback. Device is being used by another "
+"application."
+msgstr ""
+"Ne mogu otvoriti zvučni uređaj za reprodukciju. Uređaj trenutno koristi "
+"drugi program."
+
+msgid "Could not open audio device for playback."
+msgstr "Ne mogu otvoriti zvučni uređaj za reprodukciju."
+
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
+msgid "Could not open device for recording in mono mode."
+msgstr "Ne mogu otvoriti uređaj za snimanje u mono načinu."
+
+msgid "Could not open device for recording in stereo mode."
+msgstr "Ne mogu otvoriti uređaj za snimanje u stereo načinu."
+
+#, c-format
+msgid "Could not open device for recording in %d-channel mode"
+msgstr "Ne mogu otvoriti uređaj za snimanje u %d-kanalnom načinu."
+
+msgid ""
+"Could not open audio device for recording. Device is being used by another "
+"application."
+msgstr ""
+"Ne mogu otvoriti zvučni uređaj za snimanje. Uređaj trenutno koristi drugi "
+"program."
+
+msgid "Could not open audio device for recording."
+msgstr "Ne mogu otvoriti zvučni uređaj za snimanje."
+
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
+msgid "Could not open CD device for reading."
+msgstr "Ne mogu otvoriti CD uređaj za čitanje."
+
+msgid "Could not seek CD."
+msgstr "Ne mogu pretraživati CD."
+
+msgid "Could not read CD."
+msgstr "Ne mogu čitati CD."
+
+msgid "Internal data stream error."
+msgstr "Greška unutarnjeg niza podataka."
+
+#, c-format
+msgid "A %s plugin is required to play this stream, but not installed."
+msgstr ""
+"Potreban je priključak %s za reprodukciju ovog niza, ali nije instaliran."
+
+msgid "Could not determine type of stream"
+msgstr "Ne mogu odrediti vrstu niza"
+
+msgid "This appears to be a text file"
+msgstr "Ovo izgleda kao tekstualna datoteka"
+
+#, c-format
+msgid "Missing element '%s' - check your GStreamer installation."
+msgstr "Nedostaje element „%s” - provjerite vašu GStreamer instalaciju."
+
+#, c-format
+msgid "Both autovideosink and %s elements are missing."
+msgstr "Nedostaju elementi autoaudiosink i %s."
+
+msgid "The autovideosink element is missing."
+msgstr "Nedostaje element autovideosink."
+
+#, c-format
+msgid "Configured videosink %s is not working."
+msgstr "Konfigurirani videosink %s ne radi."
+
+#, c-format
+msgid "Both autovideosink and %s elements are not working."
+msgstr "Elementi autovideosink i %s ne rade."
+
+msgid "The autovideosink element is not working."
+msgstr "Element autovideosink ne radi."
+
+msgid "Custom text sink element is not usable."
+msgstr "Prilagođeni element prijamnika teksta nije uporabljiv."
+
+msgid "No volume control found"
+msgstr "Nije pronađen kontroler glasnoće"
+
+#, c-format
+msgid "Both autoaudiosink and %s elements are missing."
+msgstr "Nedostaju elementi autoaudiosink i %s."
+
+msgid "The autoaudiosink element is missing."
+msgstr "Nedostaje element autoaudiosink."
+
+#, c-format
+msgid "Configured audiosink %s is not working."
+msgstr "Konfigurirani audiosink %s ne radi."
+
+#, c-format
+msgid "Both autoaudiosink and %s elements are not working."
+msgstr "Elementi autoaudiosink i %s ne rade."
+
+msgid "The autoaudiosink element is not working."
+msgstr "Element autoaudiosink ne radi."
+
+msgid "Can't play a text file without video or visualizations."
+msgstr ""
+"Ne mogu reproducirati tekstualnu datoteku bez videozapisa ili vizualizacija."
+
+#, c-format
+msgid "No decoder available for type '%s'."
+msgstr "Nema dostupnih dekodera za vrstu „%s”."
+
+msgid "No URI specified to play from."
+msgstr "Nije naveden URI za reprodukciju."
+
+#, c-format
+msgid "Invalid URI \"%s\"."
+msgstr "Neispravan URI „%s”."
+
+msgid "This stream type cannot be played yet."
+msgstr "Ova vrsta niza se još ne može reproducirati."
+
+#, c-format
+msgid "No URI handler implemented for \"%s\"."
+msgstr "Nije implementiran URI upravitelj za „%s”."
+
+msgid "Source element is invalid."
+msgstr "Izvorni element nije ispravan."
+
+#, c-format
+msgid "Error while sending data to \"%s:%d\"."
+msgstr "Greška pri slanju podataka u „%s:%d”."
+
+msgid "This CD has no audio tracks"
+msgstr "Ovaj CD nema zvučne pjesme"
+
+msgid "Can't record audio fast enough"
+msgstr "Ne mogu dovoljno brzo snimati zvuk"
+
+msgid "Failed to read tag: not enough data"
+msgstr "Nisam uspio čitati oznaku: nema dovoljno podataka"
+
+msgid "track ID"
+msgstr "ID pjesme"
+
+msgid "MusicBrainz track ID"
+msgstr "MusicBrainz ID pjesme"
+
+msgid "artist ID"
+msgstr "ID izvođača"
+
+msgid "MusicBrainz artist ID"
+msgstr "MusicBrainz ID izvođača"
+
+msgid "album ID"
+msgstr "ID albuma"
+
+msgid "MusicBrainz album ID"
+msgstr "MusicBrainz ID albuma"
+
+msgid "album artist ID"
+msgstr "ID izvođača albuma"
+
+msgid "MusicBrainz album artist ID"
+msgstr "MusicBrainz ID izvođača albuma"
+
+msgid "track TRM ID"
+msgstr "TRM ID pjesme"
+
+msgid "MusicBrainz TRM ID"
+msgstr "MusicBrainz TRM ID"
+
+msgid "capturing shutter speed"
+msgstr "brzina blende"
+
+msgid "Shutter speed used when capturing an image, in seconds"
+msgstr "Brzina prekidača korištena za snimanje slika, u sekundama"
+
+msgid "capturing focal ratio"
+msgstr "omjer fokusa"
+
+msgid "Focal ratio (f-number) used when capturing the image"
+msgstr "Omjer fokusa (f-broj) korišten za snimanje slika"
+
+msgid "capturing focal length"
+msgstr "žarišna duljina"
+
+msgid "Focal length of the lens used capturing the image, in mm"
+msgstr "Žarišna duljina leće korištene za snimanje slika, u mm"
+
+msgid "capturing digital zoom ratio"
+msgstr "omjer digitalnog uvećavanja"
+
+msgid "Digital zoom ratio used when capturing an image"
+msgstr "Omjer digitalnog uvećavanja korišten za snimanje slika"
+
+msgid "capturing iso speed"
+msgstr "iso brzina"
+
+msgid "The ISO speed used when capturing an image"
+msgstr "ISO brzina korištena za snimanje slika"
+
+msgid "capturing exposure program"
+msgstr "program ekspozicije"
+
+msgid "The exposure program used when capturing an image"
+msgstr "Program ekspozicije korišten za snimanje slika"
+
+msgid "capturing exposure mode"
+msgstr "način ekspozicije"
+
+msgid "The exposure mode used when capturing an image"
+msgstr "Način ekspozicije korišten za snimanje slika"
+
+msgid "capturing exposure compensation"
+msgstr "kompenzacija ekspozicije"
+
+msgid "The exposure compensation used when capturing an image"
+msgstr "Kompenzacija ekspozicije korištena za snimanje slika"
+
+msgid "capturing scene capture type"
+msgstr "vrsta snimanja scene"
+
+msgid "The scene capture mode used when capturing an image"
+msgstr "Način snimanja scene korišten za snimanje slika"
+
+msgid "capturing gain adjustment"
+msgstr "korekcija pojačanja"
+
+msgid "The overall gain adjustment applied on an image"
+msgstr "Ukupna korekcija pojačanja primijenjena na sliku"
+
+msgid "capturing white balance"
+msgstr "balans bijele boje"
+
+msgid "The white balance mode set when capturing an image"
+msgstr "Način balansa bijele boje postavljen za snimanje slika"
+
+msgid "capturing contrast"
+msgstr "kontrast"
+
+msgid "The direction of contrast processing applied when capturing an image"
+msgstr "Upute za obradu kontrasta primijenjene za snimanje slika"
+
+msgid "capturing saturation"
+msgstr "zasićenje"
+
+msgid "The direction of saturation processing applied when capturing an image"
+msgstr "Upute za obradu zasićenja primijenjene za snimanje slika"
+
+msgid "capturing sharpness"
+msgstr "oštrina"
+
+msgid "The direction of sharpness processing applied when capturing an image"
+msgstr "Upute za obradu oštrine primijenjene za snimanje slika"
+
+msgid "capturing flash fired"
+msgstr "uključivanje bljeskalice"
+
+msgid "If the flash fired while capturing an image"
+msgstr "Je li se uključila bljeskalica za snimanje slike"
+
+msgid "capturing flash mode"
+msgstr "način bljeskalice"
+
+msgid "The selected flash mode while capturing an image"
+msgstr "Odabrani način bljeskalice za snimanje slike"
+
+msgid "capturing metering mode"
+msgstr "način mjerenja"
+
+msgid ""
+"The metering mode used while determining exposure for capturing an image"
+msgstr "Način mjerenja korišten pri određivanju ekspozicije za snimanje slike"
+
+msgid "capturing source"
+msgstr "izvor"
+
+msgid "The source or type of device used for the capture"
+msgstr "Izvor ili vrsta uređaja korištena za snimanje"
+
+msgid "image horizontal ppi"
+msgstr "vodoravni ppi slike"
+
+msgid "Media (image/video) intended horizontal pixel density in ppi"
+msgstr "Ciljana vodoravna gustoća piksela medija (slike/videozapisa) u ppi"
+
+msgid "image vertical ppi"
+msgstr "okomiti ppi slike"
+
+msgid "Media (image/video) intended vertical pixel density in ppi"
+msgstr "Ciljana okomita gustoća piksela medija (slike/videozapisa) u ppi"
+
+msgid "ID3v2 frame"
+msgstr ""
+
+msgid "unparsed id3v2 tag frame"
+msgstr ""
+
+msgid "ID3 tag"
+msgstr "ID3 oznaka"
+
+msgid "APE tag"
+msgstr "APE oznaka"
+
+msgid "ICY internet radio"
+msgstr "ICY internetski radio"
+
+msgid "Apple Lossless Audio (ALAC)"
+msgstr "Apple Lossless Audio (ALAC)"
+
+msgid "Free Lossless Audio Codec (FLAC)"
+msgstr "Free Lossless Audio Codec (FLAC)"
+
+msgid "Lossless True Audio (TTA)"
+msgstr "Lossless True Audio (TTA)"
+
+msgid "Windows Media Speech"
+msgstr "Windows Media Speech"
+
+msgid "CYUV Lossless"
+msgstr "CYUV Lossless"
+
+msgid "FFMpeg v1"
+msgstr "FFMpeg v1"
+
+msgid "Lossless MSZH"
+msgstr "Lossless MSZH"
+
+msgid "Run-length encoding"
+msgstr "Run-length kodiranje"
+
+msgid "Subtitle"
+msgstr ""
+
+#, fuzzy
+msgid "MPL2 subtitle format"
+msgstr "TMPlayer oblik titlova"
+
+#, fuzzy
+msgid "DKS subtitle format"
+msgstr "Sami oblik titlova"
+
+#, fuzzy
+msgid "QTtext subtitle format"
+msgstr "Kate oblik titlova"
+
+msgid "Sami subtitle format"
+msgstr "Sami oblik titlova"
+
+msgid "TMPlayer subtitle format"
+msgstr "TMPlayer oblik titlova"
+
+msgid "Kate subtitle format"
+msgstr "Kate oblik titlova"
+
+#, fuzzy
+msgid "Uncompressed video"
+msgstr "Nekomprimirani YUV"
+
+#, fuzzy
+msgid "Uncompressed gray"
+msgstr "Uncompressed Gray Image"
+
+#, fuzzy, c-format
+msgid "Uncompressed %s YUV %s"
+msgstr "Nekomprimirani YUV"
+
+#, fuzzy, c-format
+msgid "Uncompressed %s%d-bit %s"
+msgstr "Nekomprimirani paletizirani %d-bitni %s"
+
+#, c-format
+msgid "DivX MPEG-4 Version %d"
+msgstr "DivX MPEG-4 inačica %d"
+
+#, fuzzy
+msgid "Uncompressed audio"
+msgstr "Nekomprimirani YUV"
+
+#, fuzzy, c-format
+msgid "Raw %d-bit %s audio"
+msgstr "Sirovi %d-bitni PCM zvuk"
+
+msgid "Audio CD source"
+msgstr "Audio CD izvor"
+
+msgid "DVD source"
+msgstr "DVD izvor"
+
+msgid "Real Time Streaming Protocol (RTSP) source"
+msgstr "Real Time Streaming Protocol (RTSP) izvor"
+
+msgid "Microsoft Media Server (MMS) protocol source"
+msgstr "Izvor Microsoft Media Server (MMS) protokola"
+
+#, c-format
+msgid "%s protocol source"
+msgstr "Izvor %s protokola"
+
+#, c-format
+msgid "%s video RTP depayloader"
+msgstr "%s video RTP uklonitelj opterećenja"
+
+#, c-format
+msgid "%s audio RTP depayloader"
+msgstr "%s audio RTP uklonitelj opterećenja"
+
+#, c-format
+msgid "%s RTP depayloader"
+msgstr "%s RTP uklonitelj opterećenja"
+
+#, c-format
+msgid "%s demuxer"
+msgstr "%s demultipleksor"
+
+#, c-format
+msgid "%s decoder"
+msgstr "%s dekoder"
+
+#, c-format
+msgid "%s video RTP payloader"
+msgstr "%s video RTP opteretitelj"
+
+#, c-format
+msgid "%s audio RTP payloader"
+msgstr "%s audio RTP opteretitelj"
+
+#, c-format
+msgid "%s RTP payloader"
+msgstr "%s RTP opteretitelj"
+
+#, c-format
+msgid "%s muxer"
+msgstr "%s multipleksor"
+
+#, c-format
+msgid "%s encoder"
+msgstr "%s koder"
+
+#, c-format
+msgid "GStreamer element %s"
+msgstr "GStreamer element %s"
+
+msgid "Unknown source element"
+msgstr "Nepoznat element izvora"
+
+msgid "Unknown sink element"
+msgstr "Nepoznat element prijamnika"
+
+msgid "Unknown element"
+msgstr "Nepoznat element"
+
+msgid "Unknown decoder element"
+msgstr "Nepoznat element dekodera"
+
+msgid "Unknown encoder element"
+msgstr "Nepoznat element kodera"
+
+msgid "Plugin or element of unknown type"
+msgstr "Priključak ili element nepoznate vrste"
+
+#~ msgid "Master"
+#~ msgstr "Glavni"
+
+#~ msgid "Bass"
+#~ msgstr "Niski"
+
+#~ msgid "Treble"
+#~ msgstr "Visoki"
+
+#~ msgid "PCM"
+#~ msgstr "PCM"
+
+#~ msgid "Synth"
+#~ msgstr "Sintetizator"
+
+#~ msgid "Line-in"
+#~ msgstr "Ulazna linija"
+
+#~ msgid "CD"
+#~ msgstr "CD"
+
+#~ msgid "Microphone"
+#~ msgstr "Mikrofon"
+
+#~ msgid "PC Speaker"
+#~ msgstr "PC zvučnik"
+
+#~ msgid "Playback"
+#~ msgstr "Reprodukcija"
+
+#~ msgid "Capture"
+#~ msgstr "Snimanje"
+
+#~ msgid "Could not open vfs file \"%s\" for writing: %s."
+#~ msgstr "Ne mogu otvoriti vfs datoteku „%s” za pisanje: %s."
+
+#~ msgid "No filename given"
+#~ msgstr "Nije zadano ime datoteke"
+
+#~ msgid "Could not close vfs file \"%s\"."
+#~ msgstr "Ne mogu zatvoriti vfs datoteku „%s”."
+
+#~ msgid "Error while writing to file \"%s\"."
+#~ msgstr "Greška pri pisanju u datoteku „%s”."
+
+#~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
+#~ msgstr "Neispravan URI titlova „%s”, titlovi su onemogućeni."
+
+#~ msgid "RTSP streams cannot be played yet."
+#~ msgstr "Još ne mogu reproducirati RTSP nizove."
+
+#~ msgid "Could not create \"decodebin\" element."
+#~ msgstr "Ne mogu stvoriti element „decodebin”."
+
+#~ msgid ""
+#~ "Only a subtitle stream was detected. Either you are loading a subtitle "
+#~ "file or some other type of text file, or the media file was not "
+#~ "recognized."
+#~ msgstr ""
+#~ "Pronađen je samo niz titlova. Ili ste učitali datoteku titlova ili neku "
+#~ "drugu vrstu tekstualne datoteke, ili medijska datoteka nije prepoznata."
+
+#~ msgid ""
+#~ "You do not have a decoder installed to handle this file. You might need "
+#~ "to install the necessary plugins."
+#~ msgstr ""
+#~ "Nemate instaliran dekoder za upravljanje ovom datotekom. Trebate "
+#~ "instalirati potrebne priključke."
+
+#~ msgid "This is not a media file"
+#~ msgstr "Ovo nije medijska datoteka"
+
+#~ msgid "A subtitle stream was detected, but no video stream."
+#~ msgstr "Pronađen je niz titlova, ali nije video niz."
+
+#~ msgid "Both autovideosink and xvimagesink elements are missing."
+#~ msgstr "Nedostaju elementi autovideosink i xvimagesink."
+
+#~ msgid "Both autoaudiosink and alsasink elements are missing."
+#~ msgstr "Nedostaju elementi autoaudiosink i alsasink."
+
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Greška pri slanju podataka gdp zaglavlja u „%s:%d”."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Greška pri slanju podataka gdp opterećenja „%s:%d”."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Spajanje na %s:%d odbijeno."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Nekomprimirani ravninski YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Nekomprimirani ravninski YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Nekomprimirani pakirani YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Nekomprimirani pakirani YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Nekomprimirani pakirani YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Nekomprimirani pakirani YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Nekomprimirani pakirani YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Nekomprimirani ravninski YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Nekomprimirani ravninski YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Nekomprimirana crno-bijela Y-ravnina"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Sirovi PCM zvuk"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Sirovi %d-bitni zvuk s pomičnim zarezom"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Sirovi zvuk s pomičnim zarezom"
+
+#~ msgid "No device specified."
+#~ msgstr "Nije naveden uređaj."
+
+#~ msgid "Device \"%s\" does not exist."
+#~ msgstr "Uređaj „%s” ne postoji."
+
+#~ msgid "Device \"%s\" is already being used."
+#~ msgstr "Uređaj „%s” se već koristi."
+
+#~ msgid "Could not open device \"%s\" for reading and writing."
+#~ msgstr "Ne mogu otvoriti uređaj „%s” za čitanje i pisanje."
diff --git a/po/hu.gmo b/po/hu.gmo
index 4821359..14ee2b7 100644
--- a/po/hu.gmo
+++ b/po/hu.gmo
Binary files differ
diff --git a/po/hu.po b/po/hu.po
index ef45f7a..f1f6b71 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,13 +3,13 @@
 # Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
 #
 # Laszlo Dvornik <dvornik@invitel.hu>, 2004.
-# Gabor Kelemen <kelemeng@gnome.hu>, 2006, 2007, 2008, 2009.
+# Gabor Kelemen <kelemeng@gnome.hu>, 2006, 2007, 2008, 2009, 2012.
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.30.3\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2010-11-03 02:48+0100\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-11-29 14:05+0100\n"
 "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
 "Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
 "Language: hu\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Rosetta-Export-Date: 2007-03-10 00:18+0000\n"
-"X-Generator: KBabel 1.11.4\n"
+"X-Generator: Lokalize 1.4\n"
 "Plural-Forms:  nplurals=2; plural=(n != 1);\n"
 
 msgid "Could not open device for playback in mono mode."
@@ -40,6 +40,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nem lehet lejátszásra megnyitni a hangeszközt."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Nem lehet felvételre megnyitni az eszközt mono módban."
 
@@ -60,6 +63,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nem lehet felvételre megnyitni a hangeszközt."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nem lehet olvasásra megnyitni a CD-eszközt."
 
@@ -239,13 +245,11 @@
 msgid "The exposure mode used when capturing an image"
 msgstr "A kép felvételéhez használt expozíciós mód"
 
-#, fuzzy
 msgid "capturing exposure compensation"
-msgstr "felvétel expozíciós módja"
+msgstr "felvétel expozíciós kompenzációja"
 
-#, fuzzy
 msgid "The exposure compensation used when capturing an image"
-msgstr "A kép felvételéhez használt expozíciós mód"
+msgstr "A kép felvételéhez használt expozíciós kompenzáció"
 
 msgid "capturing scene capture type"
 msgstr "felvétel helyszínfelvételi módja"
@@ -321,10 +325,10 @@
 msgstr "A média (kép/videó) tervezett függőleges képpontsűrűsége ppi-ben"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "ID3v2 keret"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "feldolgozatlan id3v2 címke keret"
 
 msgid "ID3 tag"
 msgstr "ID3 címke"
@@ -360,19 +364,16 @@
 msgstr "Műsorhossz-kódolás"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Felirat"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "TMPlayer feliratformátum"
+msgstr "MPL2 feliratformátum"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Sami feliratformátum"
+msgstr "DKS feliratformátum"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Kate feliratformátum"
+msgstr "QTtext feliratformátum"
 
 msgid "Sami subtitle format"
 msgstr "Sami feliratformátum"
@@ -383,33 +384,30 @@
 msgid "Kate subtitle format"
 msgstr "Kate feliratformátum"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "Tömörítetlen YUV"
+msgstr "Tömörítetlen videó"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Tömörítetlen szürke kép"
+msgstr "Tömörítetlen szürke"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "Tömörítetlen YUV"
+msgstr "Tömörítetlen %s YUV %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Tömörítetlen, palettás %d bites %s"
+msgstr "Tömörítetlen, %s%d bites %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 %d. verzió"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "Tömörítetlen YUV"
+msgstr "Tömörítetlen hang"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Nyers %d bites PCM hang"
+msgstr "Nyers %d bites %s hang"
 
 msgid "Audio CD source"
 msgstr "Hang CD forrás"
@@ -522,48 +520,6 @@
 #~ msgid "Capture"
 #~ msgstr "Felvétel"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "A kapcsolat visszautasítva a következőhöz: %s:%d."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Tömörítetlen síkbeli YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Tömörítetlen síkbeli YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Tömörítetlen pakolt YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Tömörítetlen pakolt YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Tömörítetlen pakolt YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Tömörítetlen pakolt YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Tömörítetlen pakolt YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Tömörítetlen síkbeli YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Tömörítetlen síkbeli YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Tömörítetlen fekete-fehér Y-sík"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Nyers PCM hang"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Nyers %d bites lebegőpontos hang"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Nyers lebegőpontos hang"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "Nem lehet írásra megnyitni a(z) „%s” vfs-fájlt: %s."
 
@@ -612,6 +568,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "Az autoaudiosink és az alsasink elem is hiányzik."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Hiba a gdp fejlécadatok küldésekor a következőnek: „%s:%d”."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Hiba a gdp küldeményadatok elküldésekor a következőnek: „%s:%d”."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "A kapcsolat visszautasítva a következőhöz: %s:%d."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Tömörítetlen síkbeli YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Tömörítetlen síkbeli YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Tömörítetlen pakolt YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Tömörítetlen pakolt YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Tömörítetlen pakolt YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Tömörítetlen pakolt YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Tömörítetlen pakolt YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Tömörítetlen síkbeli YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Tömörítetlen síkbeli YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Tömörítetlen fekete-fehér Y-sík"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Nyers PCM hang"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Nyers %d bites lebegőpontos hang"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Nyers lebegőpontos hang"
+
 #~ msgid "No device specified."
 #~ msgstr "Nincs megadva eszköz."
 
@@ -623,9 +627,3 @@
 
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Nem lehet olvasásra és írásra megnyitni az eszközt („%s”)."
-
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Hiba a gdp fejlécadatok küldésekor a következőnek: „%s:%d”."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Hiba a gdp küldeményadatok elküldésekor a következőnek: „%s:%d”."
diff --git a/po/id.gmo b/po/id.gmo
index 5ce9897..e588d59 100644
--- a/po/id.gmo
+++ b/po/id.gmo
Binary files differ
diff --git a/po/id.po b/po/id.po
index 3788936..6ba41a1 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2012-01-28 11:31+0700\n"
 "Last-Translator: Andhika Padmawan <andhika.padmawan@gmail.com>\n"
 "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n"
@@ -35,6 +35,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Tak dapat membuka divais audio untuk putar kembali."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Tak dapat membuka divais untuk merekam dalam mode mono."
 
@@ -55,6 +58,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Tak dapat membuka divais audio untuk merekam."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Tak dapat membuka divais CD untuk dibaca."
 
diff --git a/po/it.gmo b/po/it.gmo
index 29dd155..aa2dc97 100644
--- a/po/it.gmo
+++ b/po/it.gmo
Binary files differ
diff --git a/po/it.po b/po/it.po
index 326a4a1..1a0588a 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.28.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-04-28 14:27+0200\n"
 "Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Impossibile aprire il device audio per la riproduzione."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Impossibile aprire il device per la registrazione in modalità mono."
 
@@ -58,6 +61,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Impossibile aprire il device audio per la registrazione."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Impossibile aprire il device CD in lettura."
 
diff --git a/po/ja.gmo b/po/ja.gmo
index 5d788b2..f3c36ea 100644
--- a/po/ja.gmo
+++ b/po/ja.gmo
Binary files differ
diff --git a/po/ja.po b/po/ja.po
index 19d1464..d9d4843 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.30.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-10-25 10:27+0900\n"
 "Last-Translator: Makoto Kato <makoto.kt@gmail.com>\n"
 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "再生用にオーティオデバイスを開くことができませんでした"
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "モノラルモードで録音用にデバイスを開くことができませんでした"
 
@@ -57,6 +60,9 @@
 msgid "Could not open audio device for recording."
 msgstr "録音用にオーディオデバイスを開くことができませんでした"
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "読み込み用に CD デバイスを開くことができませんでした"
 
diff --git a/po/lt.gmo b/po/lt.gmo
index f2a6a56..234ab93 100644
--- a/po/lt.gmo
+++ b/po/lt.gmo
Binary files differ
diff --git a/po/lt.po b/po/lt.po
index d58eefd..223be98 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base-0.10.15.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2008-03-07 23:43+0200\n"
 "Last-Translator: Gintautas Miliauskas <gintas@akl.lt>\n"
 "Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nepavyko atverti audio įrenginio grojimui."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Nepavyko atverti įrenginio monofoniniam įrašymui."
 
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nepavyko atverti audio įrenginio įrašymui."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nepavyko atverti CD įrenginio skaitymui."
 
diff --git a/po/lv.gmo b/po/lv.gmo
index 3387b92..c6dc7b5 100644
--- a/po/lv.gmo
+++ b/po/lv.gmo
Binary files differ
diff --git a/po/lv.po b/po/lv.po
index d068acb..6e08a0d 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-09-02 12:02-0000\n"
 "Last-Translator: Rihards Priedītis <rprieditis@gmail.com>\n"
 "Language-Team: Latvian <translation-team-lv@lists.sourceforge.net>\n"
@@ -42,6 +42,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nevarēja atvērt audio ierīci atskaņošanai."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Nevarēja atvērt ierīci ierakstīšanai mono režīmā."
 
@@ -62,6 +65,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nevarēja atvērt audio ierīci ierakstīšanai."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nevarēja atvērt CD ierīci lasīšanai."
 
diff --git a/po/nb.gmo b/po/nb.gmo
index 00733ce..71584a8 100644
--- a/po/nb.gmo
+++ b/po/nb.gmo
Binary files differ
diff --git a/po/nb.po b/po/nb.po
index ab1dbdf..24138a3 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,20 +1,24 @@
 # Norwegian bokmaal translation of gst-utils.
 # This file is put in the public domain.
+#
 # Kjartan Maraas <kmaraas@gnome.org>, 2004-2010.
+# Johnny A. Solbu <johnny@solbu.net>, 2012,
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.30.3\n"
+"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2010-10-24 21:44+0200\n"
-"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-07-29 01:38+0100\n"
+"Last-Translator: Johnny A. Solbu <johnny@solbu.net>\n"
 "Language-Team: Norwegian Bokmaal <i18n-nb@lister.ping.uio.no>\n"
 "Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-Language: Norwegian Bokmal\n"
+"X-Poedit-Country: NORWAY\n"
 
 msgid "Could not open device for playback in mono mode."
 msgstr "Kunne ikke åpne enheten for avspilling i mono-modus."
@@ -22,40 +26,45 @@
 msgid "Could not open device for playback in stereo mode."
 msgstr "Kunne ikke åpne enheten for avspilling i stereo-modus."
 
-#, fuzzy, c-format
+#, c-format
 msgid "Could not open device for playback in %d-channel mode."
-msgstr "Kunne ikke åpne CD-enheten for lesing."
+msgstr "Kunne ikke åpne enhet for avspilling i %d-kanalmodus."
 
-#, fuzzy
 msgid ""
 "Could not open audio device for playback. Device is being used by another "
 "application."
-msgstr "Kunne ikke åpne CD-enheten for lesing."
+msgstr ""
+"Kunne ikke åpne lydenheten for avspilling. Enheten brukes av et annet "
+"program."
 
 msgid "Could not open audio device for playback."
 msgstr "Kunne ikke åpne lydenheten for avspilling."
 
-#, fuzzy
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
-msgstr "Kunne ikke åpne CD-enheten for lesing."
+msgstr "Kunne ikke åpne enhet for opptak i monomodus."
 
-#, fuzzy
 msgid "Could not open device for recording in stereo mode."
-msgstr "Kunne ikke åpne CD-enheten for lesing."
+msgstr "Kunne ikke åpne enhet for opptak i stereomodus"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Could not open device for recording in %d-channel mode"
-msgstr "Kunne ikke åpne CD-enheten for lesing."
+msgstr "Kunne ikke åpne enhet for opptak i %d-kanalmodus."
 
-#, fuzzy
 msgid ""
 "Could not open audio device for recording. Device is being used by another "
 "application."
-msgstr "Kunne ikke åpne CD-enheten for lesing."
+msgstr ""
+"Kunne ikke åpne lydenheten for opptak. Enheten brukes av et annet program."
 
 msgid "Could not open audio device for recording."
 msgstr "Kunne ikke åpne lydenheten for opptak."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Kunne ikke åpne CD-enheten for lesing."
 
@@ -82,56 +91,56 @@
 
 #, c-format
 msgid "Missing element '%s' - check your GStreamer installation."
-msgstr ""
+msgstr "Mangler elementet «%s» - kontroller GStreamer-installasjonen."
 
 #, c-format
 msgid "Both autovideosink and %s elements are missing."
-msgstr ""
+msgstr "Både autobildesluk- og %s-elementer mangler."
 
 msgid "The autovideosink element is missing."
-msgstr ""
+msgstr "Autobildeslukelementet mangler."
 
 #, c-format
 msgid "Configured videosink %s is not working."
-msgstr ""
+msgstr "Konfigurert bildesluk %s fungerer ikke."
 
 #, c-format
 msgid "Both autovideosink and %s elements are not working."
-msgstr ""
+msgstr "Både autobildesluk- og %s-elementer virker ikke."
 
 msgid "The autovideosink element is not working."
-msgstr ""
+msgstr "autobildeslukelementet fungerer ikke."
 
 msgid "Custom text sink element is not usable."
-msgstr ""
+msgstr "Tilpasset tekstslukelement er ikke brukbart."
 
 msgid "No volume control found"
 msgstr "Fant ikke volumkontroll"
 
 #, c-format
 msgid "Both autoaudiosink and %s elements are missing."
-msgstr ""
+msgstr "Både autolydsluk- og %s-elementer mangler."
 
 msgid "The autoaudiosink element is missing."
-msgstr ""
+msgstr "Autolydslukelementet mangler"
 
 #, c-format
 msgid "Configured audiosink %s is not working."
-msgstr ""
+msgstr "Konfigurert lydsluk %s fungerer ikke."
 
 #, c-format
 msgid "Both autoaudiosink and %s elements are not working."
-msgstr ""
+msgstr "Både autolydsluk- og %s-elementer virker ikke."
 
 msgid "The autoaudiosink element is not working."
-msgstr ""
+msgstr "Autolydslukelementet fungerer ikke."
 
 msgid "Can't play a text file without video or visualizations."
-msgstr ""
+msgstr "Kan ikke spille av en tekstfil uten film eller visualiseringer"
 
 #, c-format
 msgid "No decoder available for type '%s'."
-msgstr ""
+msgstr "Ingen dekoder tilgjengelig for type «%s»."
 
 msgid "No URI specified to play from."
 msgstr "Ingen URI for avspilling oppgitt."
@@ -141,178 +150,179 @@
 msgstr "Ugyldig URI «%s»."
 
 msgid "This stream type cannot be played yet."
-msgstr ""
+msgstr "Dennestrømtypen kan ikke spilles ennå."
 
 #, c-format
 msgid "No URI handler implemented for \"%s\"."
-msgstr ""
+msgstr "Ingen URI-håndterer er implementert for «%s»."
 
 msgid "Source element is invalid."
 msgstr "Kildeelement er ugyldig."
 
 #, c-format
 msgid "Error while sending data to \"%s:%d\"."
-msgstr ""
+msgstr "Feil ved sending av data til «%s:%d»."
 
 msgid "This CD has no audio tracks"
 msgstr "Denne CDen har ingen lydspor"
 
 msgid "Can't record audio fast enough"
-msgstr ""
+msgstr "Kan ikke ta opp lyd rask nok"
 
 msgid "Failed to read tag: not enough data"
-msgstr ""
+msgstr "Klarte ikke å lese merket: Ikke nok data"
 
 msgid "track ID"
 msgstr "spor-ID"
 
 msgid "MusicBrainz track ID"
-msgstr ""
+msgstr "MusicBrainz spor-id"
 
 msgid "artist ID"
 msgstr "artist-ID"
 
 msgid "MusicBrainz artist ID"
-msgstr ""
+msgstr "MusicBrainz artist-id"
 
 msgid "album ID"
 msgstr "album-ID"
 
 msgid "MusicBrainz album ID"
-msgstr ""
+msgstr "MusicBrainz album-id"
 
 msgid "album artist ID"
-msgstr ""
+msgstr "albumartist-id"
 
 msgid "MusicBrainz album artist ID"
-msgstr ""
+msgstr "MusicBrainz albumartist-id"
 
 msgid "track TRM ID"
-msgstr ""
+msgstr "spor TRM-id"
 
 msgid "MusicBrainz TRM ID"
-msgstr ""
+msgstr "MusicBrainz TRM-id"
 
 msgid "capturing shutter speed"
-msgstr ""
+msgstr "opptakslukkerhastighet"
 
 msgid "Shutter speed used when capturing an image, in seconds"
-msgstr ""
+msgstr "Lukkehastighet som benyttes når du tar et bilde, i sekunder"
 
 msgid "capturing focal ratio"
-msgstr ""
+msgstr "opptaksbrennvidder"
 
 msgid "Focal ratio (f-number) used when capturing the image"
-msgstr ""
+msgstr "Brennvidden (f-tall) som benyttes når du tar bildet"
 
 msgid "capturing focal length"
-msgstr ""
+msgstr "opptaksbrennvidde"
 
 msgid "Focal length of the lens used capturing the image, in mm"
-msgstr ""
+msgstr "Brennvidden til objektivet som brukes når du tar bildet, i mm"
 
 msgid "capturing digital zoom ratio"
-msgstr ""
+msgstr "fanger digitalt zoomforhold"
 
 msgid "Digital zoom ratio used when capturing an image"
-msgstr ""
+msgstr "Digitalt zoomforhold som benyttes når du tar et bilde"
 
 msgid "capturing iso speed"
-msgstr ""
+msgstr "opptaks-ISO-hastighet"
 
 msgid "The ISO speed used when capturing an image"
-msgstr ""
+msgstr "ISO-hastigheten som benyttes når du tar et bilde"
 
 msgid "capturing exposure program"
-msgstr ""
+msgstr "opptakseksponeringsprogram"
 
 msgid "The exposure program used when capturing an image"
-msgstr ""
+msgstr "Eksponeringsprogrammet som benyttes når du tar et bilde"
 
 msgid "capturing exposure mode"
-msgstr ""
+msgstr "opptakseksponeringsmodus"
 
 msgid "The exposure mode used when capturing an image"
-msgstr ""
+msgstr "Eksponeringsmodusen som benyttes når du tar et bilde"
 
 msgid "capturing exposure compensation"
-msgstr ""
+msgstr "opptakseksponeringskompensasjon"
 
 msgid "The exposure compensation used when capturing an image"
-msgstr ""
+msgstr "Eksponeringskompensasjonen som benyttes når du tar et bilde"
 
 msgid "capturing scene capture type"
-msgstr ""
+msgstr "opptaksscene opptakstype"
 
 msgid "The scene capture mode used when capturing an image"
-msgstr ""
+msgstr "Sceneopptaksmodus som anvendes når du tar et bilde"
 
 msgid "capturing gain adjustment"
-msgstr ""
+msgstr "opptaksstyrkejustering"
 
 msgid "The overall gain adjustment applied on an image"
-msgstr ""
+msgstr "Den samlede styrkejusteringen som anvendes på et bilde"
 
 msgid "capturing white balance"
-msgstr ""
+msgstr "opptakshvitbalanse"
 
 msgid "The white balance mode set when capturing an image"
-msgstr ""
+msgstr "Hvitbalanseinnstillingen når du tar et bilde"
 
 msgid "capturing contrast"
-msgstr ""
+msgstr "opptakskontrast"
 
 msgid "The direction of contrast processing applied when capturing an image"
-msgstr ""
+msgstr "Retningen av kontrastbehandling som anvendes når du tar et bilde"
 
 msgid "capturing saturation"
-msgstr ""
+msgstr "opptaksmetning"
 
 msgid "The direction of saturation processing applied when capturing an image"
-msgstr ""
+msgstr "Retningen av metningsbehandling som anvendes når du tar et bilde"
 
 msgid "capturing sharpness"
-msgstr ""
+msgstr "opptaksskarphet"
 
 msgid "The direction of sharpness processing applied when capturing an image"
-msgstr ""
+msgstr "Retningen av skarphetsbehandling som anvendes når du tar et bilde"
 
 msgid "capturing flash fired"
-msgstr ""
+msgstr "opptaksblits avfyrt"
 
 msgid "If the flash fired while capturing an image"
-msgstr ""
+msgstr "Om blitsen avfyres mens du tar et bilde"
 
 msgid "capturing flash mode"
-msgstr ""
+msgstr "opptaksblitsmodus"
 
 msgid "The selected flash mode while capturing an image"
-msgstr ""
+msgstr "Valgt blitsmodus mens du tar et bilde"
 
 msgid "capturing metering mode"
-msgstr ""
+msgstr "opptaksmålemodus"
 
 msgid ""
 "The metering mode used while determining exposure for capturing an image"
 msgstr ""
+"Målemodus som brukes mens man bestemmer eksponeringen for å ta et bilde"
 
 msgid "capturing source"
-msgstr ""
+msgstr "opptakskilde"
 
 msgid "The source or type of device used for the capture"
-msgstr ""
+msgstr "Kilden eller type enhet som brukes for opptak"
 
 msgid "image horizontal ppi"
-msgstr ""
+msgstr "Bilde horisontalt (ppi)"
 
 msgid "Media (image/video) intended horizontal pixel density in ppi"
-msgstr ""
+msgstr "Media (bilde/video) beregnet horisontal pikseltetthet i ppi"
 
 msgid "image vertical ppi"
-msgstr ""
+msgstr "Bilde vertikalt (ppi)"
 
 msgid "Media (image/video) intended vertical pixel density in ppi"
-msgstr ""
+msgstr "Media (bilde/video) beregnet vertikal piksel tetthet i ppi"
 
 msgid "ID3v2 frame"
 msgstr ""
@@ -321,155 +331,161 @@
 msgstr ""
 
 msgid "ID3 tag"
-msgstr ""
+msgstr "ID3-merke"
 
 msgid "APE tag"
-msgstr ""
+msgstr "APE-merke"
 
 msgid "ICY internet radio"
-msgstr ""
+msgstr "ICY internettradio"
 
 msgid "Apple Lossless Audio (ALAC)"
-msgstr ""
+msgstr "Apple Lossless Audio (ALAC)"
 
 msgid "Free Lossless Audio Codec (FLAC)"
-msgstr ""
+msgstr "Free Lossless Audio Codec (FLAC)"
 
 msgid "Lossless True Audio (TTA)"
-msgstr ""
+msgstr "Tapsfri True Audio (TTA)"
 
 msgid "Windows Media Speech"
-msgstr ""
+msgstr "Windows Mediatale"
 
 msgid "CYUV Lossless"
-msgstr ""
+msgstr "CYUV tapsfritt"
 
 msgid "FFMpeg v1"
-msgstr ""
+msgstr "FFMpeg v1"
 
 msgid "Lossless MSZH"
-msgstr ""
+msgstr "Tapsfritt MSZH"
 
 msgid "Run-length encoding"
-msgstr ""
+msgstr "Kjørelengde-koding"
 
 msgid "Subtitle"
 msgstr ""
 
+#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr ""
+msgstr "TMPlayer undertekstformat"
 
+#, fuzzy
 msgid "DKS subtitle format"
-msgstr ""
+msgstr "Samisk undertekstformat"
 
+#, fuzzy
 msgid "QTtext subtitle format"
-msgstr ""
+msgstr "Kate undertekstformat"
 
 msgid "Sami subtitle format"
-msgstr ""
+msgstr "Samisk undertekstformat"
 
 msgid "TMPlayer subtitle format"
-msgstr ""
+msgstr "TMPlayer undertekstformat"
 
 msgid "Kate subtitle format"
-msgstr ""
+msgstr "Kate undertekstformat"
 
+#, fuzzy
 msgid "Uncompressed video"
-msgstr ""
+msgstr "Ukomprimert YUV"
 
+#, fuzzy
 msgid "Uncompressed gray"
-msgstr ""
+msgstr "Ukomprimert grått bilde"
 
-#, c-format
+#, fuzzy, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr ""
+msgstr "Ukomprimert YUV"
 
-#, c-format
+#, fuzzy, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr ""
+msgstr "Ukomprimert palettisert %d-bit %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
-msgstr ""
+msgstr "DivX MPEG-4-versjon %d"
 
+#, fuzzy
 msgid "Uncompressed audio"
-msgstr ""
+msgstr "Ukomprimert YUV"
 
-#, c-format
+#, fuzzy, c-format
 msgid "Raw %d-bit %s audio"
-msgstr ""
+msgstr "Rå %d-bit PCM-lyd"
 
 msgid "Audio CD source"
-msgstr ""
+msgstr "Lyd-CD-kilde"
 
 msgid "DVD source"
-msgstr ""
+msgstr "DVD-kilde"
 
 msgid "Real Time Streaming Protocol (RTSP) source"
-msgstr ""
+msgstr "Sanntidsdirekteavspillingsprotokoll (RTSP) kilde"
 
 msgid "Microsoft Media Server (MMS) protocol source"
-msgstr ""
+msgstr "Microsoft Media Server (MMS) protokollkilde"
 
 #, c-format
 msgid "%s protocol source"
-msgstr ""
+msgstr "%s protokollkilde"
 
 #, c-format
 msgid "%s video RTP depayloader"
-msgstr ""
+msgstr "%s bilde RTP-depayloader"
 
 #, c-format
 msgid "%s audio RTP depayloader"
-msgstr ""
+msgstr "%s lyd RTP-depayloader"
 
 #, c-format
 msgid "%s RTP depayloader"
-msgstr ""
+msgstr "%s RTP-depayloader"
 
 #, c-format
 msgid "%s demuxer"
-msgstr ""
+msgstr "%s demultiplekser"
 
 #, c-format
 msgid "%s decoder"
-msgstr ""
+msgstr "%s dekoder"
 
 #, c-format
 msgid "%s video RTP payloader"
-msgstr ""
+msgstr "%s bilde RTP-payloader"
 
 #, c-format
 msgid "%s audio RTP payloader"
-msgstr ""
+msgstr "%s lyd RTP-payloader"
 
 #, c-format
 msgid "%s RTP payloader"
-msgstr ""
+msgstr "%s RTP-payloader"
 
 #, c-format
 msgid "%s muxer"
-msgstr ""
+msgstr "%s multiplekser"
 
 #, c-format
 msgid "%s encoder"
-msgstr ""
+msgstr "%s koder"
 
 #, c-format
 msgid "GStreamer element %s"
-msgstr ""
+msgstr "GStreamer-element %s"
 
 msgid "Unknown source element"
-msgstr ""
+msgstr "Ukjent kildeelement"
 
 msgid "Unknown sink element"
-msgstr ""
+msgstr "Ukjent slukelement"
 
 msgid "Unknown element"
-msgstr ""
+msgstr "Ukjent element"
 
 msgid "Unknown decoder element"
-msgstr ""
+msgstr "Ukjent dekoderelement"
 
 msgid "Unknown encoder element"
 msgstr "Ukjent element for koding"
@@ -528,17 +544,92 @@
 #~ msgid "RTSP streams cannot be played yet."
 #~ msgstr "RTSP-strømmer kan ikke spilles av ennå."
 
+#~ msgid "Could not create \"decodebin\" element."
+#~ msgstr "Kunne ikke opprette elementet «decodebin»"
+
+#~ msgid ""
+#~ "Only a subtitle stream was detected. Either you are loading a subtitle "
+#~ "file or some other type of text file, or the media file was not "
+#~ "recognized."
+#~ msgstr ""
+#~ "Kun en undertekststrøm ble oppdaget. Enten laster du inn en undertekstfil "
+#~ "eller en annen type tekstfil, eller mediafilen ble ikke gjenkjent."
+
+#~ msgid ""
+#~ "You do not have a decoder installed to handle this file. You might need "
+#~ "to install the necessary plugins."
+#~ msgstr ""
+#~ "Du har ikke en dekoder installert for å håndtere denne filen. Du må "
+#~ "kanskje installere de nødvendige programtilleggene."
+
 #~ msgid "This is not a media file"
 #~ msgstr "Dette er ikke en mediefil"
 
+#~ msgid "A subtitle stream was detected, but no video stream."
+#~ msgstr "En undertekststrøm ble oppdaget, men ingen videostrøm."
+
+#~ msgid "Both autovideosink and xvimagesink elements are missing."
+#~ msgstr "Både autobildesluk- og xvbildeslukelementene mangler."
+
+#~ msgid "Both autoaudiosink and alsasink elements are missing."
+#~ msgstr "Både autolydsluk- og alsaslukelementene mangler."
+
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Feil ved sending av GDP overskriftsdata til «%s:%d»"
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Feil ved sending av GDP nyttelast data til «%s:%d»"
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Forbindelse til %s:%d ble avvist"
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Ukomprimert pakket YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Ukomprimert pakket YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Ukomprimert pakket YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Ukomprimert pakket YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Ukomprimert pakket YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Ukomprimert pakket YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Ukomprimert pakket YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Ukomprimert planar YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Ukomprimert planar YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Ukomprimert svart og hvitt Y-flate"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Rå PCM-lyd"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Rå %d-bit flyttallslyd"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Rå flyttallslyd"
+
 #~ msgid "No device specified."
 #~ msgstr "Ingen enhet oppgitt."
 
 #~ msgid "Device \"%s\" does not exist."
-#~ msgstr "Enhet «%s» eksisterer ikke."
+#~ msgstr "Enheten «%s» eksisterer ikke."
 
 #~ msgid "Device \"%s\" is already being used."
-#~ msgstr "Enhet «%s» er allerede i bruk."
+#~ msgstr "Enheten «%s» er allerede i bruk."
 
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Kunne ikke åpne enhet «%s» for lesing og skriving."
diff --git a/po/nl.gmo b/po/nl.gmo
index d478e87..0ad898b 100644
--- a/po/nl.gmo
+++ b/po/nl.gmo
Binary files differ
diff --git a/po/nl.po b/po/nl.po
index 47a1ae9..4ddf737 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,20 +1,20 @@
-# translation of gst-plugins-base-0.10.32.2.po to Dutch
+# translation of gst-plugins-base-1.0.3.po to Dutch
 # This file is put in the public domain.
 #
-# Freek de Kruijf <f.de.kruijf@gmail.com>, 2007, 2008, 2009, 2010, 2011.
+# Freek de Kruijf <f.de.kruijf@gmail.com>, 2007, 2008, 2009, 2010, 2011, 2012.
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-04-27 00:12+0200\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-11-29 22:19+0100\n"
 "Last-Translator: Freek de Kruijf <f.de.kruijf@gmail.com>\n"
 "Language-Team: Dutch <vertaling@vrijschrift.org>\n"
 "Language: nl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.1\n"
+"X-Generator: Lokalize 1.5\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 msgid "Could not open device for playback in mono mode."
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Kan het audio-apparaat niet openen voor afspelen."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Kan het apparaat niet openen in mono."
 
@@ -57,6 +60,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Kan het audio-apparaat niet openen voor opnemen."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Kan het CD-apparaat niet openen om te lezen."
 
@@ -325,10 +331,10 @@
 "Voorgenomen verticale pixeldichtheid van medium (afbeelding/video) in ppi"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "ID3v2-frame"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "niet-ontleed id3v2-tagframe"
 
 msgid "ID3 tag"
 msgstr "ID3-tag"
@@ -364,19 +370,16 @@
 msgstr "Run-length encoding (RLE)"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Ondertitel"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "TMPlayer ondertitelformaat"
+msgstr "MPl2 ondertitelformaat"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Sami ondertitelformaat"
+msgstr "DKS-ondertitelformaat"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Kate ondertitelformaat"
+msgstr "QTtext-ondertitelformaat"
 
 msgid "Sami subtitle format"
 msgstr "Sami ondertitelformaat"
@@ -387,33 +390,30 @@
 msgid "Kate subtitle format"
 msgstr "Kate ondertitelformaat"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "Niet-gecomprimeerde YUV"
+msgstr "Niet-gecomprimeerde video"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Niet-gecomprimeerde grijze afbeelding"
+msgstr "Niet-gecomprimeerd grijs"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "Niet-gecomprimeerde YUV"
+msgstr "Niet-gecomprimeerd %s YUV %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Niet-gecomprimeerde, gepaletteerde %d-bits %s"
+msgstr "Niet-gecomprimeerd %s%d-bits %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 versie %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "Niet-gecomprimeerde YUV"
+msgstr "Niet-gecomprimeerde audio"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Raw %d-bits PCM-audio"
+msgstr "Ruw %d-bits %s-audio"
 
 msgid "Audio CD source"
 msgstr "Audio-CD-bron"
@@ -526,48 +526,6 @@
 #~ msgid "Capture"
 #~ msgstr "Opnemen"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Verbinding naar %s:%d is geweigerd."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Niet-gecomprimeerde planar YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Niet-gecomprimeerde planar YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Niet-gecomprimeerde packed YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Niet-gecomprimeerde packed YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Niet-gecomprimeerde packed YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Niet-gecomprimeerde packed YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Niet-gecomprimeerde packed YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Niet-gecomprimeerde planar YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Niet-gecomprimeerde planar YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Niet-gecomprimeerd zwartwit Y-vlak"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Raw PCM-audio"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Raw %d-bits drijvendekomma-audio"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Raw drijvendekomma-audio"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "Kon het VFS-bestand \"%s\" niet openen om te schrijven: %s."
 
@@ -617,6 +575,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "De elementen 'autoaudiosink' en 'alsasink' ontbreken beide."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Fout tijdens het zenden van gdp-headergegevens naar \"%s:%d\"."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Fout tijdens het zenden van gdp-gegevens naar \"%s:%d\"."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Verbinding naar %s:%d is geweigerd."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Niet-gecomprimeerde planar YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Niet-gecomprimeerde planar YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Niet-gecomprimeerde packed YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Niet-gecomprimeerde packed YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Niet-gecomprimeerde packed YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Niet-gecomprimeerde packed YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Niet-gecomprimeerde packed YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Niet-gecomprimeerde planar YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Niet-gecomprimeerde planar YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Niet-gecomprimeerd zwartwit Y-vlak"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Raw PCM-audio"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Raw %d-bits drijvendekomma-audio"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Raw drijvendekomma-audio"
+
 #~ msgid "No device specified."
 #~ msgstr "Geen apparaat opgegeven."
 
@@ -628,9 +634,3 @@
 
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Kan apparaat \"%s\" niet openen voor lezen en schrijven."
-
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Fout tijdens het zenden van gdp-headergegevens naar \"%s:%d\"."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Fout tijdens het zenden van gdp-gegevens naar \"%s:%d\"."
diff --git a/po/or.gmo b/po/or.gmo
index db2b6b4..a29662d 100644
--- a/po/or.gmo
+++ b/po/or.gmo
Binary files differ
diff --git a/po/or.po b/po/or.po
index e16bebc..76d1947 100644
--- a/po/or.po
+++ b/po/or.po
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-0.8.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2004-09-27 13:32+0530\n"
 "Last-Translator: Gora Mohanty <gora_mohanty@yahoo.co.in>\n"
 "Language-Team: Oriya <gora_mohanty@yahoo.co.in>\n"
@@ -38,6 +38,9 @@
 msgid "Could not open audio device for playback."
 msgstr "\"%s\" ଧ୍ବନି ଯନ୍ତ୍ର ଲେଖିବା ପାଇଁ ଖୋଲିହେଲା ନାହିଁ."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 #, fuzzy
 msgid "Could not open device for recording in mono mode."
 msgstr "ସି.ଡି. ଯନ୍ତ୍ର ପଢ଼ିବା ପାଇଁ ଖୋଲିହେଲା ନାହିଁ."
@@ -60,6 +63,9 @@
 msgid "Could not open audio device for recording."
 msgstr "ସି.ଡି. ଯନ୍ତ୍ର ପଢ଼ିବା ପାଇଁ ଖୋଲିହେଲା ନାହିଁ."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "ସି.ଡି. ଯନ୍ତ୍ର ପଢ଼ିବା ପାଇଁ ଖୋଲିହେଲା ନାହିଁ."
 
diff --git a/po/pl.gmo b/po/pl.gmo
index 83d1063..9fc69c5 100644
--- a/po/pl.gmo
+++ b/po/pl.gmo
Binary files differ
diff --git a/po/pl.po b/po/pl.po
index 79bc2de..80c5f4c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,13 +1,13 @@
 # Polish translation for gst-plugins-base.
 # This file is distributed under the same license as the gst-plugins-base package.
-# Jakub Bogusz <qboosh@pld-linux.org>, 2007-2011.
+# Jakub Bogusz <qboosh@pld-linux.org>, 2007-2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-04-26 18:01+0200\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-11-28 19:21+0100\n"
 "Last-Translator: Jakub Bogusz <qboosh@pld-linux.org>\n"
 "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
 "Language: pl\n"
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nie udało się otworzyć urządzenia dźwiękowego do odtwarzania."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr ""
 "Nie udało się otworzyć urządzenia dźwiękowego do nagrywania w trybie mono."
@@ -63,6 +66,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nie udało się otworzyć urządzenia dźwiękowego do nagrywania."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nie udało się otworzyć urządzenia CD do odczytu."
 
@@ -322,10 +328,10 @@
 msgstr "Rozdzielczość pionowa nośnika w pikselach na cal"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "ramka ID3v2"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "ramka znacznika id3v2"
 
 msgid "ID3 tag"
 msgstr "Znacznik ID3"
@@ -361,19 +367,16 @@
 msgstr "Kodowanie RLE"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Podpisy"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "Format podpisów TMPlayer"
+msgstr "Format podpisów MPL2"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Format podpisów Sami"
+msgstr "Format podpisów DKS"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Format podpisów Kate"
+msgstr "Format podpisów QTtext"
 
 msgid "Sami subtitle format"
 msgstr "Format podpisów Sami"
@@ -384,33 +387,30 @@
 msgid "Kate subtitle format"
 msgstr "Format podpisów Kate"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "Nieskompresowany YUV"
+msgstr "Nieskompresowany obraz"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Nieskompresowany obraz w szarości"
+msgstr "Nieskompresowane szarości"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "Nieskompresowany YUV"
+msgstr "Nieskompresowany %s YUV %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Nieskompresowany %d-bitowy %s z paletą"
+msgstr "Nieskompresowany %s%d-bitowy %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 w wersji %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "Nieskompresowany YUV"
+msgstr "Nieskompresowany dźwięk"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Surowe %d-bitowy dźwięk PCM"
+msgstr "Surowy %d-bitowy dźwięk %s"
 
 msgid "Audio CD source"
 msgstr "Źródło Audio CD"
@@ -489,145 +489,3 @@
 
 msgid "Plugin or element of unknown type"
 msgstr "Wtyczka lub element nieznanego typu"
-
-#~ msgid "Master"
-#~ msgstr "Główny"
-
-#~ msgid "Bass"
-#~ msgstr "Niskie"
-
-#~ msgid "Treble"
-#~ msgstr "Wysokie"
-
-#~ msgid "PCM"
-#~ msgstr "PCM"
-
-#~ msgid "Synth"
-#~ msgstr "Syntezator"
-
-#~ msgid "Line-in"
-#~ msgstr "Wejście"
-
-#~ msgid "CD"
-#~ msgstr "CD"
-
-#~ msgid "Microphone"
-#~ msgstr "Mikrofon"
-
-#~ msgid "PC Speaker"
-#~ msgstr "Głośnik PC"
-
-#~ msgid "Playback"
-#~ msgstr "Odtwarzanie"
-
-#~ msgid "Capture"
-#~ msgstr "Nagrywanie"
-
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Połączenie z %s:%d odrzucone."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Nieskompresowany planarny YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Nieskompresowany planarny YUV 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Nieskompresowany spakowany YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Nieskompresowany spakowany YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Nieskompresowany spakowany YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Nieskompresowany spakowany YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Nieskompresowany spakowany YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Nieskompresowany planarny YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Nieskompresowany planarny YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Nieskompresowany czarno-biały plan Y"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Surowy dźwięk PCM"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Surowy %d-bitowy dźwięk zmiennoprzecinkowy"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Surowy dźwięk zmiennoprzecinkowy"
-
-#~ msgid "Could not open vfs file \"%s\" for writing: %s."
-#~ msgstr "Nie udało się otworzyć pliku vfs \"%s\" do zapisu: %s."
-
-#~ msgid "No filename given"
-#~ msgstr "Nie podano nazwy pliku"
-
-#~ msgid "Could not close vfs file \"%s\"."
-#~ msgstr "Nie udało się zamknąć pliku vfs \"%s\"."
-
-#~ msgid "Error while writing to file \"%s\"."
-#~ msgstr "Błąd podczas zapisu do pliku \"%s\"."
-
-#~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
-#~ msgstr "Niepoprawne URI podpisów \"%s\", podpisy wyłączone."
-
-#~ msgid "RTSP streams cannot be played yet."
-#~ msgstr "Strumieni RTSP jeszcze nie można odtwarzać."
-
-#~ msgid "Could not create \"decodebin\" element."
-#~ msgstr "Nie udało się utworzyć elementu \"decodebin\"."
-
-#~ msgid ""
-#~ "Only a subtitle stream was detected. Either you are loading a subtitle "
-#~ "file or some other type of text file, or the media file was not "
-#~ "recognized."
-#~ msgstr ""
-#~ "Wykryto tylko strumień podpisów. Albo żądano wczytania pliku podpisów lub "
-#~ "innego rodzaju pliku tekstowego, albo nie rozpoznano pliku "
-#~ "multimedialnego."
-
-#~ msgid ""
-#~ "You do not have a decoder installed to handle this file. You might need "
-#~ "to install the necessary plugins."
-#~ msgstr ""
-#~ "Nie ma zainstalowanego dekodera do obsługi tego pliku. Być może trzeba "
-#~ "zainstalować potrzebne wtyczki."
-
-#~ msgid "This is not a media file"
-#~ msgstr "To nie jest plik multimedialny"
-
-#~ msgid "A subtitle stream was detected, but no video stream."
-#~ msgstr "Wykryto strumień podpisów, ale brak strumienia obrazu."
-
-#~ msgid "Both autovideosink and xvimagesink elements are missing."
-#~ msgstr "Nie ma żadnego z elementów autovideosink i xvimagesink."
-
-#~ msgid "Both autoaudiosink and alsasink elements are missing."
-#~ msgstr "Nie ma żadnego z elementów autoaudiosink i alsasink."
-
-#~ msgid "No device specified."
-#~ msgstr "Nie określono urządzenia."
-
-#~ msgid "Device \"%s\" does not exist."
-#~ msgstr "Urządzenie \"%s\" nie istnieje."
-
-#~ msgid "Device \"%s\" is already being used."
-#~ msgstr "Urządzenie \"%s\" jest już używane."
-
-#~ msgid "Could not open device \"%s\" for reading and writing."
-#~ msgstr "Nie udało się otworzyć urządzenia \"%s\" do odczytu i zapisu."
-
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Błąd podczas wysyłania danych nagłówka gdp do \"%s:%d\"."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Błąd podczas wysyłania danych gdp do \"%s:%d\"."
diff --git a/po/pt_BR.gmo b/po/pt_BR.gmo
index 476c0ac..d623666 100644
--- a/po/pt_BR.gmo
+++ b/po/pt_BR.gmo
Binary files differ
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 155cab5..0683f9d 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base-0.10.31.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-01-08 01:02-0300\n"
 "Last-Translator: Fabrício Godoy <skarllot@gmail.com>\n"
 "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Não foi possível abrir o dispositivo de áudio para reprodução."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Não foi possível abrir o dispositivo para gravação em mono."
 
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Não foi possível abrir o dispositivo de áudio para gravação."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Não foi possível abrir o dispositivo de CD para leitura."
 
diff --git a/po/ro.gmo b/po/ro.gmo
index 00e5205..340aa80 100644
--- a/po/ro.gmo
+++ b/po/ro.gmo
Binary files differ
diff --git a/po/ro.po b/po/ro.po
index 009a369..c212e93 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.29.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-08-16 01:21+0300\n"
 "Last-Translator: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>\n"
 "Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
@@ -36,6 +36,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nu s-a putut deschide dispozitivul audio pentru redare."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Nu s-a putut deschide dispozitivul pentru înregistrare în modul mono."
 
@@ -58,6 +61,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nu s-a putut deschide dispozitivul audio pentru înregistrare."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nu s-a putut deschide unitatea CD pentru redare."
 
diff --git a/po/ru.gmo b/po/ru.gmo
index 573a692..4c91be8 100644
--- a/po/ru.gmo
+++ b/po/ru.gmo
Binary files differ
diff --git a/po/ru.po b/po/ru.po
index 45058bb..780012e 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,20 +3,20 @@
 #
 # Артём Попов <artfwo@gmail.com>, 2009.
 # Pavel Maryanov <acid_jack@ukr.net>, 2009.
-# Yuri Kozlov <yuray@komyakino.ru>, 2010, 2011.
+# Yuri Kozlov <yuray@komyakino.ru>, 2010, 2011, 2012.
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-04-26 20:30+0400\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-12-01 13:27+0400\n"
 "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
 "Language-Team: Russian <gnu@mx.ru>\n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.0\n"
+"X-Generator: Lokalize 1.4\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
@@ -41,6 +41,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Не удалось открыть устройство для воспроизведения."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Не удалось открыть устройство для записи в режиме моно."
 
@@ -61,6 +64,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Не удалось открыть устройство для записи."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Не удалось открыть CD-устройство для чтения."
 
@@ -310,22 +316,22 @@
 msgstr "Источник или тип устройства, использованный для съёмки"
 
 msgid "image horizontal ppi"
-msgstr "изображение в ppi по горизонтали"
+msgstr "изображение по горизонтали в ppi"
 
 msgid "Media (image/video) intended horizontal pixel density in ppi"
 msgstr "Горизонтальная плотность носителя (изображение/видео) в ppi"
 
 msgid "image vertical ppi"
-msgstr "изображение в ppi по вертикали"
+msgstr "изображение по вертикали в ppi"
 
 msgid "Media (image/video) intended vertical pixel density in ppi"
 msgstr "Вертикальная плотность носителя (изображение/видео) в ppi"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "кадр ID3v2"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "неразбираемый тег кадра id3v2"
 
 msgid "ID3 tag"
 msgstr "ID3-тег"
@@ -361,19 +367,16 @@
 msgstr "RLE-сжатие"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Субтитры"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "Формат субтитров TMPlayer"
+msgstr "Формат субтитров MPL2"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Формат субтитров Sami"
+msgstr "Формат субтитров DKS"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Формат субтитров Kate"
+msgstr "Формат субтитров QTtext"
 
 msgid "Sami subtitle format"
 msgstr "Формат субтитров Sami"
@@ -384,33 +387,30 @@
 msgid "Kate subtitle format"
 msgstr "Формат субтитров Kate"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "Несжатый YUV"
+msgstr "Несжатое видео"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Несжатое полутоновое изображение"
+msgstr "Несжатый серый"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "Несжатый YUV"
+msgstr "Несжатый %s YUV %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Несжатое %d-битное %s-изображение с палитрой"
+msgstr "Несжатое %s%d-битное %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 Версия %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "Несжатый YUV"
+msgstr "Несжатое аудио"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Несжатое %d-битное PCM-аудио"
+msgstr "Необработанное %d-битное аудио %s"
 
 msgid "Audio CD source"
 msgstr "Источник аудио-CD"
@@ -523,48 +523,6 @@
 #~ msgid "Capture"
 #~ msgstr "Съёмка"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "В соединении с %s:%d отказано."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Несжатый планарный YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Несжатый планарный YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Несжатый смешанный YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Несжатый смешанный YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Несжатый смешанный YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Несжатый смешанный YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Несжатый смешанный YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Несжатый планарный YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Несжатый планарный YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Несжатая чёрно-белая Y-плоскость"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Несжатое PCM-аудио"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Несжатое %d-битное аудио с плавающей точкой"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Несжатое аудио с плавающей точкой"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "Не удалось открыть vfs-файл «%s» для записи: %s."
 
@@ -613,6 +571,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "Отсутствуют элементы autoaudiosink и alsasink."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Ошибка отправки данных заголовка gdp в «%s:%d»."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Ошибка отправки данных gdp в «%s:%d»."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "В соединении с %s:%d отказано."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Несжатый планарный YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Несжатый планарный YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Несжатый смешанный YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Несжатый смешанный YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Несжатый смешанный YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Несжатый смешанный YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Несжатый смешанный YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Несжатый планарный YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Несжатый планарный YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Несжатая чёрно-белая Y-плоскость"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Несжатое PCM-аудио"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Несжатое %d-битное аудио с плавающей точкой"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Несжатое аудио с плавающей точкой"
+
 #~ msgid "No device specified."
 #~ msgstr "Не указано устройство."
 
@@ -625,12 +631,6 @@
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Не удалось открыть устройство «%s» для чтения и записи."
 
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Ошибка отправки данных заголовка gdp в «%s:%d»."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Ошибка отправки данных gdp в «%s:%d»."
-
 #~ msgid "No file name specified."
 #~ msgstr "Не указано имя файла."
 
diff --git a/po/sk.gmo b/po/sk.gmo
index cffc094..d73cbff 100644
--- a/po/sk.gmo
+++ b/po/sk.gmo
Binary files differ
diff --git a/po/sk.po b/po/sk.po
index fd76588..5e239a0 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.30.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-11-08 15:34+0100\n"
 "Last-Translator: Peter Tuhársky <tuharsky@misbb.sk>\n"
 "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -40,6 +40,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Nepodarilo sa otvoriť zvukové zariadenie pre prehrávanie."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Nepodarilo sa otvoriť zariadenie pre nahrávanie v režime mono."
 
@@ -60,6 +63,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Nepodarilo sa otvoriť zvukové zariadenie pre nahrávanie."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Nepodarilo sa otvoriť zariadenie CD na čítanie."
 
diff --git a/po/sl.gmo b/po/sl.gmo
index b36f5a3..b9875ec 100644
--- a/po/sl.gmo
+++ b/po/sl.gmo
Binary files differ
diff --git a/po/sl.po b/po/sl.po
index 236f44f..401a2fa 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,15 +1,17 @@
-# Slovenian translation for gst-plugins-base.
-# Copyright (C) 2005 - 2011 Free Software Foundation, Inc.
+# Slovenian translation of gst-plugins-base.
+# Copyright (C) 2005 - 2012 Free Software Foundation, Inc.
 # This file is distributed under the same license as the gst-plugins-base package.
+#
 # Matej Urbančič <matej.urban@gmail.com>, 2010.
 # Klemen Košir <klemen.kosir@gmx.com>, 2011.
+# Martin Srebotnjak  <miles@filmsi.net>, 2011.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-04-26 15:56+0100\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-03-01 14:03+0100\n"
 "Last-Translator: Klemen Košir <klemen.kosir@gmx.com>\n"
 "Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
 "Language: sl\n"
@@ -42,6 +44,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Zvočne naprave ni mogoče odpreti za predvajanje."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Naprave ni mogoče odpreti za snemanje v mono načinu."
 
@@ -61,6 +66,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Zvočne naprave ni mogoče odpreti za snemanje."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Naprave CD ni mogoče odpreti za branje."
 
@@ -319,10 +327,10 @@
 msgstr "Gostota navpičnih slikovnih točk (v ppi)"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "Polje ID3v2"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "nerazčlenjeno polje oznake id3v2"
 
 msgid "ID3 tag"
 msgstr "Oznaka ID3"
@@ -520,48 +528,6 @@
 #~ msgid "Capture"
 #~ msgstr "Zajemanje"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Povezava s %s:%d zavrnjena."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Nestisnjen ploskovni YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Nestisnjen ploskovni YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Nestisnjen pakiran YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Nestisnjen pakiran YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Nestisnjen pakiran YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Nestisnjen pakiran YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Nestisnjen pakiran YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Nestisnjen ploskovni YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Nestisnjen ploskovni YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Nestisnjena črno-bela slika Y-ravnine"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Surovi zvok PCM"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Surovi %d-bitni zvok, določen s plavajočo vejico"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Surovi zvok, določen s plavajočo vejico"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "VFS datoteke \"%s\" ni mogoče odpreti za pisanje: %s"
 
@@ -611,6 +577,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "Predmeta autovideosink in alsasink manjkata."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Napaka med pošiljanjem podatkov glave GDP na \"%s:%d\"."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Napaka med pošiljanjem podatkov vsebine GDP na \"%s:%d\"."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Povezava s %s:%d zavrnjena."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Nestisnjen ploskovni YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Nestisnjen ploskovni YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Nestisnjen pakiran YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Nestisnjen pakiran YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Nestisnjen pakiran YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Nestisnjen pakiran YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Nestisnjen pakiran YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Nestisnjen ploskovni YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Nestisnjen ploskovni YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Nestisnjena črno-bela slika Y-ravnine"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Surovi zvok PCM"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Surovi %d-bitni zvok, določen s plavajočo vejico"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Surovi zvok, določen s plavajočo vejico"
+
 #~ msgid "No device specified."
 #~ msgstr "Ni navedene naprave."
 
@@ -622,37 +636,3 @@
 
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Naprave \"%s\" ni mogoče odpreti za branje in pisanje."
-
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Napaka med pošiljanjem podatkov glave GDP na \"%s:%d\"."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Napaka med pošiljanjem podatkov vsebine GDP na \"%s:%d\"."
-
-#, fuzzy
-#~ msgid "No Temp directory specified."
-#~ msgstr "Ni določenega izvornega pogona"
-
-#, fuzzy
-#~ msgid "Could not create temp file \"%s\"."
-#~ msgstr "Ni mogoče ustvariti datoteke predpomnilnika"
-
-#, fuzzy
-#~ msgid "Could not open file \"%s\" for reading."
-#~ msgstr "Ni mogoče odpreti CD naprave za branje."
-
-#, fuzzy
-#~ msgid "Internal data flow error."
-#~ msgstr "Notranja napaka pretoka podatkov."
-
-#, fuzzy
-#~ msgid "Could not create \"decodebin2\" element."
-#~ msgstr "Elementa filesrc ni mogoče ustvariti"
-
-#, fuzzy
-#~ msgid "Could not create \"queue2\" element."
-#~ msgstr "Elementa filesrc ni mogoče ustvariti"
-
-#, fuzzy
-#~ msgid "Could not create \"typefind\" element."
-#~ msgstr "Elementa filesrc ni mogoče ustvariti"
diff --git a/po/sq.gmo b/po/sq.gmo
index 5abac21..ec7eb20 100644
--- a/po/sq.gmo
+++ b/po/sq.gmo
Binary files differ
diff --git a/po/sq.po b/po/sq.po
index 56d9b85..e6fbb3b 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins 0.8.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2004-08-07 20:29+0200\n"
 "Last-Translator: Laurent Dhima <laurenti@alblinux.net>\n"
 "Language-Team: Albanian <begraj@hotmail.com>\n"
@@ -36,6 +36,9 @@
 msgid "Could not open audio device for playback."
 msgstr "E pamundur hapja e dispozitivit të zërit \"%s\" për shkrim."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 #, fuzzy
 msgid "Could not open device for recording in mono mode."
 msgstr "I pamundur hapja e dispozitivit CD për lexim."
@@ -58,6 +61,9 @@
 msgid "Could not open audio device for recording."
 msgstr "I pamundur hapja e dispozitivit CD për lexim."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "I pamundur hapja e dispozitivit CD për lexim."
 
diff --git a/po/sr.gmo b/po/sr.gmo
index 3976b0c..bfc458b 100644
--- a/po/sr.gmo
+++ b/po/sr.gmo
Binary files differ
diff --git a/po/sr.po b/po/sr.po
index 0fb8cf2..537e3d2 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -2,13 +2,13 @@
 # Copyright (C) 2004 Free Software Foundation, Inc.
 # This file is distributed under the same license as the gst-plugins-base package.
 # Danilo Segan <dsegan@gmx.net>, 2004.
-# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2011.
+# Мирослав Николић <miroslavnikolic@rocketmail.com>, 2011, 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: gst-plugins-base-0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-12-05 09:10+0200\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-03-25 03:32+0200\n"
 "Last-Translator: Мирослав Николић <miroslavnikolic@rocketmail.com>\n"
 "Language-Team: Serbian <gnu@prevod.org>\n"
 "Language: sr\n"
@@ -17,7 +17,7 @@
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Virtaal 0.7.0\n"
+"X-Generator: Virtaal 0.7.1\n"
 "X-Project-Style: gnome\n"
 
 msgid "Could not open device for playback in mono mode."
@@ -40,6 +40,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Не могу да покренем звучни уређај ради пуштања."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Не могу да отворим уређај ради снимања у моно режиму."
 
@@ -48,7 +51,7 @@
 
 #, c-format
 msgid "Could not open device for recording in %d-channel mode"
-msgstr "Не могу да отворим уређај ради снимања у %d-каналном режиму."
+msgstr "Не могу да отворим уређај ради снимања у %d-каналном режиму"
 
 msgid ""
 "Could not open audio device for recording. Device is being used by another "
@@ -60,6 +63,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Не могу да отворим звучни уређај ради снимања."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Не могу да отворим ЦД уређај ради читања."
 
@@ -311,7 +317,7 @@
 msgstr "Очекивана густина водоравних тачака медија (слике/видеа) у тпи"
 
 msgid "image vertical ppi"
-msgstr "усправних тпи слике "
+msgstr "усправних тпи слике"
 
 msgid "Media (image/video) intended vertical pixel density in ppi"
 msgstr "Очекивана густина усправних тачака медија (слике/видеа) у тпи"
@@ -393,7 +399,7 @@
 
 #, fuzzy, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Несажета YUV"
+msgstr "Несажети палетизовани %d-битни %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
@@ -425,15 +431,15 @@
 
 #, c-format
 msgid "%s video RTP depayloader"
-msgstr ""
+msgstr "РТП истоваривач %s снимка"
 
 #, c-format
 msgid "%s audio RTP depayloader"
-msgstr ""
+msgstr "РТП истоваривач %s звука"
 
 #, c-format
 msgid "%s RTP depayloader"
-msgstr ""
+msgstr "%s РТП истоваривач"
 
 #, c-format
 msgid "%s demuxer"
@@ -445,15 +451,15 @@
 
 #, c-format
 msgid "%s video RTP payloader"
-msgstr ""
+msgstr "РТП утоваривач %s снимка"
 
 #, c-format
 msgid "%s audio RTP payloader"
-msgstr ""
+msgstr "РТП утоваривач %s звука"
 
 #, c-format
 msgid "%s RTP payloader"
-msgstr ""
+msgstr "%s РТП утоваривач"
 
 #, c-format
 msgid "%s muxer"
@@ -518,14 +524,11 @@
 #~ msgid "Capture"
 #~ msgstr "Снимање"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "Повезивање са %s:%d је одбијено."
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr "Не могу да отворим всд датотеку „%s“ ради уписа: %s."
 
 #~ msgid "No filename given"
-#~ msgstr "Није дат назив датотеке."
+#~ msgstr "Није дат назив датотеке"
 
 #~ msgid "Could not close vfs file \"%s\"."
 #~ msgstr "Не могу да затворим всд датотеку „%s“."
@@ -575,6 +578,9 @@
 #~ msgid "Error while sending gdp payload data to \"%s:%d\"."
 #~ msgstr "Грешка приликом слања података гдп носивости у „%s:%d“."
 
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "Повезивање са %s:%d је одбијено."
+
 #~ msgid "Uncompressed planar YUV 4:2:0"
 #~ msgstr "Несажета равна YUV 4:2:0"
 
diff --git a/po/sv.gmo b/po/sv.gmo
index 5288a61..9e01f53 100644
--- a/po/sv.gmo
+++ b/po/sv.gmo
Binary files differ
diff --git a/po/sv.po b/po/sv.po
index 08c9a12..a8fba71 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.28.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2010-06-07 18:17+0100\n"
 "Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
 "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -37,6 +37,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Kunde inte öppna ljudenheten för uppspelning."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Kunde inte öppna enheten för inspelning i monoläge."
 
@@ -57,6 +60,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Kunde inte öppna ljudenheten för inspelning."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Kunde inte öppna cd-enheten för läsning."
 
diff --git a/po/tr.gmo b/po/tr.gmo
index a094c65..f8f4646 100644
--- a/po/tr.gmo
+++ b/po/tr.gmo
Binary files differ
diff --git a/po/tr.po b/po/tr.po
index a714182..7289656 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.32.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2011-04-26 19:22+0200\n"
 "Last-Translator: Server Acim <serveracim@gmail.com>\n"
 "Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@@ -34,6 +34,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Aygıtı çalma için açamıyor."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Mono kipte kaydetmek için aygıtı açamıyor."
 
@@ -54,6 +57,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Kayıt için ses aygıtı açılamıyor."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Okumak için CD aygıtı açılamıyor."
 
diff --git a/po/uk.gmo b/po/uk.gmo
index 6929f60..2b9e18b 100644
--- a/po/uk.gmo
+++ b/po/uk.gmo
Binary files differ
diff --git a/po/uk.po b/po/uk.po
index 09ba3dd..1346bcb 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the gst-plugins-base package.
 #
 # Maxim V. Dziumanenko <dziumanenko@gmail.com>, 2004-2007.
-# Yuri Chornoivan <yurchor@ukr.net>, 2010, 2011.
+# Yuri Chornoivan <yurchor@ukr.net>, 2010, 2011, 2012.
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.32.2\n"
+"Project-Id-Version: gst-plugins-base 1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2011-04-27 17:49+0300\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-11-28 20:16+0200\n"
 "Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
 "Language: uk\n"
@@ -17,7 +17,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 1.1\n"
+"X-Generator: Lokalize 1.5\n"
 
 msgid "Could not open device for playback in mono mode."
 msgstr "Не вдалося відкрити пристрій відтворення у режимі моно."
@@ -39,6 +39,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Не вдалося відкрити пристрій для відтворення."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Не вдалося відкрити пристрій запису у режимі моно."
 
@@ -59,6 +62,9 @@
 msgid "Could not open audio device for recording."
 msgstr "Не вдалося відкрити пристрій для запису."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Не вдалося відкрити пристрій компакт-дисків для читання."
 
@@ -329,10 +335,10 @@
 "на дюйм"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "Блок ID3v2"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "необроблений блок теґу id3v2"
 
 msgid "ID3 tag"
 msgstr "Мітка ID3"
@@ -368,19 +374,16 @@
 msgstr "Кодування Run-length"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Субтитри"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "Формат субтитрів TMPlayer"
+msgstr "Формат субтитрів MPL2"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Формат субтитрів Sami"
+msgstr "Формат субтитрів DKS"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Формат субтитрів Kate"
+msgstr "Формат субтитрів QTtext"
 
 msgid "Sami subtitle format"
 msgstr "Формат субтитрів Sami"
@@ -391,33 +394,30 @@
 msgid "Kate subtitle format"
 msgstr "Формат субтитрів Kate"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "Нестиснений YUV"
+msgstr "Нестиснене відео"
 
-#, fuzzy
 msgid "Uncompressed gray"
 msgstr "Нестиснене сіре зображення"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "Нестиснений YUV"
+msgstr "Нестиснене %s, YUV %s"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "Нестиснений пакетний %d-бітовий %s"
+msgstr "Нестиснене %s%d-бітове %s"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 версії %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "Нестиснений YUV"
+msgstr "Нестиснені звукові дані"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Необроблений %d-бітовий PCM-звук"
+msgstr "Необроблені %d-бітові звукові дані %s"
 
 msgid "Audio CD source"
 msgstr "Джерело аудіо-CD"
@@ -530,48 +530,6 @@
 #~ msgid "Capture"
 #~ msgstr "Запис"
 
-#~ msgid "Connection to %s:%d refused."
-#~ msgstr "У з'єднанні з %s:%d відмовлено."
-
-#~ msgid "Uncompressed planar YUV 4:2:0"
-#~ msgstr "Нестиснений планарний YUV 4:2:0"
-
-#~ msgid "Uncompressed planar YVU 4:2:0"
-#~ msgstr "Нестиснений планарний YVU 4:2:0"
-
-#~ msgid "Uncompressed packed YUV 4:2:2"
-#~ msgstr "Нестиснений пакетний YUV 4:2:2"
-
-#~ msgid "Uncompressed packed YUV 4:1:0"
-#~ msgstr "Нестиснений пакетний YUV 4:1:0"
-
-#~ msgid "Uncompressed packed YVU 4:1:0"
-#~ msgstr "Нестиснений пакетний YVU 4:1:0"
-
-#~ msgid "Uncompressed packed YUV 4:1:1"
-#~ msgstr "Нестиснений пакетний YUV 4:1:1"
-
-#~ msgid "Uncompressed packed YUV 4:4:4"
-#~ msgstr "Нестиснений пакетний YUV 4:4:4"
-
-#~ msgid "Uncompressed planar YUV 4:2:2"
-#~ msgstr "Нестиснений планарний YUV 4:2:2"
-
-#~ msgid "Uncompressed planar YUV 4:1:1"
-#~ msgstr "Нестиснений планарний YUV 4:1:1"
-
-#~ msgid "Uncompressed black and white Y-plane"
-#~ msgstr "Нестиснений чорно-білий Y-проекція"
-
-#~ msgid "Raw PCM audio"
-#~ msgstr "Необроблений PCM-звук"
-
-#~ msgid "Raw %d-bit floating-point audio"
-#~ msgstr "Необроблений %d-бітовий звук (дані з плаваючою комою)"
-
-#~ msgid "Raw floating-point audio"
-#~ msgstr "Необроблений звук (дані з плаваючою комою)"
-
 #~ msgid "Could not open vfs file \"%s\" for writing: %s."
 #~ msgstr ""
 #~ "Не вдалося відкрити файл віртуальної файлової системи «%s» для запису: %s."
@@ -621,6 +579,54 @@
 #~ msgid "Both autoaudiosink and alsasink elements are missing."
 #~ msgstr "Відсутні елементи autoaudiosink та alsasink."
 
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Помилка при надсиланні заголовку gdp даних до \"%s:%d\"."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Помилка при надсиланні даних gdp до «%s:%d»."
+
+#~ msgid "Connection to %s:%d refused."
+#~ msgstr "У з'єднанні з %s:%d відмовлено."
+
+#~ msgid "Uncompressed planar YUV 4:2:0"
+#~ msgstr "Нестиснений планарний YUV 4:2:0"
+
+#~ msgid "Uncompressed planar YVU 4:2:0"
+#~ msgstr "Нестиснений планарний YVU 4:2:0"
+
+#~ msgid "Uncompressed packed YUV 4:2:2"
+#~ msgstr "Нестиснений пакетний YUV 4:2:2"
+
+#~ msgid "Uncompressed packed YUV 4:1:0"
+#~ msgstr "Нестиснений пакетний YUV 4:1:0"
+
+#~ msgid "Uncompressed packed YVU 4:1:0"
+#~ msgstr "Нестиснений пакетний YVU 4:1:0"
+
+#~ msgid "Uncompressed packed YUV 4:1:1"
+#~ msgstr "Нестиснений пакетний YUV 4:1:1"
+
+#~ msgid "Uncompressed packed YUV 4:4:4"
+#~ msgstr "Нестиснений пакетний YUV 4:4:4"
+
+#~ msgid "Uncompressed planar YUV 4:2:2"
+#~ msgstr "Нестиснений планарний YUV 4:2:2"
+
+#~ msgid "Uncompressed planar YUV 4:1:1"
+#~ msgstr "Нестиснений планарний YUV 4:1:1"
+
+#~ msgid "Uncompressed black and white Y-plane"
+#~ msgstr "Нестиснений чорно-білий Y-проекція"
+
+#~ msgid "Raw PCM audio"
+#~ msgstr "Необроблений PCM-звук"
+
+#~ msgid "Raw %d-bit floating-point audio"
+#~ msgstr "Необроблений %d-бітовий звук (дані з плаваючою комою)"
+
+#~ msgid "Raw floating-point audio"
+#~ msgstr "Необроблений звук (дані з плаваючою комою)"
+
 #~ msgid "No device specified."
 #~ msgstr "Пристрій не вказано."
 
@@ -633,12 +639,6 @@
 #~ msgid "Could not open device \"%s\" for reading and writing."
 #~ msgstr "Не вдалося відкрити пристрій «%s» для читання чи запису."
 
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Помилка при надсиланні заголовку gdp даних до \"%s:%d\"."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Помилка при надсиланні даних gdp до «%s:%d»."
-
 #~ msgid "No file name specified."
 #~ msgstr "Не вказано назву файлу."
 
diff --git a/po/vi.gmo b/po/vi.gmo
index 04ed87e..aedc4e7 100644
--- a/po/vi.gmo
+++ b/po/vi.gmo
Binary files differ
diff --git a/po/vi.po b/po/vi.po
index e97e806..8dae0a7 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -1,21 +1,25 @@
 # Vietnamese Translation for GST Plugins Base.
+# Copyright © 2012 Free Software Foundation, Inc.
 # This file is distributed under the same license as the gst-plugins-base package.
 # Clytie Siddall <clytie@riverland.net.au>, 2005-2010.
+# Trần Ngọc Quân <vnwildman@gmail.com>, 2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: gst-plugins-base 0.10.28.2\n"
+"Project-Id-Version: gst-plugins-base-1.0.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
-"PO-Revision-Date: 2010-04-27 22:51+0930\n"
-"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
-"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
+"PO-Revision-Date: 2012-12-02 08:03+0700\n"
+"Last-Translator: Trần Ngọc Quân <vnwildman@gmail.com>\n"
+"Language-Team: Vietnamese <translation-team-vi@lists.sourceforge.net>\n"
 "Language: vi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Team-Website: <http://translationproject.org/team/vi.html>\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: LocFactoryEditor 1.8\n"
+"X-Poedit-SourceCharset: UTF-8\n"
 
 msgid "Could not open device for playback in mono mode."
 msgstr "Không thể mở thiết bị để phát lại trong chế độ đơn nguồn."
@@ -36,6 +40,9 @@
 msgid "Could not open audio device for playback."
 msgstr "Không thể mở thiết bị âm thanh để phát lại."
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "Không thể mở thiết bị để thu trong chế độ đơn nguồn."
 
@@ -55,11 +62,14 @@
 msgid "Could not open audio device for recording."
 msgstr "Không thể mở thiết bị âm thanh để thu."
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "Không thể mở thiết bị đĩa CD để đọc."
 
 msgid "Could not seek CD."
-msgstr "Không thể tìm trên đĩa CD."
+msgstr "Không thể di chuyển vị trí đọc trên đĩa CD."
 
 msgid "Could not read CD."
 msgstr "Không thể đọc đĩa CD."
@@ -79,7 +89,7 @@
 
 #, c-format
 msgid "Missing element '%s' - check your GStreamer installation."
-msgstr "Thiếu phần tử « %s » — hãy kiểm tra lại cài đặt GStreamer."
+msgstr "Thiếu phần tử “%s” — hãy kiểm tra lại cài đặt GStreamer."
 
 #, c-format
 msgid "Both autovideosink and %s elements are missing."
@@ -129,28 +139,28 @@
 
 #, c-format
 msgid "No decoder available for type '%s'."
-msgstr "Không có bộ giải mã sẵn sàng cho kiểu « %s »."
+msgstr "Không có bộ giải mã sẵn sàng cho kiểu “%s”."
 
 msgid "No URI specified to play from."
 msgstr "Chưa ghi rõ URI từ đó cần phát."
 
 #, c-format
 msgid "Invalid URI \"%s\"."
-msgstr "URI không hợp lệ « %s »."
+msgstr "URI không hợp lệ “%s”."
 
 msgid "This stream type cannot be played yet."
 msgstr "Chưa có khả năng phát kiểu luồng này."
 
 #, c-format
 msgid "No URI handler implemented for \"%s\"."
-msgstr "Không có bộ quản lý địa chỉ URI được thực hiện cho « %s »."
+msgstr "Không có bộ quản lý địa chỉ URI được thực hiện cho “%s”."
 
 msgid "Source element is invalid."
 msgstr "Phần tử nguồn không phải hợp lệ."
 
 #, c-format
 msgid "Error while sending data to \"%s:%d\"."
-msgstr "Lỗi khi gởi dữ liệu cho « %s:%d »."
+msgstr "Lỗi khi gởi dữ liệu cho “%s:%d”."
 
 msgid "This CD has no audio tracks"
 msgstr "Đĩa CD này không có rãnh âm thanh nào"
@@ -192,131 +202,133 @@
 msgstr "mã TRM rãnh MusicBrainz"
 
 msgid "capturing shutter speed"
-msgstr ""
+msgstr "tốc độ màn chập khi chụp"
 
 msgid "Shutter speed used when capturing an image, in seconds"
-msgstr ""
+msgstr "Tốc độ màn chập sử dụng khi chụp ảnh, tính bằng giây"
 
 msgid "capturing focal ratio"
-msgstr ""
+msgstr "tỷ lệ tiêu điểm khi chụp"
 
 msgid "Focal ratio (f-number) used when capturing the image"
-msgstr ""
+msgstr "Độ mở ống kính (số-f) được sử dụng khi chụp ảnh"
 
 msgid "capturing focal length"
-msgstr ""
+msgstr "độ dài tiêu cự khi chụp"
 
 msgid "Focal length of the lens used capturing the image, in mm"
-msgstr ""
+msgstr "Chiều dài tiêu cự ống kính được sử dụng khi chụp một ảnh, tính bằng mm"
 
 msgid "capturing digital zoom ratio"
-msgstr ""
+msgstr "tỷ lệ phóng to kỹ thuật số khi chụp"
 
 msgid "Digital zoom ratio used when capturing an image"
-msgstr ""
+msgstr "Tỷ lệ phóng to kỹ thuật số được sử dụng khi chụp một ảnh"
 
 msgid "capturing iso speed"
-msgstr ""
+msgstr "tốc độ ISO khi chụp"
 
 msgid "The ISO speed used when capturing an image"
-msgstr ""
+msgstr "Tốc độ ISO sử dụng để chụp ảnh"
 
 msgid "capturing exposure program"
-msgstr ""
+msgstr "chương trình phơi sáng khi chụp"
 
 msgid "The exposure program used when capturing an image"
-msgstr ""
+msgstr "Chương trình phơi sáng được sử dụng khi chụp một ảnh"
 
 msgid "capturing exposure mode"
-msgstr ""
+msgstr "chế độ độ phơi sáng khi chụp"
 
 msgid "The exposure mode used when capturing an image"
-msgstr ""
+msgstr "Chế độ phơi sáng được sử dụng khi chụp một ảnh"
 
 msgid "capturing exposure compensation"
-msgstr ""
+msgstr "bù phơi sáng khi chụp"
 
 msgid "The exposure compensation used when capturing an image"
-msgstr ""
+msgstr "Bù phơi sáng được sử dụng khi chụp một ảnh"
 
 msgid "capturing scene capture type"
-msgstr ""
+msgstr "kiểu chụp phông nền khi chụp"
 
 msgid "The scene capture mode used when capturing an image"
-msgstr ""
+msgstr "Chế độ chụp phông nền được sử dụng khi chụp một ảnh"
 
 msgid "capturing gain adjustment"
-msgstr ""
+msgstr "điều chỉnh hệ số khuếch đại khi chụp"
 
 msgid "The overall gain adjustment applied on an image"
-msgstr ""
+msgstr "Điều chỉnh hệ số khuếch đại toàn bộ được áp dụng trên một ảnh"
 
 msgid "capturing white balance"
-msgstr ""
+msgstr "cân trắng trắng khi chụp"
 
 msgid "The white balance mode set when capturing an image"
-msgstr ""
+msgstr "Đặt chế độ cân bằng trắng khi chụp một ảnh"
 
 msgid "capturing contrast"
-msgstr ""
+msgstr "độ tương phản khi chụp"
 
 msgid "The direction of contrast processing applied when capturing an image"
-msgstr ""
+msgstr "Hướng xử lý tương phản được áp dụng khi chụp một ảnh"
 
 msgid "capturing saturation"
-msgstr ""
+msgstr "độ bão hòa khi chụp"
 
 msgid "The direction of saturation processing applied when capturing an image"
-msgstr ""
+msgstr "Hướng xử lý bão hòa được áp dụng khi chụp một ảnh"
 
 msgid "capturing sharpness"
-msgstr ""
+msgstr "độ sắc nét khi chụp"
 
 msgid "The direction of sharpness processing applied when capturing an image"
-msgstr ""
+msgstr "Hướng xử lý độ sắc nét được áp dụng khi chụp một ảnh"
 
 msgid "capturing flash fired"
-msgstr ""
+msgstr "chế độ đèn chớp khi chụp"
 
 msgid "If the flash fired while capturing an image"
-msgstr ""
+msgstr "Nều đèn chớp lóe lên trong không chụp một ảnh"
 
 msgid "capturing flash mode"
-msgstr ""
+msgstr "chế độ đèn chớp khi chụp"
 
 msgid "The selected flash mode while capturing an image"
-msgstr ""
+msgstr "Lựa chọn chế độ đèn chớp trong khi chụp một ảnh"
 
 msgid "capturing metering mode"
-msgstr ""
+msgstr "chế độ đo khi chụp"
 
 msgid ""
 "The metering mode used while determining exposure for capturing an image"
-msgstr ""
+msgstr "Chế độ đo được sử dụng khi định đoạt độ phơi sáng khi chụp một ảnh"
 
 msgid "capturing source"
-msgstr ""
+msgstr "nguồn chụp"
 
 msgid "The source or type of device used for the capture"
-msgstr ""
+msgstr "Nguồn hay kiểu của thiết bị được sử dụng khi chụp"
 
 msgid "image horizontal ppi"
-msgstr ""
+msgstr "ppi (điểm ảnh mỗi inch) chiều ngang ảnh"
 
 msgid "Media (image/video) intended horizontal pixel density in ppi"
 msgstr ""
+"Mật độ điểm ảnh (pixel) theo chiều ngang cho media (ảnh/phim) tính bằng ppi"
 
 msgid "image vertical ppi"
-msgstr ""
+msgstr "ppi chiều dọc ảnh"
 
 msgid "Media (image/video) intended vertical pixel density in ppi"
 msgstr ""
+"Mật độ điểm ảnh (pixel) theo chiều dọc cho media (ảnh/phim) tính bằng ppi"
 
 msgid "ID3v2 frame"
-msgstr ""
+msgstr "Khung ID3v2"
 
 msgid "unparsed id3v2 tag frame"
-msgstr ""
+msgstr "khung thẻ id3v2 chưa phân tích"
 
 msgid "ID3 tag"
 msgstr "Thẻ ID3"
@@ -342,7 +354,7 @@
 msgstr "Tiếng nói của nhạc/ảnh Windows (Windows Media Speech)"
 
 msgid "CYUV Lossless"
-msgstr "CYUV không mất gì (CYUV Lossless)"
+msgstr "CYUV không mất dữ liệu (CYUV Lossless)"
 
 msgid "FFMpeg v1"
 msgstr "FFMpeg v1"
@@ -354,19 +366,16 @@
 msgstr "Mã hoá độ dài chạy (Run-Length Encoding: RLE)"
 
 msgid "Subtitle"
-msgstr ""
+msgstr "Phụ đề"
 
-#, fuzzy
 msgid "MPL2 subtitle format"
-msgstr "Định dạng phụ đề TMPlayer"
+msgstr "Định dạng phụ MPL2"
 
-#, fuzzy
 msgid "DKS subtitle format"
-msgstr "Định dạng phụ đề Sami"
+msgstr "Định dạng phụ đề DKS"
 
-#, fuzzy
 msgid "QTtext subtitle format"
-msgstr "Định dạng phụ đề Kate"
+msgstr "Định dạng phụ đề QTtext"
 
 msgid "Sami subtitle format"
 msgstr "Định dạng phụ đề Sami"
@@ -377,33 +386,30 @@
 msgid "Kate subtitle format"
 msgstr "Định dạng phụ đề Kate"
 
-#, fuzzy
 msgid "Uncompressed video"
-msgstr "YUV không nén"
+msgstr "Video không nén"
 
-#, fuzzy
 msgid "Uncompressed gray"
-msgstr "Ảnh màu xám không nén"
+msgstr "Màu xám không nén"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s YUV %s"
-msgstr "YUV không nén"
+msgstr "%s YUV %s không nén"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Uncompressed %s%d-bit %s"
-msgstr "%d-bit %s có bảng chọn không nén"
+msgstr "%s %d-bit %s không nén"
 
 #, c-format
 msgid "DivX MPEG-4 Version %d"
 msgstr "DivX MPEG-4 Phiên bản %d"
 
-#, fuzzy
 msgid "Uncompressed audio"
-msgstr "YUV không nén"
+msgstr "Âm thanh không nén"
 
-#, fuzzy, c-format
+#, c-format
 msgid "Raw %d-bit %s audio"
-msgstr "Âm thanh PCM %d-bit thô"
+msgstr "Âm thanh %d-bit %s thô"
 
 msgid "Audio CD source"
 msgstr "Nguồn đĩa CD âm thanh"
@@ -484,10 +490,10 @@
 msgstr "Không rõ phần tử mã hoá"
 
 msgid "Plugin or element of unknown type"
-msgstr "Không rõ kiểu phần bổ sung hay phần tử"
+msgstr "Không rõ kiểu của phần bổ sung hay phần tử"
 
 #~ msgid "Master"
-#~ msgstr "Chủ"
+#~ msgstr "Chính"
 
 #~ msgid "Bass"
 #~ msgstr "Trầm"
@@ -508,7 +514,7 @@
 #~ msgstr "CD"
 
 #~ msgid "Microphone"
-#~ msgstr "Máy vi âm"
+#~ msgstr "Micrô"
 
 #~ msgid "PC Speaker"
 #~ msgstr "Loa PC"
@@ -517,10 +523,64 @@
 #~ msgstr "Phát lại"
 
 #~ msgid "Capture"
-#~ msgstr "Bắt"
+#~ msgstr "Chụp"
+
+#~ msgid "Could not open vfs file \"%s\" for writing: %s."
+#~ msgstr "Không thể mở tập tin VFS “%s” để ghi: %s."
+
+#~ msgid "No filename given"
+#~ msgstr "Chưa nhập tên tập tin"
+
+#~ msgid "Could not close vfs file \"%s\"."
+#~ msgstr "Không thể đóng tập tin VFS “%s”."
+
+#~ msgid "Error while writing to file \"%s\"."
+#~ msgstr "Lỗi khi ghi vào tập tin “%s”."
+
+#~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
+#~ msgstr "URI phụ đề không hợp lệ “%s” nên tắt khả năng phụ đề."
+
+#~ msgid "RTSP streams cannot be played yet."
+#~ msgstr "Chưa có khả năng phát luồng RTSP."
+
+#~ msgid "Could not create \"decodebin\" element."
+#~ msgstr "Không thể tạo phần tử “decodebin”."
+
+#~ msgid ""
+#~ "Only a subtitle stream was detected. Either you are loading a subtitle "
+#~ "file or some other type of text file, or the media file was not "
+#~ "recognized."
+#~ msgstr ""
+#~ "Chỉ phát hiện luồng phụ đề. Hoặc bạn đang nạp tập tin phụ đề hay tập tin "
+#~ "văn bản kiểu khác, hoặc không nhận diện tập tin nhạc/ảnh."
+
+#~ msgid ""
+#~ "You do not have a decoder installed to handle this file. You might need "
+#~ "to install the necessary plugins."
+#~ msgstr ""
+#~ "Chưa cài đặt bộ giải mã có khả năng quản lý tập tin này. Có thể cần phải "
+#~ "cài đặt các phần bổ sung thích hợp."
+
+#~ msgid "This is not a media file"
+#~ msgstr "Đây không phải tập tin nhạc/ảnh"
+
+#~ msgid "A subtitle stream was detected, but no video stream."
+#~ msgstr "Phát hiện luồng phụ đề, không có luồng ảnh động."
+
+#~ msgid "Both autovideosink and xvimagesink elements are missing."
+#~ msgstr "Thiếu phần tử autovideosink, cũng thiếu phần tử xvimagesink."
+
+#~ msgid "Both autoaudiosink and alsasink elements are missing."
+#~ msgstr "Thiếu phần tử autoaudiosink, cũng thiếu phần tử alsasink."
+
+#~ msgid "Error while sending gdp header data to \"%s:%d\"."
+#~ msgstr "Lỗi khi gởi dữ liệu phần đầu GDP cho “%s:%d”."
+
+#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
+#~ msgstr "Lỗi khi gởi dữ liệu trọng tải GDP cho “%s:%d”."
 
 #~ msgid "Connection to %s:%d refused."
-#~ msgstr "Kết nối tới « %s:%d » bị từ chối."
+#~ msgstr "Kết nối tới “%s:%d” bị từ chối."
 
 #~ msgid "Uncompressed planar YUV 4:2:0"
 #~ msgstr "YUV 4:2:0 phẳng không nén"
@@ -561,68 +621,14 @@
 #~ msgid "Raw floating-point audio"
 #~ msgstr "Âm thanh dấu phẩy động thô"
 
-#~ msgid "Could not open vfs file \"%s\" for writing: %s."
-#~ msgstr "Không thể mở tập tin VFS « %s » để ghi: %s."
-
-#~ msgid "No filename given"
-#~ msgstr "Chưa nhập tên tập tin"
-
-#~ msgid "Could not close vfs file \"%s\"."
-#~ msgstr "Không thể đóng tập tin VFS « %s »."
-
-#~ msgid "Error while writing to file \"%s\"."
-#~ msgstr "Lỗi khi ghi vào tập tin « %s »."
-
-#~ msgid "Invalid subtitle URI \"%s\", subtitles disabled."
-#~ msgstr "URI phụ đề không hợp lệ « %s » nên tắt khả năng phụ đề."
-
-#~ msgid "RTSP streams cannot be played yet."
-#~ msgstr "Chưa có khả năng phát luồng RTSP."
-
-#~ msgid "Could not create \"decodebin\" element."
-#~ msgstr "Không thể tạo phần tử « decodebin »."
-
-#~ msgid ""
-#~ "Only a subtitle stream was detected. Either you are loading a subtitle "
-#~ "file or some other type of text file, or the media file was not "
-#~ "recognized."
-#~ msgstr ""
-#~ "Chỉ phát hiện luồng phụ đề. Hoặc bạn đang nạp tập tin phụ đề hay tập tin "
-#~ "văn bản kiểu khác, hoặc không nhận diện tập tin nhạc/ảnh."
-
-#~ msgid ""
-#~ "You do not have a decoder installed to handle this file. You might need "
-#~ "to install the necessary plugins."
-#~ msgstr ""
-#~ "Chưa cài đặt bộ giải mã có khả năng quản lý tập tin này. Có thể cần phải "
-#~ "cài đặt các phần bổ sung thích hợp."
-
-#~ msgid "This is not a media file"
-#~ msgstr "Đây không phải tập tin nhạc/ảnh"
-
-#~ msgid "A subtitle stream was detected, but no video stream."
-#~ msgstr "Phát hiện luồng phụ đề, không có luồng ảnh động."
-
-#~ msgid "Both autovideosink and xvimagesink elements are missing."
-#~ msgstr "Thiếu phần tử autovideosink, cũng thiếu phần tử xvimagesink."
-
-#~ msgid "Both autoaudiosink and alsasink elements are missing."
-#~ msgstr "Thiếu phần tử autoaudiosink, cũng thiếu phần tử alsasink."
-
 #~ msgid "No device specified."
 #~ msgstr "Chưa ghi rõ thiết bị nào"
 
 #~ msgid "Device \"%s\" does not exist."
-#~ msgstr "Không có thiết bị « %s »."
+#~ msgstr "Không có thiết bị “%s”."
 
 #~ msgid "Device \"%s\" is already being used."
-#~ msgstr "Thiết bị « %s » đang được dùng."
+#~ msgstr "Thiết bị “%s” đang được dùng."
 
 #~ msgid "Could not open device \"%s\" for reading and writing."
-#~ msgstr "Không thể mở thiết bị « %s » để đọc và ghi."
-
-#~ msgid "Error while sending gdp header data to \"%s:%d\"."
-#~ msgstr "Lỗi khi gởi dữ liệu phần đầu GDP cho « %s:%d »."
-
-#~ msgid "Error while sending gdp payload data to \"%s:%d\"."
-#~ msgstr "Lỗi khi gởi dữ liệu trọng tải GDP cho « %s:%d »."
+#~ msgstr "Không thể mở thiết bị “%s” để đọc và ghi."
diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo
index 64888cc..5f35065 100644
--- a/po/zh_CN.gmo
+++ b/po/zh_CN.gmo
Binary files differ
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 570d077..1de148d 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gst-plugins-base 0.10.21.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2012-11-20 23:31+0000\n"
+"POT-Creation-Date: 2012-12-18 00:25+0000\n"
 "PO-Revision-Date: 2009-01-14 12:41+0800\n"
 "Last-Translator: Ji ZhengYu <zhengyuji@gmail.com>\n"
 "Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
@@ -33,6 +33,9 @@
 msgid "Could not open audio device for playback."
 msgstr "无法打开音频设备播放。"
 
+msgid "Error outputting to audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open device for recording in mono mode."
 msgstr "无法在单声道模式打开设备录音。"
 
@@ -51,6 +54,9 @@
 msgid "Could not open audio device for recording."
 msgstr "无法打开音频设备录音。"
 
+msgid "Error recording from audio device. The device has been disconnected."
+msgstr ""
+
 msgid "Could not open CD device for reading."
 msgstr "无法打开 CD 设备读取。"
 
diff --git a/sys/ximage/ximagesink.h b/sys/ximage/ximagesink.h
index 33dadd8..a01cf01 100644
--- a/sys/ximage/ximagesink.h
+++ b/sys/ximage/ximagesink.h
@@ -118,7 +118,7 @@
  * @width: the width in pixels of Window @win
  * @height: the height in pixels of Window @win
  * @internal: used to remember if Window @win was created internally or passed
- * through the #GstXOverlay interface
+ * through the #GstVideoOverlay interface
  * @gc: the Graphical Context of Window @win
  *
  * Structure used to store informations about a Window.
@@ -147,7 +147,7 @@
  * @x_lock: used to protect X calls as we are not using the XLib in threaded
  * mode
  * @flow_lock: used to protect data flow routines from external calls such as
- * events from @event_thread or methods from the #GstXOverlay interface
+ * events from @event_thread or methods from the #GstVideoOverlay interface
  * @par: used to override calculated pixel aspect ratio from @xcontext
  * @pool_lock: used to protect the buffer pool
  * @buffer_pool: a list of #GstXImageBuffer that could be reused at next buffer
diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c
index 4040d74..e35d618 100644
--- a/sys/xvimage/xvimagesink.c
+++ b/sys/xvimage/xvimagesink.c
@@ -25,9 +25,10 @@
  * using the XVideo extension. Rendering to a remote display is theoretically
  * possible but i doubt that the XVideo extension is actually available when
  * connecting to a remote display. This element can receive a Window ID from the
- * application through the XOverlay interface and will then render video frames
- * in this drawable. If no Window ID was provided by the application, the
- * element will create its own internal window and render into it.
+ * application through the #GstVideoOverlay interface and will then render
+ * video frames in this drawable. If no Window ID was provided by the
+ * application, the element will create its own internal window and render
+ * into it.
  *
  * <refsect2>
  * <title>Scaling</title>
diff --git a/sys/xvimage/xvimagesink.h b/sys/xvimage/xvimagesink.h
index 443c6a9..12fb07d 100644
--- a/sys/xvimage/xvimagesink.h
+++ b/sys/xvimage/xvimagesink.h
@@ -140,7 +140,7 @@
  * @width: the width in pixels of Window @win
  * @height: the height in pixels of Window @win
  * @internal: used to remember if Window @win was created internally or passed
- * through the #GstXOverlay interface
+ * through the #GstVideoOverlay interface
  * @gc: the Graphical Context of Window @win
  *
  * Structure used to store informations about a Window.
@@ -182,7 +182,7 @@
  * @x_lock: used to protect X calls as we are not using the XLib in threaded
  * mode
  * @flow_lock: used to protect data flow routines from external calls such as
- * events from @event_thread or methods from the #GstXOverlay interface
+ * events from @event_thread or methods from the #GstVideoOverlay interface
  * @par: used to override calculated pixel aspect ratio from @xcontext
  * @pool_lock: used to protect the buffer pool
  * @image_pool: a list of #GstXvImageBuffer that could be reused at next buffer
diff --git a/tests/examples/overlay/gtk-videooverlay.c b/tests/examples/overlay/gtk-videooverlay.c
index 6d9ef23..d0545b1 100644
--- a/tests/examples/overlay/gtk-videooverlay.c
+++ b/tests/examples/overlay/gtk-videooverlay.c
@@ -119,7 +119,7 @@
   g_signal_connect (G_OBJECT (window), "delete-event",
       G_CALLBACK (window_closed), (gpointer) pipeline);
   gtk_window_set_default_size (GTK_WINDOW (window), 320, 240);
-  gtk_window_set_title (GTK_WINDOW (window), "GstXOverlay Gtk+ demo");
+  gtk_window_set_title (GTK_WINDOW (window), "GstVideoOverlay Gtk+ demo");
 
   video_window = gtk_drawing_area_new ();
   gtk_widget_set_double_buffered (video_window, FALSE);
diff --git a/tests/examples/overlay/qt-videooverlay.cpp b/tests/examples/overlay/qt-videooverlay.cpp
index 8ec9992..6b43119 100644
--- a/tests/examples/overlay/qt-videooverlay.cpp
+++ b/tests/examples/overlay/qt-videooverlay.cpp
@@ -100,7 +100,7 @@
 
   QWidget window;
   window.resize(320, 240);
-  window.setWindowTitle("GstXOverlay Qt demo");
+  window.setWindowTitle("GstVideoOverlay Qt demo");
   window.show();
   
   WId xwinid = window.winId();
diff --git a/tests/examples/overlay/qtgv-videooverlay.cpp b/tests/examples/overlay/qtgv-videooverlay.cpp
index cc82107..0b0528a 100644
--- a/tests/examples/overlay/qtgv-videooverlay.cpp
+++ b/tests/examples/overlay/qtgv-videooverlay.cpp
@@ -113,7 +113,7 @@
 
     QGraphicsView view( &scene );
     view.resize(320, 240);
-    view.setWindowTitle("GstXOverlay Qt GraphicsView demo");
+    view.setWindowTitle("GstVideoOverlay Qt GraphicsView demo");
     view.show();
 
     gst_init (&argc, &argv);
diff --git a/tests/examples/playback/playback-test.c b/tests/examples/playback/playback-test.c
index dd1b861..3e123c2 100644
--- a/tests/examples/playback/playback-test.c
+++ b/tests/examples/playback/playback-test.c
@@ -2115,7 +2115,7 @@
   /* This is here just for pedagogical purposes, GDK_WINDOW_XID will call it
    * as well */
   if (!gdk_window_ensure_native (window))
-    g_error ("Couldn't create native window needed for GstXOverlay!");
+    g_error ("Couldn't create native window needed for GstVideoOverlay!");
 
 #if defined (GDK_WINDOWING_WIN32)
   app->embed_xid = GDK_WINDOW_HWND (window);
diff --git a/tests/examples/seek/jsseek.c b/tests/examples/seek/jsseek.c
index 974b71f..7bc3b7b 100644
--- a/tests/examples/seek/jsseek.c
+++ b/tests/examples/seek/jsseek.c
@@ -2476,7 +2476,7 @@
   /* This is here just for pedagogical purposes, GDK_WINDOW_XID will call it
    * as well */
   if (!gdk_window_ensure_native (window))
-    g_error ("Couldn't create native window needed for GstXOverlay!");
+    g_error ("Couldn't create native window needed for GstVideoOverlay!");
 
 #ifdef HAVE_X
   embed_xid = GDK_WINDOW_XID (window);
diff --git a/tests/icles/test-colorkey.c b/tests/icles/test-colorkey.c
index 5cecb64..480016b 100644
--- a/tests/icles/test-colorkey.c
+++ b/tests/icles/test-colorkey.c
@@ -99,7 +99,7 @@
   /* This is here just for pedagogical purposes, GDK_WINDOW_XID will call it
    * as well */
   if (!gdk_window_ensure_native (window))
-    g_error ("Couldn't create native window needed for GstXOverlay!");
+    g_error ("Couldn't create native window needed for GstVideoOverlay!");
 
   embed_xid = GDK_WINDOW_XID (window);
   g_print ("Window realize: video window XID = %lu\n", embed_xid);
diff --git a/win32/common/_stdint.h b/win32/common/_stdint.h
index fc4a9c9..0b0f116 100644
--- a/win32/common/_stdint.h
+++ b/win32/common/_stdint.h
@@ -1,7 +1,7 @@
 #ifndef _GST_PLUGINS_BASE__STDINT_H
 #define _GST_PLUGINS_BASE__STDINT_H 1
 #ifndef _GENERATED_STDINT_H
-#define _GENERATED_STDINT_H "gst-plugins-base 1.0.3"
+#define _GENERATED_STDINT_H "gst-plugins-base 1.0.4"
 /* generated using gnu compiler gcc (Debian 4.7.2-4) 4.7.2 */
 #define _STDINT_HAVE_STDINT_H 1
 #include <stdint.h>
diff --git a/win32/common/config.h b/win32/common/config.h
index ccb9dd8..90e3928 100644
--- a/win32/common/config.h
+++ b/win32/common/config.h
@@ -87,7 +87,7 @@
 #define GST_PACKAGE_ORIGIN "Unknown package origin"
 
 /* GStreamer package release date/time for plugins as YYYY-MM-DD */
-#define GST_PACKAGE_RELEASE_DATETIME "2012-11-21"
+#define GST_PACKAGE_RELEASE_DATETIME "2012-12-18"
 
 /* Define to enable ALSA (used by alsa). */
 #undef HAVE_ALSA
@@ -319,7 +319,7 @@
 #define PACKAGE_NAME "GStreamer Base Plug-ins"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "GStreamer Base Plug-ins 1.0.3"
+#define PACKAGE_STRING "GStreamer Base Plug-ins 1.0.4"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "gst-plugins-base"
@@ -328,7 +328,7 @@
 #undef PACKAGE_URL
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "1.0.3"
+#define PACKAGE_VERSION "1.0.4"
 
 /* directory where plugins are located */
 #ifdef _DEBUG
@@ -362,7 +362,7 @@
 #undef USE_TREMOLO
 
 /* Version number of package */
-#define VERSION "1.0.3"
+#define VERSION "1.0.4"
 
 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
    significant byte first (like Motorola and SPARC, unlike Intel). */