mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:06:12 +00:00
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:
parent
3a0a4a8d70
commit
d089c53704
1 changed files with 1 additions and 1 deletions
|
@ -830,7 +830,7 @@ gst_aiff_parse_create_caps (GstAiffParse * aiff)
|
||||||
if (aiff->endianness == G_BIG_ENDIAN) {
|
if (aiff->endianness == G_BIG_ENDIAN) {
|
||||||
if (aiff->width == 32)
|
if (aiff->width == 32)
|
||||||
format = "F32BE";
|
format = "F32BE";
|
||||||
else if (aiff->width == 32)
|
else if (aiff->width == 64)
|
||||||
format = "F64BE";
|
format = "F64BE";
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue