diff options
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch | 47 | ||||
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb | 7 |
2 files changed, 51 insertions, 3 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch b/meta/recipes-multimedia/gstreamer/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch new file mode 100644 index 0000000000..48b8e98b81 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good-0.10.31/0407-mulawdec-fix-integer-overrun.patch | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | From ce94b2c2b91b6db190c121860e12a6afafce7ae1 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Roland Krikava <rkrikava@gmail.com> | ||
| 3 | Date: Fri, 2 Nov 2012 12:38:44 -0400 | ||
| 4 | Subject: [PATCH 407/440] mulawdec: fix integer overrun | ||
| 5 | |||
| 6 | There might be more than 65535 samples in a chunk of data. | ||
| 7 | |||
| 8 | https://bugzilla.gnome.org/show_bug.cgi?id=687469 | ||
| 9 | |||
| 10 | Commit - 3be45f70220310ec1c60d819f90b5f2ae03b5d83 in 0.10 branch | ||
| 11 | |||
| 12 | Upstream Status: Backported | ||
| 13 | |||
| 14 | Signed-off-by: Roland Krikava <rkrikava@gmail.com> | ||
| 15 | --- | ||
| 16 | gst/law/mulaw-conversion.c | 6 ++++-- | ||
| 17 | 1 file changed, 4 insertions(+), 2 deletions(-) | ||
| 18 | |||
| 19 | diff --git a/gst/law/mulaw-conversion.c b/gst/law/mulaw-conversion.c | ||
| 20 | index 8afae80..190a9f5 100644 | ||
| 21 | --- a/gst/law/mulaw-conversion.c | ||
| 22 | +++ b/gst/law/mulaw-conversion.c | ||
| 23 | @@ -51,9 +51,10 @@ mulaw_encode (gint16 * in, guint8 * out, gint numsamples) | ||
| 24 | 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, | ||
| 25 | 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 | ||
| 26 | }; | ||
| 27 | - gint16 sign, exponent, mantissa, i; | ||
| 28 | + gint16 sign, exponent, mantissa; | ||
| 29 | gint16 sample; | ||
| 30 | guint8 ulawbyte; | ||
| 31 | + gint i; | ||
| 32 | |||
| 33 | for (i = 0; i < numsamples; i++) { | ||
| 34 | sample = in[i]; | ||
| 35 | @@ -102,7 +103,8 @@ mulaw_decode (guint8 * in, gint16 * out, gint numsamples) | ||
| 36 | static gint16 exp_lut[8] = { 0, 132, 396, 924, 1980, 4092, 8316, 16764 }; | ||
| 37 | gint16 sign, exponent, mantissa; | ||
| 38 | guint8 ulawbyte; | ||
| 39 | - gint16 linear, i; | ||
| 40 | + gint16 linear; | ||
| 41 | + gint i; | ||
| 42 | |||
| 43 | for (i = 0; i < numsamples; i++) { | ||
| 44 | ulawbyte = in[i]; | ||
| 45 | -- | ||
| 46 | 1.7.9.5 | ||
| 47 | |||
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb index 88f90f3b85..4ccdec08ea 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb +++ b/meta/recipes-multimedia/gstreamer/gst-plugins-good_0.10.31.bb | |||
| @@ -26,9 +26,10 @@ DEPENDS += "gst-plugins-base gconf cairo libpng zlib libid3tag flac \ | |||
| 26 | 26 | ||
| 27 | inherit gettext gconf | 27 | inherit gettext gconf |
| 28 | 28 | ||
| 29 | SRC_URI += "file://0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch" | 29 | SRC_URI += "file://0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffer-i.patch \ |
| 30 | SRC_URI += "file://0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch" | 30 | file://0001-v4l2_calls-define-V4L2_CID_HCENTER-and-V4L2_CID_VCEN.patch \ |
| 31 | 31 | file://0407-mulawdec-fix-integer-overrun.patch \ | |
| 32 | " | ||
| 32 | EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal \ | 33 | EXTRA_OECONF += "--disable-aalib --disable-esd --disable-shout2 --disable-libcaca --disable-hal \ |
| 33 | --disable-examples --disable-taglib" | 34 | --disable-examples --disable-taglib" |
| 34 | 35 | ||
