summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-13 16:24:00 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-12-13 16:24:00 +0100
commit9796dacd1194796ba6d112b5b5cb88e4eac8578b (patch)
treef5d873ab76903577c807e16bedcd7f5906c75c29 /src
parent42304296e8a79e3fd0240c8978c9e3bb6df9745d (diff)
downloadxine-lib-9796dacd1194796ba6d112b5b5cb88e4eac8578b.tar.gz
xine-lib-9796dacd1194796ba6d112b5b5cb88e4eac8578b.tar.bz2
Update to the new id3 interface.
--HG-- extra : transplant_source : %3C%98%D3%B8%10%A9%E0%8D%CB%21q%A2%ED%8B%96%25%05%84%EDk
Diffstat (limited to 'src')
-rw-r--r--src/demuxers/demux_mpgaudio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c
index 45f65cec5..1648be926 100644
--- a/src/demuxers/demux_mpgaudio.c
+++ b/src/demuxers/demux_mpgaudio.c
@@ -608,8 +608,8 @@ static int demux_mpgaudio_next (demux_mpgaudio_t *this, int decoder_flags, int s
return parse_frame_payload(this, header_buf, decoder_flags);
- } else if ( id3v2_istag(header_buf) ) {
- if (!id3v2_parse_tag(this->input, this->stream, header_buf)) {
+ } else if ( id3v2_istag(_X_ME_32(header_buf)) ) {
+ if (!id3v2_parse_tag(this->input, this->stream, _X_ME_32(header_buf))) {
xprintf(this->stream->xine, XINE_VERBOSITY_LOG,
LOG_MODULE ": ID3V2 tag parsing error\n");
bytes = 1; /* resync */