diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2013-05-29 12:05:26 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-05-30 21:16:57 +0000 |
commit | f468325d34899a9b44ac6a38b24c6a9426682a28 (patch) | |
tree | f060904767e42bde1a177b749df5838afd4e94d3 /libavformat/version.h | |
parent | c4e0e314248865830ec073e5a3ef08e0a40aabf2 (diff) | |
download | ffmpeg-f468325d34899a9b44ac6a38b24c6a9426682a28.tar.gz |
lavf/id3v2enc: fix cover art display on some software
Adding an arbitrary amount of padding bytes at the end of the
ID3 metadata fixes cover art display for some software (iTunes,
Traktor, Serato, Torq).
For reference (ID3 metadata):
[ Apic frames ] -> cover doesn't show up
[ Apic frames, Padding ] -> ok
[ Apic frames, ID3 frames ] -> ok
[ ID3 frames, Apic frames ] -> cover doesn't show up
[ ID3 frames, Apic frames, Padding ] -> ok
Diffstat (limited to 'libavformat/version.h')
-rw-r--r-- | libavformat/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/version.h b/libavformat/version.h index 8517fb17af..8db210ee07 100644 --- a/libavformat/version.h +++ b/libavformat/version.h @@ -31,7 +31,7 @@ #define LIBAVFORMAT_VERSION_MAJOR 55 #define LIBAVFORMAT_VERSION_MINOR 8 -#define LIBAVFORMAT_VERSION_MICRO 101 +#define LIBAVFORMAT_VERSION_MICRO 102 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ LIBAVFORMAT_VERSION_MINOR, \ |