mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
xingmux: Use FALSE instead of 0 as return value for a function returning gboolean
Fixes bug #639291.
This commit is contained in:
parent
7e6125fc8f
commit
904d0b9b60
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ parse_header (guint32 header, guint * ret_size, guint * ret_spf,
|
|||
bitrate = (header >> 12) & 0xF;
|
||||
bitrate = mp3types_bitrates[lsf][layer - 1][bitrate] * 1000;
|
||||
if (bitrate == 0)
|
||||
return 0;
|
||||
return FALSE;
|
||||
|
||||
samplerate = (header >> 10) & 0x3;
|
||||
samplerate = mp3types_freqs[lsf + mpg25][samplerate];
|
||||
|
|
Loading…
Reference in a new issue