2009-08-11 20:08:09 +03:00
|
|
|
/*
|
|
|
|
* APE tag handling
|
|
|
|
* Copyright (c) 2007 Benjamin Zores <ben@geexbox.org>
|
|
|
|
* based upon libdemac from Dave Chapman.
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2009-08-11 20:08:09 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2009-08-11 20:08:09 +03:00
|
|
|
* 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.
|
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2009-08-11 20:08:09 +03:00
|
|
|
* 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
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2009-08-11 20:08:09 +03:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2014-03-10 17:35:59 +03:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2009-08-11 20:08:09 +03:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2011-05-22 13:46:29 +03:00
|
|
|
#include "libavutil/dict.h"
|
2009-08-11 20:08:09 +03:00
|
|
|
#include "avformat.h"
|
2013-05-28 18:43:22 +03:00
|
|
|
#include "avio_internal.h"
|
2010-02-28 03:43:47 +02:00
|
|
|
#include "apetag.h"
|
2012-06-26 19:58:39 +03:00
|
|
|
#include "internal.h"
|
2009-08-11 20:08:09 +03:00
|
|
|
|
|
|
|
#define APE_TAG_VERSION 2000
|
|
|
|
#define APE_TAG_FOOTER_BYTES 32
|
|
|
|
#define APE_TAG_FLAG_CONTAINS_HEADER (1 << 31)
|
2013-05-28 18:43:22 +03:00
|
|
|
#define APE_TAG_FLAG_CONTAINS_FOOTER (1 << 30)
|
2009-08-11 20:08:09 +03:00
|
|
|
#define APE_TAG_FLAG_IS_HEADER (1 << 29)
|
2012-02-13 18:01:54 +03:00
|
|
|
#define APE_TAG_FLAG_IS_BINARY (1 << 1)
|
2009-08-11 20:08:09 +03:00
|
|
|
|
|
|
|
static int ape_tag_read_field(AVFormatContext *s)
|
|
|
|
{
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *pb = s->pb;
|
2009-12-13 22:27:29 +02:00
|
|
|
uint8_t key[1024], *value;
|
2015-02-14 17:15:37 +02:00
|
|
|
int64_t size, flags;
|
2009-12-16 01:41:22 +02:00
|
|
|
int i, c;
|
2009-08-11 20:08:09 +03:00
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
size = avio_rl32(pb); /* field size */
|
2012-02-13 18:01:54 +03:00
|
|
|
flags = avio_rl32(pb); /* field flags */
|
2009-08-11 20:08:09 +03:00
|
|
|
for (i = 0; i < sizeof(key) - 1; i++) {
|
2011-02-21 17:43:01 +02:00
|
|
|
c = avio_r8(pb);
|
2009-08-11 20:08:09 +03: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;
|
|
|
|
}
|
2015-06-29 23:48:34 +02:00
|
|
|
if (size > INT32_MAX - AV_INPUT_BUFFER_PADDING_SIZE) {
|
2014-09-16 02:40:24 +03:00
|
|
|
av_log(s, AV_LOG_ERROR, "APE tag size too large.\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
2012-02-13 18:01:54 +03:00
|
|
|
if (flags & APE_TAG_FLAG_IS_BINARY) {
|
|
|
|
uint8_t filename[1024];
|
2012-08-05 12:11:04 +03:00
|
|
|
enum AVCodecID id;
|
2012-02-13 18:01:54 +03:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
2012-06-26 19:54:00 +03: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-06-26 19:58:39 +03:00
|
|
|
|
|
|
|
av_dict_set(&st->metadata, key, filename, 0);
|
|
|
|
|
2012-08-05 12:11:04 +03:00
|
|
|
if ((id = ff_guess_image2_codec(filename)) != AV_CODEC_ID_NONE) {
|
2012-06-26 19:58:39 +03:00
|
|
|
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;
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
|
|
|
|
st->codecpar->codec_id = id;
|
2012-06-26 19:58:39 +03:00
|
|
|
|
|
|
|
st->attached_pic = pkt;
|
|
|
|
st->attached_pic.stream_index = st->index;
|
|
|
|
st->attached_pic.flags |= AV_PKT_FLAG_KEY;
|
|
|
|
} else {
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
st->codecpar->extradata = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
|
|
|
|
if (!st->codecpar->extradata)
|
2012-06-21 20:02:40 +03:00
|
|
|
return AVERROR(ENOMEM);
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
if (avio_read(pb, st->codecpar->extradata, size) != size) {
|
|
|
|
av_freep(&st->codecpar->extradata);
|
2012-06-21 20:02:40 +03:00
|
|
|
return AVERROR(EIO);
|
|
|
|
}
|
lavf: replace AVStream.codec with AVStream.codecpar
Currently, AVStream contains an embedded AVCodecContext instance, which
is used by demuxers to export stream parameters to the caller and by
muxers to receive stream parameters from the caller. It is also used
internally as the codec context that is passed to parsers.
In addition, it is also widely used by the callers as the decoding (when
demuxer) or encoding (when muxing) context, though this has been
officially discouraged since Libav 11.
There are multiple important problems with this approach:
- the fields in AVCodecContext are in general one of
* stream parameters
* codec options
* codec state
However, it's not clear which ones are which. It is consequently
unclear which fields are a demuxer allowed to set or a muxer allowed to
read. This leads to erratic behaviour depending on whether decoding or
encoding is being performed or not (and whether it uses the AVStream
embedded codec context).
- various synchronization issues arising from the fact that the same
context is used by several different APIs (muxers/demuxers,
parsers, bitstream filters and encoders/decoders) simultaneously, with
there being no clear rules for who can modify what and the different
processes being typically delayed with respect to each other.
- avformat_find_stream_info() making it necessary to support opening
and closing a single codec context multiple times, thus
complicating the semantics of freeing various allocated objects in the
codec context.
Those problems are resolved by replacing the AVStream embedded codec
context with a newly added AVCodecParameters instance, which stores only
the stream parameters exported by the demuxers or read by the muxers.
2014-06-18 21:42:52 +03:00
|
|
|
st->codecpar->extradata_size = size;
|
|
|
|
st->codecpar->codec_type = AVMEDIA_TYPE_ATTACHMENT;
|
2012-06-26 19:58:39 +03:00
|
|
|
}
|
2012-02-13 18:01:54 +03:00
|
|
|
} else {
|
|
|
|
value = av_malloc(size+1);
|
|
|
|
if (!value)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
c = avio_read(pb, value, size);
|
2012-02-24 03:15:36 +03:00
|
|
|
if (c < 0) {
|
|
|
|
av_free(value);
|
2012-02-24 02:35:24 +03:00
|
|
|
return c;
|
2012-02-24 03:15:36 +03:00
|
|
|
}
|
2012-02-13 18:01:54 +03:00
|
|
|
value[c] = 0;
|
|
|
|
av_dict_set(&s->metadata, key, value, AV_DICT_DONT_STRDUP_VAL);
|
|
|
|
}
|
2009-08-11 20:08:09 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-30 08:28:35 +03:00
|
|
|
int64_t ff_ape_parse_tag(AVFormatContext *s)
|
2009-08-11 20:08:09 +03:00
|
|
|
{
|
2011-02-20 12:04:12 +02:00
|
|
|
AVIOContext *pb = s->pb;
|
2013-05-29 17:18:40 +03:00
|
|
|
int64_t file_size = avio_size(pb);
|
2009-08-11 20:08:09 +03:00
|
|
|
uint32_t val, fields, tag_bytes;
|
|
|
|
uint8_t buf[8];
|
2012-07-30 08:28:35 +03:00
|
|
|
int64_t tag_start;
|
2009-08-11 20:08:09 +03:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (file_size < APE_TAG_FOOTER_BYTES)
|
2012-07-30 08:28:35 +03:00
|
|
|
return 0;
|
2009-08-11 20:08:09 +03:00
|
|
|
|
2011-02-28 15:57:54 +02:00
|
|
|
avio_seek(pb, file_size - APE_TAG_FOOTER_BYTES, SEEK_SET);
|
2009-08-11 20:08:09 +03:00
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
avio_read(pb, buf, 8); /* APETAGEX */
|
2009-08-11 20:08:09 +03:00
|
|
|
if (strncmp(buf, "APETAGEX", 8)) {
|
2012-07-30 08:28:35 +03:00
|
|
|
return 0;
|
2009-08-11 20:08:09 +03:00
|
|
|
}
|
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
val = avio_rl32(pb); /* APE tag version */
|
2009-08-11 20:08:09 +03:00
|
|
|
if (val > APE_TAG_VERSION) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Unsupported tag version. (>=%d)\n", APE_TAG_VERSION);
|
2012-07-30 08:28:35 +03:00
|
|
|
return 0;
|
2009-08-11 20:08:09 +03:00
|
|
|
}
|
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
tag_bytes = avio_rl32(pb); /* tag size */
|
2009-08-11 20:08:09 +03:00
|
|
|
if (tag_bytes - APE_TAG_FOOTER_BYTES > (1024 * 1024 * 16)) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Tag size is way too big\n");
|
2012-07-30 08:28:35 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-14 11:25:41 +03:00
|
|
|
if (tag_bytes > file_size - APE_TAG_FOOTER_BYTES) {
|
2014-03-10 17:35:59 +03:00
|
|
|
av_log(s, AV_LOG_ERROR, "Invalid tag size %"PRIu32".\n", tag_bytes);
|
2012-07-30 08:28:35 +03:00
|
|
|
return 0;
|
2009-08-11 20:08:09 +03:00
|
|
|
}
|
2012-11-14 11:25:41 +03:00
|
|
|
tag_start = file_size - tag_bytes - APE_TAG_FOOTER_BYTES;
|
2009-08-11 20:08:09 +03:00
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
fields = avio_rl32(pb); /* number of fields */
|
2009-08-11 20:08:09 +03:00
|
|
|
if (fields > 65536) {
|
2014-03-10 17:35:59 +03:00
|
|
|
av_log(s, AV_LOG_ERROR, "Too many tag fields (%"PRIu32")\n", fields);
|
2012-07-30 08:28:35 +03:00
|
|
|
return 0;
|
2009-08-11 20:08:09 +03:00
|
|
|
}
|
|
|
|
|
2011-02-21 17:43:01 +02:00
|
|
|
val = avio_rl32(pb); /* flags */
|
2009-08-11 20:08:09 +03:00
|
|
|
if (val & APE_TAG_FLAG_IS_HEADER) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "APE Tag is a header\n");
|
2012-07-31 22:32:25 +03:00
|
|
|
return 0;
|
2009-08-11 20:08:09 +03:00
|
|
|
}
|
|
|
|
|
2011-02-28 15:57:54 +02:00
|
|
|
avio_seek(pb, file_size - tag_bytes, SEEK_SET);
|
2009-08-11 20:08:09 +03:00
|
|
|
|
|
|
|
for (i=0; i<fields; i++)
|
|
|
|
if (ape_tag_read_field(s) < 0) break;
|
2012-07-30 08:28:35 +03:00
|
|
|
|
|
|
|
return tag_start;
|
2009-08-11 20:08:09 +03:00
|
|
|
}
|
2013-05-28 18:43:22 +03:00
|
|
|
|
|
|
|
int ff_ape_write_tag(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
AVDictionaryEntry *e = NULL;
|
|
|
|
int64_t start, end;
|
|
|
|
int size, count = 0;
|
|
|
|
|
2016-09-27 16:26:37 +02:00
|
|
|
if (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL))
|
2013-05-28 18:43:22 +03:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
start = avio_tell(s->pb);
|
|
|
|
|
|
|
|
// header
|
|
|
|
avio_write(s->pb, "APETAGEX", 8); // id
|
|
|
|
avio_wl32 (s->pb, APE_TAG_VERSION); // version
|
|
|
|
avio_wl32(s->pb, 0); // reserve space for size
|
|
|
|
avio_wl32(s->pb, 0); // reserve space for tag count
|
|
|
|
|
|
|
|
// flags
|
|
|
|
avio_wl32(s->pb, APE_TAG_FLAG_CONTAINS_HEADER | APE_TAG_FLAG_CONTAINS_FOOTER |
|
|
|
|
APE_TAG_FLAG_IS_HEADER);
|
|
|
|
ffio_fill(s->pb, 0, 8); // reserved
|
|
|
|
|
|
|
|
while ((e = av_dict_get(s->metadata, "", e, AV_DICT_IGNORE_SUFFIX))) {
|
|
|
|
int val_len = strlen(e->value);
|
|
|
|
|
|
|
|
avio_wl32(s->pb, val_len); // value length
|
|
|
|
avio_wl32(s->pb, 0); // item flags
|
|
|
|
avio_put_str(s->pb, e->key); // key
|
|
|
|
avio_write(s->pb, e->value, val_len); // value
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = avio_tell(s->pb) - start;
|
|
|
|
|
|
|
|
// footer
|
|
|
|
avio_write(s->pb, "APETAGEX", 8); // id
|
|
|
|
avio_wl32 (s->pb, APE_TAG_VERSION); // version
|
|
|
|
avio_wl32(s->pb, size); // size
|
|
|
|
avio_wl32(s->pb, count); // tag count
|
|
|
|
|
|
|
|
// flags
|
|
|
|
avio_wl32(s->pb, APE_TAG_FLAG_CONTAINS_HEADER | APE_TAG_FLAG_CONTAINS_FOOTER);
|
|
|
|
ffio_fill(s->pb, 0, 8); // reserved
|
|
|
|
|
|
|
|
// update values in the header
|
|
|
|
end = avio_tell(s->pb);
|
|
|
|
avio_seek(s->pb, start + 12, SEEK_SET);
|
|
|
|
avio_wl32(s->pb, size);
|
|
|
|
avio_wl32(s->pb, count);
|
|
|
|
avio_seek(s->pb, end, SEEK_SET);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|