diff options
author | Vineeth T M <vineeth.tm@samsung.com> | 2014-09-05 09:53:15 +0530 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-09-05 10:45:57 +0300 |
commit | d089c537042d8866fc62578fa7718647a540ebbe (patch) | |
tree | 4b20d6e3f4e209067711f461bef7c168b45b3147 /gst | |
parent | 3a0a4a8d700b7c719c72e9a7b6bfc6eef72304d7 (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.c | 2 |
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 { |