summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorVineeth T M <vineeth.tm@samsung.com>2014-09-05 09:53:15 +0530
committerSebastian Dröge <sebastian@centricular.com>2014-09-11 17:08:28 +0300
commit966a543b7c73204c2eeb68e9eabd1d03c96038d5 (patch)
treec9ae25344cb8a2ed16304de81844fc6ca435dbdb /gst
parent042696a62dc6f878453c1739b00c80c75704da71 (diff)
aiffparse: Fix handling of 64 bit floating point data
In gst_aiff_parse_create_caps if and else-if conditions are duplicated. https://bugzilla.gnome.org/show_bug.cgi?id=736090
Diffstat (limited to 'gst')
-rw-r--r--gst/aiff/aiffparse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/aiff/aiffparse.c b/gst/aiff/aiffparse.c
index efc3e6373..6d77e7cf9 100644
--- a/gst/aiff/aiffparse.c
+++ b/gst/aiff/aiffparse.c
@@ -830,7 +830,7 @@ gst_aiff_parse_create_caps (GstAiffParse * aiff)
if (aiff->endianness == G_BIG_ENDIAN) {
if (aiff->width == 32)
format = "F32BE";
- else if (aiff->width == 32)
+ else if (aiff->width == 64)
format = "F64BE";
}
} else {