mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-01-04 09:15:05 +00:00
Warning fix for gcc 4.3.
This commit is contained in:
parent
52f2415c02
commit
0a4cc59f3b
@ -213,7 +213,7 @@ decode_mp3_header(const unsigned char *buf,
|
||||
else if (h->version == 3)
|
||||
h->version = 1;
|
||||
|
||||
h->layer = 4 - (header >> 17) & 3;
|
||||
h->layer = 4 - ((header >> 17) & 3);
|
||||
if (h->layer == 4)
|
||||
mxerror("Invalid MP3 header value for the layer.\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user