Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP5:Update
gstreamer-plugins-base.11517
0001-riff-media-Dont-divide-block-align-by-zero...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-riff-media-Dont-divide-block-align-by-zero-channels.patch of Package gstreamer-plugins-base.11517
From 5d505d108800cef210f67dcfed2801ba36beac2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com> Date: Fri, 20 Jan 2017 12:41:16 +0200 Subject: [PATCH] riff-media: Don't divide block align by zero channels https://bugzilla.gnome.org/show_bug.cgi?id=777525 --- gst-libs/gst/riff/riff-media.c | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c index 3182bc3..c227835 100644 --- a/gst-libs/gst/riff/riff-media.c +++ b/gst-libs/gst/riff/riff-media.c @@ -1299,22 +1299,28 @@ gst_riff_create_audio_caps (guint16 codec_id, if (strf != NULL) { gint ba = strf->blockalign; gint ch = strf->channels; - gint wd = ba * 8 / ch; - caps = gst_caps_new_simple ("audio/x-raw", - "format", G_TYPE_STRING, wd == 64 ? "F64LE" : "F32LE", - "layout", G_TYPE_STRING, "interleaved", - "channels", G_TYPE_INT, ch, NULL); - - /* Add default channel layout. We know no default layout for more than - * 8 channels. */ - if (ch > 8) - GST_WARNING ("don't know default layout for %d channels", ch); - else if (gst_riff_wave_add_default_channel_mask (caps, ch, - channel_reorder_map)) - GST_DEBUG ("using default channel layout for %d channels", ch); - else - GST_WARNING ("failed to add channel layout"); + if (ba > 0 && ch > 0 && (ba == (64 / 8) * ch || ba == (32 / 8) * ch)) { + gint wd = ba * 8 / ch; + + caps = gst_caps_new_simple ("audio/x-raw", + "format", G_TYPE_STRING, wd == 64 ? "F64LE" : "F32LE", + "layout", G_TYPE_STRING, "interleaved", + "channels", G_TYPE_INT, ch, NULL); + + /* Add default channel layout. We know no default layout for more than + * 8 channels. */ + if (ch > 8) + GST_WARNING ("don't know default layout for %d channels", ch); + else if (gst_riff_wave_add_default_channel_mask (caps, ch, + channel_reorder_map)) + GST_DEBUG ("using default channel layout for %d channels", ch); + else + GST_WARNING ("failed to add channel layout"); + } else { + GST_WARNING ("invalid block align %d or channel count %d", ba, ch); + return NULL; + } } else { /* FIXME: this is pretty useless - we need fixed caps */ caps = gst_caps_from_string ("audio/x-raw, "
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor