summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-11-01 23:34:32 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-11-02 09:36:46 +0200
commitdbd894f1336287a459db6d7486a83665d415dcb8 (patch)
treed3f2f6007912b1065bd6d60eaf806a000d084d53 /ext
parent18c8abec6d95d96b7a8371fc51f4ec8795b99f06 (diff)
downloadgstreamer-plugins-bad-dbd894f1336287a459db6d7486a83665d415dcb8.tar.gz
opusdec: Assume 48kHz if no sample rate is given in the header
Diffstat (limited to 'ext')
-rw-r--r--ext/opus/gstopusdec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/opus/gstopusdec.c b/ext/opus/gstopusdec.c
index 7b7a10bb5..b081b99b2 100644
--- a/ext/opus/gstopusdec.c
+++ b/ext/opus/gstopusdec.c
@@ -299,6 +299,8 @@ gst_opus_dec_parse_header (GstOpusDec * dec, GstBuffer * buf)
dec->n_channels = data[9];
dec->sample_rate = GST_READ_UINT32_LE (data + 12);
+ if (dec->sample_rate == 0)
+ dec->sample_rate = 48000;
dec->pre_skip = GST_READ_UINT16_LE (data + 10);
dec->r128_gain = GST_READ_UINT16_LE (data + 16);
dec->r128_gain_volume = gst_opus_dec_get_r128_volume (dec->r128_gain);