diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-03-29 12:07:35 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-03-29 15:49:06 +0200 |
commit | f704eb612b3333a589d83741e07bfbdf1cffb8cb (patch) | |
tree | 2964fd4a111b4565f236c32e27711b2edc2560df /libavformat/id3v2.c | |
parent | ddcf67c8a51c67b122a826d8b5819e96d591d813 (diff) | |
download | ffmpeg-f704eb612b3333a589d83741e07bfbdf1cffb8cb.tar.gz |
id3v2: add another mimetype for JPEG image
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r-- | libavformat/id3v2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 13e5997259..9488fd856d 100644 --- a/libavformat/id3v2.c +++ b/libavformat/id3v2.c @@ -114,6 +114,7 @@ const char *ff_id3v2_picture_types[21] = { const CodecMime ff_id3v2_mime_tags[] = { {"image/gif" , CODEC_ID_GIF}, {"image/jpeg", CODEC_ID_MJPEG}, + {"image/jpg", CODEC_ID_MJPEG}, {"image/png" , CODEC_ID_PNG}, {"image/tiff", CODEC_ID_TIFF}, {"", CODEC_ID_NONE}, |