From d089c537042d8866fc62578fa7718647a540ebbe Mon Sep 17 00:00:00 2001 From: Vineeth T M Date: Fri, 5 Sep 2014 09:53:15 +0530 Subject: 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 --- gst/aiff/aiffparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v1.2.3