diff --git a/configure.ac b/configure.ac
index 1437501416..d180d7ad11 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ AC_PREREQ(2.60)
dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too
-AC_INIT(GStreamer Bad Plug-ins, 0.10.19.4,
+AC_INIT(GStreamer Bad Plug-ins, 0.10.19.5,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-plugins-bad)
diff --git a/docs/plugins/gst-plugins-bad-plugins.args b/docs/plugins/gst-plugins-bad-plugins.args
index 1f28478c43..7e069205ef 100644
--- a/docs/plugins/gst-plugins-bad-plugins.args
+++ b/docs/plugins/gst-plugins-bad-plugins.args
@@ -26390,7 +26390,7 @@
rw
physics
water density: from 1 to 4.
-1.10363e-314
+0
@@ -26430,7 +26430,7 @@
rw
splash
make a big splash in the center.
-7.13925e-321
+4.63015e-299
@@ -26440,7 +26440,7 @@
rw
splash
make a big splash in the center.
-2.35064e-310
+0
@@ -26470,7 +26470,7 @@
rw
ratiox
x-ratio.
-8.62498e-317
+9
@@ -26480,7 +26480,7 @@
rw
ratioy
y-ratio.
--1.30276e-224
+8
@@ -26490,7 +26490,7 @@
rw
DelayTime
the delay time.
-0
+7.74861e-304
@@ -26540,7 +26540,7 @@
rw
Color-R
the color of the image.
-2.54155e-38
+0
@@ -27060,7 +27060,7 @@
rw
blend
blend factor.
-6.09249e+247
+4.74303e-322
@@ -27250,7 +27250,7 @@
rw
HSync
the hsync offset.
-1
+0
@@ -46223,3 +46223,53 @@
3
+
+ladspa-TripleChorus::Delay
+gfloat
+[0,30]
+rwx
+Delay
+Delay.
+0
+
+
+
+ladspa-TripleChorus::Mod-Amplitude-1
+gfloat
+[0,10]
+rwx
+Mod-Amplitude-1
+Mod-Amplitude-1.
+0
+
+
+
+ladspa-TripleChorus::Mod-Amplitude-2
+gfloat
+[0,3]
+rwx
+Mod-Amplitude-2
+Mod-Amplitude-2.
+0
+
+
+
+ladspa-TripleChorus::Mod-Frequency-1
+gfloat
+[0.003,10]
+rwx
+Mod-Frequency-1
+Mod-Frequency-1.
+0.003
+
+
+
+ladspa-TripleChorus::Mod-Frequency-2
+gfloat
+[0.01,30]
+rwx
+Mod-Frequency-2
+Mod-Frequency-2.
+0.01
+
+
diff --git a/docs/plugins/gst-plugins-bad-plugins.hierarchy b/docs/plugins/gst-plugins-bad-plugins.hierarchy
index 8afe9421d9..68357285cd 100644
--- a/docs/plugins/gst-plugins-bad-plugins.hierarchy
+++ b/docs/plugins/gst-plugins-bad-plugins.hierarchy
@@ -304,6 +304,7 @@ GObject
ladspa-Rec-VCO
ladspa-Saw-VCO
ladspa-Tricardioid-to-AMB
+ ladspa-TripleChorus
ladspa-Virtualmic
ladspa-alias
ladspa-allpass-c
diff --git a/ext/cog/gstcogorc-dist.c b/ext/cog/gstcogorc-dist.c
index 755636d592..f8645c9d00 100644
--- a/ext/cog/gstcogorc-dist.c
+++ b/ext/cog/gstcogorc-dist.c
@@ -154,11 +154,20 @@ void cogorc_unpack_axyz_3 (orc_uint8 * d1, const orc_uint32 * s1, int n);
#define ORC_CLAMP_UL(x) ORC_CLAMP(x,ORC_UL_MIN,ORC_UL_MAX)
#define ORC_SWAP_W(x) ((((x)&0xff)<<8) | (((x)&0xff00)>>8))
#define ORC_SWAP_L(x) ((((x)&0xff)<<24) | (((x)&0xff00)<<8) | (((x)&0xff0000)>>8) | (((x)&0xff000000)>>24))
+#define ORC_SWAP_Q(x) ((((x)&0xffULL)<<56) | (((x)&0xff00ULL)<<40) | (((x)&0xff0000ULL)<<24) | (((x)&0xff000000ULL)<<8) | (((x)&0xff00000000ULL)>>8) | (((x)&0xff0000000000ULL)>>24) | (((x)&0xff000000000000ULL)>>40) | (((x)&0xff00000000000000ULL)>>56))
#define ORC_PTR_OFFSET(ptr,offset) ((void *)(((unsigned char *)(ptr)) + (offset)))
-#define ORC_MIN_NORMAL (1.1754944909521339405e-38)
-#define ORC_DENORMAL(x) (((x) > -ORC_MIN_NORMAL && (x) < ORC_MIN_NORMAL) ? ((x)<0 ? (-0.0f) : (0.0f)) : (x))
-#define ORC_MINF(a,b) (isnan(a) ? a : isnan(b) ? b : ((a)<(b)) ? (a) : (b))
-#define ORC_MAXF(a,b) (isnan(a) ? a : isnan(b) ? b : ((a)>(b)) ? (a) : (b))
+#define ORC_RECAST_INT(x) (((orc_union32)(x)).i)
+#define ORC_RECAST_FLOAT(x) (((orc_union32)(orc_int32)(x)).f)
+#define ORC_DENORMAL(x) ORC_RECAST_FLOAT(ORC_RECAST_INT(x) & (((ORC_RECAST_INT(x)&0x7f800000) == 0) ? 0xff800000 : 0xffffffff))
+#define ORC_ISNAN(x) (((ORC_RECAST_INT(x)&0x7f800000) == 0x7f800000) && ((ORC_RECAST_INT(x)&0x007fffff) != 0))
+#define ORC_MINF(a,b) (ORC_ISNAN(a) ? a : ORC_ISNAN(b) ? b : ((a)<(b)) ? (a) : (b))
+#define ORC_MAXF(a,b) (ORC_ISNAN(a) ? a : ORC_ISNAN(b) ? b : ((a)>(b)) ? (a) : (b))
+#define ORC_RECAST_INT64(x) (((orc_union64)(x)).i)
+#define ORC_RECAST_DOUBLE(x) (((orc_union64)(orc_int64)(x)).f)
+#define ORC_DENORMAL_D(x) ORC_RECAST_DOUBLE(ORC_RECAST_INT64(x) & (((ORC_RECAST_INT64(x)&0x7ff0000000000000ULL) == 0) ? 0xfff0000000000000ULL : 0xffffffffffffffffULL))
+#define ORC_ISNAN_D(x) (((ORC_RECAST_INT64(x)&0x7ff0000000000000ULL) == 0x7ff0000000000000ULL) && ((ORC_RECAST_INT64(x)&0x000fffffffffffffULL) != 0))
+#define ORC_MIND(a,b) (ORC_ISNAN_D(a) ? a : ORC_ISNAN_D(b) ? b : ((a)<(b)) ? (a) : (b))
+#define ORC_MAXD(a,b) (ORC_ISNAN_D(a) ? a : ORC_ISNAN_D(b) ? b : ((a)>(b)) ? (a) : (b))
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
#define ORC_RESTRICT restrict
#elif defined(__GNUC__) && __GNUC__ >= 4
diff --git a/po/af.po b/po/af.po
index db0634f427..39ec10308b 100644
--- a/po/af.po
+++ b/po/af.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins 0.7.6\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2004-03-18 14:16+0200\n"
"Last-Translator: Petri Jooste \n"
"Language-Team: Afrikaans \n"
diff --git a/po/az.po b/po/az.po
index a133c52d2b..8c7892ed8a 100644
--- a/po/az.po
+++ b/po/az.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-0.8.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2004-03-19 18:29+0200\n"
"Last-Translator: Metin Amiroff \n"
"Language-Team: Azerbaijani \n"
diff --git a/po/bg.po b/po/bg.po
index e30b13b4f4..ae6f1bc2fd 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-09-24 15:33+0300\n"
"Last-Translator: Alexander Shopov \n"
"Language-Team: Bulgarian \n"
diff --git a/po/ca.po b/po/ca.po
index 27499417ec..d81c92566c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins 0.8.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2004-08-05 15:48+0200\n"
"Last-Translator: Jordi Mallach \n"
"Language-Team: Catalan \n"
diff --git a/po/cs.po b/po/cs.po
index 396774f980..38bc2f6051 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-29 01:48+0200\n"
"Last-Translator: Petr Kovar \n"
"Language-Team: Czech \n"
diff --git a/po/da.po b/po/da.po
index 3a4a8d67bb..5748077059 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad-0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-12 11:28+0200\n"
"Last-Translator: Joe Hansen \n"
"Language-Team: Danish \n"
diff --git a/po/de.po b/po/de.po
index 2fe70f511c..5d03cfd3a3 100644
--- a/po/de.po
+++ b/po/de.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-22 16:58+0200\n"
"Last-Translator: Christian Kirbach \n"
"Language-Team: German \n"
diff --git a/po/en_GB.po b/po/en_GB.po
index 44e7f40dc8..4a5bc88268 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins 0.8.1\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2004-04-26 10:41-0400\n"
"Last-Translator: Gareth Owen \n"
"Language-Team: English (British) \n"
diff --git a/po/es.po b/po/es.po
index ba5d7c6515..a36c969d4c 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-09-29 23:12+0200\n"
"Last-Translator: Jorge González González \n"
"Language-Team: Spanish \n"
diff --git a/po/eu.po b/po/eu.po
index 17402b8c56..b75c0503e9 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad-0.10.17.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2010-03-25 12:30+0100\n"
"Last-Translator: Mikel Olasagasti Uranga \n"
"Language-Team: Basque \n"
diff --git a/po/fi.po b/po/fi.po
index 38bd091507..a5105006f2 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-12 22:13+0300\n"
"Last-Translator: Tommi Vainikainen \n"
"Language-Team: Finnish \n"
diff --git a/po/fr.po b/po/fr.po
index e1d240d441..e670cd0d4a 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-09-22 20:27+0200\n"
"Last-Translator: Claude Paroz \n"
"Language-Team: French \n"
diff --git a/po/hu.po b/po/hu.po
index dd8ff0ac88..e6e69a93bc 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-12 23:33+0200\n"
"Last-Translator: Gabor Kelemen \n"
"Language-Team: Hungarian \n"
diff --git a/po/id.po b/po/id.po
index 2e42d38d1b..de077288c3 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-24 11:38-0400\n"
"Last-Translator: Andhika Padmawan \n"
"Language-Team: Indonesian \n"
diff --git a/po/it.po b/po/it.po
index 65dd133b87..fafab182fd 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-14 00:12+0200\n"
"Last-Translator: Luca Ferretti \n"
"Language-Team: Italian \n"
diff --git a/po/ja.po b/po/ja.po
index e0b7008093..d550e59ec1 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.11.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-06-01 20:27+0900\n"
"Last-Translator: Makoto Kato \n"
"Language-Team: Japanese \n"
diff --git a/po/ky.po b/po/ky.po
index db2c215d87..d8ab9467e3 100644
--- a/po/ky.po
+++ b/po/ky.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.5\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2007-11-13 17:16+0600\n"
"Last-Translator: Ilyas Bakirov \n"
"Language-Team: Kirghiz \n"
diff --git a/po/lt.po b/po/lt.po
index 338935d075..57e1e6ad92 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad-0.10.6.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2008-05-14 02:13+0300\n"
"Last-Translator: Gintautas Miliauskas \n"
"Language-Team: Lithuanian \n"
diff --git a/po/lv.po b/po/lv.po
index fcf73180bc..2531a104e5 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-12 20:33+0100\n"
"Last-Translator: Rihards Priedītis \n"
"Language-Team: Latvian \n"
diff --git a/po/mt.po b/po/mt.po
index 8c43d0a3a8..9c02557147 100644
--- a/po/mt.po
+++ b/po/mt.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad-0.10.8.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2008-10-26 20:27+0100\n"
"Last-Translator: Michel Bugeja \n"
"Language-Team: Maltese \n"
diff --git a/po/nb.po b/po/nb.po
index 53cd2d770f..9bc90b0333 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.5\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2007-11-03 14:46+0100\n"
"Last-Translator: Kjartan Maraas \n"
"Language-Team: Norwegian Bokmaal \n"
diff --git a/po/nl.po b/po/nl.po
index 2819effeff..9db7d04b03 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-13 00:06+0200\n"
"Last-Translator: Freek de Kruijf \n"
"Language-Team: Dutch \n"
diff --git a/po/or.po b/po/or.po
index 172cda4562..ecc61a306a 100644
--- a/po/or.po
+++ b/po/or.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-0.8.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2004-09-27 13:32+0530\n"
"Last-Translator: Gora Mohanty \n"
"Language-Team: Oriya \n"
diff --git a/po/pl.po b/po/pl.po
index 7c7e6dbe8f..677c66acaa 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-26 16:52+0200\n"
"Last-Translator: Jakub Bogusz \n"
"Language-Team: Polish \n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 11808fb338..3dd43fa212 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad-0.10.18.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2010-05-26 00:00-0300\n"
"Last-Translator: Fabrício Godoy \n"
"Language-Team: Brazilian Portuguese \n"
diff --git a/po/ru.po b/po/ru.po
index ce36ac75c1..3b21b2bd7c 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.9.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-02-12 15:00+0200\n"
"Last-Translator: Pavel Maryanov \n"
"Language-Team: Russian \n"
diff --git a/po/sk.po b/po/sk.po
index 328cf3498e..05c84ea612 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.17.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2010-03-08 09:20+0100\n"
"Last-Translator: Peter Tuhársky \n"
"Language-Team: Slovak \n"
diff --git a/po/sq.po b/po/sq.po
index 844bed2638..2b8b3e9977 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.7.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2008-08-15 16:07+0200\n"
"Last-Translator: Laurent Dhima \n"
"Language-Team: Albanian \n"
diff --git a/po/sr.po b/po/sr.po
index 0024c0284c..deeff2e4a3 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins 0.7.6\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2004-03-13 00:18+0100\n"
"Last-Translator: Danilo Segan \n"
"Language-Team: Serbian \n"
diff --git a/po/sv.po b/po/sv.po
index 18f0bdde28..f3cff91841 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-12 20:29+0100\n"
"Last-Translator: Daniel Nylander \n"
"Language-Team: Swedish \n"
diff --git a/po/tr.po b/po/tr.po
index c4c5fa5c3c..d3b2c68780 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad-0.10.13.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-08-12 19:51+0200\n"
"Last-Translator: Server Acim \n"
"Language-Team: Turkish \n"
diff --git a/po/uk.po b/po/uk.po
index 7b9dbb10e8..3ec74e3cbf 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.5\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2007-07-04 12:19+0200\n"
"Last-Translator: Maxim V. Dziumanenko \n"
"Language-Team: Ukrainian \n"
diff --git a/po/vi.po b/po/vi.po
index 002e9ab912..b90af69a75 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.17.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2010-03-06 22:09+1030\n"
"Last-Translator: Clytie Siddall \n"
"Language-Team: Vietnamese \n"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 397a3bf629..6da866071f 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gst-plugins-bad 0.10.16.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/\n"
-"POT-Creation-Date: 2010-08-21 21:29+0200\n"
+"POT-Creation-Date: 2010-08-30 15:40+0200\n"
"PO-Revision-Date: 2009-11-20 18:12中国标准时间\n"
"Last-Translator: Ji ZhengYu \n"
"Language-Team: Chinese (simplified) \n"
diff --git a/win32/common/config.h b/win32/common/config.h
index f949e9b9f7..13b79571fc 100644
--- a/win32/common/config.h
+++ b/win32/common/config.h
@@ -199,7 +199,7 @@
#undef USE_POISONING
/* Version number of package */
-#define VERSION "0.10.19.4"
+#define VERSION "0.10.19.5"
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */