diff options
author | Thibaut Mattern <thibaut.mattern@gmail.com> | 2008-02-18 22:01:32 +0100 |
---|---|---|
committer | Thibaut Mattern <thibaut.mattern@gmail.com> | 2008-02-18 22:01:32 +0100 |
commit | 0ac9aca92944c9a3243dabace9a928916010dd55 (patch) | |
tree | c2e75c44d39b7b99b3ac208ef356ea0c95d74cb6 | |
parent | ac63f46f26fa2bc9a0be9feacae52d55249685be (diff) | |
download | xine-lib-0ac9aca92944c9a3243dabace9a928916010dd55.tar.gz xine-lib-0ac9aca92944c9a3243dabace9a928916010dd55.tar.bz2 |
Backed out changeset 698d30889b29
id3v2_istag has not the same signature in 1.1 and 1.2.
-rw-r--r-- | src/demuxers/demux_mpgaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c index 648f04410..56759dd4b 100644 --- a/src/demuxers/demux_mpgaudio.c +++ b/src/demuxers/demux_mpgaudio.c @@ -725,8 +725,8 @@ static int demux_mpgaudio_next (demux_mpgaudio_t *this, int decoder_flags, int s /* the stream is broken, don't keep info about previous frames */ this->free_bitrate_size = 0; - if ( id3v2_istag(_X_ME_32(header)) ) { - if (!id3v2_parse_tag(this->input, this->stream, _X_ME_32(header))) { + if ( id3v2_istag(header) ) { + if (!id3v2_parse_tag(this->input, this->stream, header)) { xprintf(this->stream->xine, XINE_VERBOSITY_LOG, LOG_MODULE ": ID3V2 tag parsing error\n"); bytes = 1; /* resync */ |