From e081a00373ef979d1f94a09a5c3a10f68fd71e03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Thu, 13 Dec 2007 15:23:30 +0100 Subject: Pass the new id3_signature parameter to the _parse_tag functions. --HG-- extra : transplant_source : %7F%AE%9A%FBV%3B%D3%AB%1DG%DE%BA%23%02%D7%0F%0A%D4%DAr --- src/demuxers/id3.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/demuxers/id3.c b/src/demuxers/id3.c index 27b61391c..fb7b76ca6 100644 --- a/src/demuxers/id3.c +++ b/src/demuxers/id3.c @@ -859,17 +859,17 @@ int id3v2_parse_tag(input_plugin_t *input, switch(mp3_frame_header[3]) { case 2: xprintf(stream->xine, XINE_VERBOSITY_LOG, "ID3V2.2 tag\n"); - result = id3v22_parse_tag(input, stream, mp3_frame_header); + result = id3v22_parse_tag(input, stream, id3_signature); break; case 3: xprintf(stream->xine, XINE_VERBOSITY_LOG, "ID3V2.3 tag\n"); - result = id3v23_parse_tag(input, stream, mp3_frame_header); + result = id3v23_parse_tag(input, stream, id3_signature); break; case 4: xprintf(stream->xine, XINE_VERBOSITY_LOG, "ID3V2.4 tag\n"); - result = id3v24_parse_tag(input, stream, mp3_frame_header); + result = id3v24_parse_tag(input, stream, id3_signature); break; default: -- cgit v1.2.3