diff options
Diffstat (limited to 'src/demuxers/id3.c')
-rw-r--r-- | src/demuxers/id3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/id3.c b/src/demuxers/id3.c index 8f6878656..0ec1cdaa5 100644 --- a/src/demuxers/id3.c +++ b/src/demuxers/id3.c @@ -852,7 +852,7 @@ int id3v24_parse_tag(input_plugin_t *input, int id3v2_parse_tag(input_plugin_t *input, xine_stream_t *stream, uint32_t id3_signature) { - _x_assert(mp3_frame_header[0] == 'I' && mp3_frame_header[1] == 'D' && mp3_frame_header[2] == '3'); + _x_assert((id3_signature & ID3V2X_MASK) == ID3V2X_TAG); int result = 0; |