2009-08-11 17:08:09 +00:00
|
|
|
/*
|
|
|
|
* APE tag handling
|
|
|
|
* Copyright (c) 2007 Benjamin Zores <ben@geexbox.org>
|
|
|
|
* based upon libdemac from Dave Chapman.
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-05-22 10:46:29 +00:00
|
|
|
#include "libavutil/dict.h"
|
2009-08-11 17:08:09 +00:00
|
|
|
#include "avformat.h"
|
2010-02-28 01:43:47 +00:00
|
|
|
#include "apetag.h"
|
2012-06-26 16:58:39 +00:00
|
|
|
#include "internal.h"
|
2009-08-11 17:08:09 +00:00
|
|
|
|
|
|
|
#define APE_TAG_VERSION 2000
|
|
|
|
#define APE_TAG_FOOTER_BYTES 32
|
|
|
|
#define APE_TAG_FLAG_CONTAINS_HEADER (1 << 31)
|
|
|
|
#define APE_TAG_FLAG_IS_HEADER (1 << 29)
|
2012-02-13 15:01:54 +00:00
|
|
|
#define APE_TAG_FLAG_IS_BINARY (1 << 1)
|
2009-08-11 17:08:09 +00:00
|
|
|
|
|
|
|
static int ape_tag_read_field(AVFormatContext *s)
|
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2009-12-13 20:27:29 +00:00
|
|
|
uint8_t key[1024], *value;
|
2012-02-13 15:01:54 +00:00
|
|
|
uint32_t size, flags;
|
2009-12-15 23:41:22 +00:00
|
|
|
int i, c;
|
2009-08-11 17:08:09 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
size = avio_rl32(pb); /* field size */
|
2012-02-13 15:01:54 +00:00
|
|
|
flags = avio_rl32(pb); /* field flags */
|
2009-08-11 17:08:09 +00:00
|
|
|
for (i = 0; i < sizeof(key) - 1; i++) {
|
2011-02-21 15:43:01 +00:00
|
|
|
c = avio_r8(pb);
|
2009-08-11 17:08:09 +00:00
|
|
|
if (c < 0x20 || c > 0x7E)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
key[i] = c;
|
|
|
|
}
|
|
|
|
key[i] = 0;
|
|
|
|
if (c != 0) {
|
|
|
|
av_log(s, AV_LOG_WARNING, "Invalid APE tag key '%s'.\n", key);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-12-13 20:27:29 +00:00
|
|
|
if (size >= UINT_MAX)
|
|
|
|
return -1;
|
2012-02-13 15:01:54 +00:00
|
|
|
if (flags & APE_TAG_FLAG_IS_BINARY) {
|
|
|
|
uint8_t filename[1024];
|
2012-06-26 16:58:39 +00:00
|
|
|
enum CodecID id;
|
2012-02-13 15:01:54 +00:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
2012-06-26 16:54:00 +00:00
|
|
|
|
|
|
|
size -= avio_get_str(pb, size, filename, sizeof(filename));
|
|
|
|
if (size <= 0) {
|
|
|
|
av_log(s, AV_LOG_WARNING, "Skipping binary tag '%s'.\n", key);
|
|
|
|
return 0;
|
2012-02-13 15:01:54 +00:00
|
|
|
}
|
2012-06-26 16:58:39 +00:00
|
|
|
|
2012-02-13 15:01:54 +00:00
|
|
|
av_dict_set(&st->metadata, key, filename, 0);
|
2012-06-26 16:58:39 +00:00
|
|
|
|
|
|
|
if ((id = ff_guess_image2_codec(filename)) != CODEC_ID_NONE) {
|
|
|
|
AVPacket pkt;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = av_get_packet(s->pb, &pkt, size);
|
|
|
|
if (ret < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Error reading cover art.\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
st->disposition |= AV_DISPOSITION_ATTACHED_PIC;
|
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
|
|
|
st->codec->codec_id = id;
|
|
|
|
|
|
|
|
st->attached_pic = pkt;
|
|
|
|
st->attached_pic.stream_index = st->index;
|
|
|
|
st->attached_pic.flags |= AV_PKT_FLAG_KEY;
|
|
|
|
} else {
|
2012-06-21 17:02:40 +00:00
|
|
|
st->codec->extradata = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
|
|
|
|
if (!st->codec->extradata)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
if (avio_read(pb, st->codec->extradata, size) != size) {
|
|
|
|
av_freep(&st->codec->extradata);
|
|
|
|
return AVERROR(EIO);
|
|
|
|
}
|
|
|
|
st->codec->extradata_size = size;
|
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_ATTACHMENT;
|
2012-06-26 16:58:39 +00:00
|
|
|
}
|
2012-02-13 15:01:54 +00:00
|
|
|
} else {
|
|
|
|
value = av_malloc(size+1);
|
|
|
|
if (!value)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
c = avio_read(pb, value, size);
|
2012-02-24 00:15:36 +00:00
|
|
|
if (c < 0) {
|
|
|
|
av_free(value);
|
2012-02-23 23:35:24 +00:00
|
|
|
return c;
|
2012-02-24 00:15:36 +00:00
|
|
|
}
|
2012-02-13 15:01:54 +00:00
|
|
|
value[c] = 0;
|
|
|
|
av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
|
|
|
|
}
|
2009-08-11 17:08:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ff_ape_parse_tag(AVFormatContext *s)
|
|
|
|
{
|
2011-02-20 10:04:12 +00:00
|
|
|
AVIOContext *pb = s->pb;
|
2011-03-04 18:57:36 +00:00
|
|
|
int file_size = avio_size(pb);
|
2009-08-11 17:08:09 +00:00
|
|
|
uint32_t val, fields, tag_bytes;
|
|
|
|
uint8_t buf[8];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (file_size < APE_TAG_FOOTER_BYTES)
|
|
|
|
return;
|
|
|
|
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, file_size - APE_TAG_FOOTER_BYTES, SEEK_SET);
|
2009-08-11 17:08:09 +00:00
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
avio_read(pb, buf, 8); /* APETAGEX */
|
2009-08-11 17:08:09 +00:00
|
|
|
if (strncmp(buf, "APETAGEX", 8)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
val = avio_rl32(pb); /* APE tag version */
|
2009-08-11 17:08:09 +00:00
|
|
|
if (val > APE_TAG_VERSION) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Unsupported tag version. (>=%d)\n", APE_TAG_VERSION);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
tag_bytes = avio_rl32(pb); /* tag size */
|
2009-08-11 17:08:09 +00:00
|
|
|
if (tag_bytes - APE_TAG_FOOTER_BYTES > (1024 * 1024 * 16)) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Tag size is way too big\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
fields = avio_rl32(pb); /* number of fields */
|
2009-08-11 17:08:09 +00:00
|
|
|
if (fields > 65536) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Too many tag fields (%d)\n", fields);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-21 15:43:01 +00:00
|
|
|
val = avio_rl32(pb); /* flags */
|
2009-08-11 17:08:09 +00:00
|
|
|
if (val & APE_TAG_FLAG_IS_HEADER) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "APE Tag is a header\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-02-28 13:57:54 +00:00
|
|
|
avio_seek(pb, file_size - tag_bytes, SEEK_SET);
|
2009-08-11 17:08:09 +00:00
|
|
|
|
|
|
|
for (i=0; i<fields; i++)
|
|
|
|
if (ape_tag_read_field(s) < 0) break;
|
|
|
|
}
|