diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 15:23:30 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 15:23:30 +0100 |
commit | e081a00373ef979d1f94a09a5c3a10f68fd71e03 (patch) | |
tree | 4377d3fc62ff5838af63d5567068d0327ce6e487 | |
parent | 0d99d87a699acce9121c5948b5ddac795544284e (diff) | |
download | xine-lib-e081a00373ef979d1f94a09a5c3a10f68fd71e03.tar.gz xine-lib-e081a00373ef979d1f94a09a5c3a10f68fd71e03.tar.bz2 |
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
-rw-r--r-- | src/demuxers/id3.c | 6 |
1 files 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: |