tag: id3v2: fix parsing of unsync'ed ID3 v2.4 tags and frames
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Fri, 7 Aug 2009 15:02:23 +0000 (16:02 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 14 Aug 2011 23:10:32 +0000 (00:10 +0100)
commitc2c21806ba4255b081610d4033b7044936e7b5be
tree5ddce345a5630f4816098eb83b983feac8f39676
parent941d5080fa170e6b775914bcaecc3e3be2286f09
tag: id3v2: fix parsing of unsync'ed ID3 v2.4 tags and frames

Reversing the unsynchronisation seems to work slightly differently
for ID3 v2.3 tags and v2.4 tags: v2.3 tags don't have syncsafe frame
sizes in the frame header, so the unsynchronisation is applied to
the whole frame data including all the frame headers. v2.4 frames
have sync-safe sizes, however, so the unsynchronisation only needs
to be applied to the actual frame data, and it seems that's what's
being done as well. So we need to undo the unsynchronisation on a
per-frame basis for v2.4 tags for things to work properly.

Fixes extraction of coverart/images from APIC frames in ID3 v2.4
tags (#588148).

Add unit test for this as well.
gst-libs/gst/tag/id3v2.c
gst-libs/gst/tag/id3v2.h
gst-libs/gst/tag/id3v2frames.c