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
This commit is contained in:
Vineeth T M 2014-09-05 09:53:15 +05:30 committed by Sebastian Dröge
parent 3a0a4a8d70
commit d089c53704

View file

@ -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 {