diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 15:27:00 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-13 15:27:00 +0100 |
commit | 326d7c7dda2fa44257c0658d27e95b592653aefb (patch) | |
tree | d109945095688b896dbb778697bf10eb78b58ab5 | |
parent | 1b9fbcade1d321430089d9cd5b0313714ce52dd0 (diff) | |
download | xine-lib-326d7c7dda2fa44257c0658d27e95b592653aefb.tar.gz xine-lib-326d7c7dda2fa44257c0658d27e95b592653aefb.tar.bz2 |
Report the whole ID3v2 signature when it's not recognised.
--HG--
extra : transplant_source : %0D%1FR%99%3CQ%C7%0F%E6%D4%DB%5B%15%B0%BF3%E6.%25%B3
-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 2367087f8..b5c07e419 100644 --- a/src/demuxers/id3.c +++ b/src/demuxers/id3.c @@ -873,7 +873,7 @@ int id3v2_parse_tag(input_plugin_t *input, break; default: - xprintf(stream->xine, XINE_VERBOSITY_LOG, "Unknown ID3v2 version: 0x%02x.\n", mp3_frame_header[3]); + xprintf(stream->xine, XINE_VERBOSITY_LOG, "Unknown ID3v2 signature: 0x%08x.\n", be2me_32(id3_signature)); } return result; |