diff options
Diffstat (limited to 'src/demuxers/demux_aac.c')
-rw-r--r-- | src/demuxers/demux_aac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/demux_aac.c b/src/demuxers/demux_aac.c index 1775a4e0e..1a89cb328 100644 --- a/src/demuxers/demux_aac.c +++ b/src/demuxers/demux_aac.c @@ -84,7 +84,7 @@ static int open_aac_file(demux_aac_t *this) { /* Check if there's an ID3v2 tag at the start */ if ( id3v2_istag(peak) ) { - id3size = BE_32_synchsafe(&peak[6]); + id3size = _X_BE_32_synchsafe(&peak[6]); this->input->seek(this->input, 4, SEEK_SET); |