ffmpeg/libavformat/assdec.c

225 lines
6.1 KiB
C
Raw Normal View History

/*
* SSA/ASS demuxer
* Copyright (c) 2008 Michael Niedermayer
*
* This file is part of Libav.
*
* Libav 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.
*
* Libav 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 Libav; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include "libavutil/mathematics.h"
2014-02-28 17:31:29 +00:00
#include "avformat.h"
#include "internal.h"
#define MAX_LINESIZE 2000
2014-02-28 17:31:29 +00:00
typedef struct ASSContext {
uint8_t *event_buffer;
uint8_t **event;
unsigned int event_count;
unsigned int event_index;
2014-02-28 17:31:29 +00:00
} ASSContext;
static int probe(AVProbeData *p)
{
2014-02-28 17:31:29 +00:00
const char *header = "[Script Info]";
2014-02-28 17:31:29 +00:00
if (!memcmp(p->buf, header, strlen(header)) ||
!memcmp(p->buf + 3, header, strlen(header)))
return AVPROBE_SCORE_MAX;
return 0;
}
static int read_close(AVFormatContext *s)
{
ASSContext *ass = s->priv_data;
av_freep(&ass->event_buffer);
av_freep(&ass->event);
return 0;
}
static int64_t get_pts(const uint8_t *p)
{
int hour, min, sec, hsec;
2014-02-28 17:31:29 +00:00
if (sscanf(p, "%*[^,],%d:%d:%d%*c%d", &hour, &min, &sec, &hsec) != 4)
return AV_NOPTS_VALUE;
av_log(NULL, AV_LOG_TRACE, "%d %d %d %d [%s]\n", hour, min, sec, hsec, p);
2014-02-28 17:31:29 +00:00
min += 60 * hour;
sec += 60 * min;
2014-02-28 17:31:29 +00:00
return sec * 100 + hsec;
}
static int event_cmp(const void *_a, const void *_b)
{
const uint8_t *const *a = _a, *const *b = _b;
return get_pts(*a) - get_pts(*b);
}
static int read_header(AVFormatContext *s)
{
int i, len, header_remaining;
ASSContext *ass = s->priv_data;
AVIOContext *pb = s->pb;
AVStream *st;
2014-02-28 17:31:29 +00:00
int allocated[2] = { 0 };
uint8_t *p, **dst[2] = { 0 };
int pos[2] = { 0 };
st = avformat_new_stream(s, NULL);
if (!st)
return -1;
avpriv_set_pts_info(st, 64, 1, 100);
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 18:42:52 +00:00
st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
st->codecpar->codec_id = AV_CODEC_ID_SSA;
2014-02-28 17:31:29 +00:00
header_remaining = INT_MAX;
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 18:42:52 +00:00
dst[0] = &st->codecpar->extradata;
dst[1] = &ass->event_buffer;
2014-02-28 17:31:29 +00:00
while (!pb->eof_reached) {
uint8_t line[MAX_LINESIZE];
len = ff_get_line(pb, line, sizeof(line));
2014-02-28 17:31:29 +00:00
if (!memcmp(line, "[Events]", 8))
header_remaining = 2;
else if (line[0] == '[')
header_remaining = INT_MAX;
2014-02-28 17:31:29 +00:00
i = header_remaining == 0;
2014-02-28 17:31:29 +00:00
if (i && get_pts(line) == AV_NOPTS_VALUE)
continue;
2014-02-28 17:31:29 +00:00
p = av_fast_realloc(*(dst[i]), &allocated[i], pos[i] + MAX_LINESIZE);
if (!p)
goto fail;
2014-02-28 17:31:29 +00:00
*(dst[i]) = p;
memcpy(p + pos[i], line, len + 1);
pos[i] += len;
2014-02-28 17:31:29 +00:00
if (i)
ass->event_count++;
else
header_remaining--;
}
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 18:42:52 +00:00
st->codecpar->extradata_size = pos[0];
2014-02-28 17:31:29 +00:00
if (ass->event_count >= UINT_MAX / sizeof(*ass->event))
goto fail;
2014-02-28 17:31:29 +00:00
ass->event = av_malloc(ass->event_count * sizeof(*ass->event));
p = ass->event_buffer;
for (i = 0; i < ass->event_count; i++) {
ass->event[i] = p;
while (*p && *p != '\n')
p++;
p++;
}
qsort(ass->event, ass->event_count, sizeof(*ass->event), event_cmp);
return 0;
fail:
read_close(s);
return -1;
}
static int read_packet(AVFormatContext *s, AVPacket *pkt)
{
ASSContext *ass = s->priv_data;
uint8_t *p, *end;
int ret;
2014-02-28 17:31:29 +00:00
if (ass->event_index >= ass->event_count)
return AVERROR(EIO);
2014-02-28 17:31:29 +00:00
p = ass->event[ass->event_index];
2014-02-28 17:31:29 +00:00
end = strchr(p, '\n');
ret = av_new_packet(pkt, end ? end - p + 1 : strlen(p));
if (ret < 0)
return ret;
pkt->flags |= AV_PKT_FLAG_KEY;
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 18:42:52 +00:00
pkt->pos = p - ass->event_buffer + s->streams[0]->codecpar->extradata_size;
2014-02-28 17:31:29 +00:00
pkt->pts = pkt->dts = get_pts(p);
memcpy(pkt->data, p, pkt->size);
ass->event_index++;
return 0;
}
static int read_seek2(AVFormatContext *s, int stream_index,
int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
{
ASSContext *ass = s->priv_data;
if (flags & AVSEEK_FLAG_BYTE) {
return AVERROR(ENOSYS);
} else if (flags & AVSEEK_FLAG_FRAME) {
if (ts < 0 || ts >= ass->event_count)
return AVERROR(ERANGE);
ass->event_index = ts;
} else {
int i, idx = -1;
int64_t min_ts_diff = INT64_MAX;
if (stream_index == -1) {
AVRational time_base = s->streams[0]->time_base;
2014-02-28 17:31:29 +00:00
ts = av_rescale_q(ts, AV_TIME_BASE_Q, time_base);
min_ts = av_rescale_rnd(min_ts, time_base.den,
2014-02-28 17:31:29 +00:00
time_base.num * (int64_t) AV_TIME_BASE,
AV_ROUND_UP);
max_ts = av_rescale_rnd(max_ts, time_base.den,
2014-02-28 17:31:29 +00:00
time_base.num * (int64_t) AV_TIME_BASE,
AV_ROUND_DOWN);
}
/* TODO: ass->event[] is sorted by pts so we could do a binary search */
2014-02-28 17:31:29 +00:00
for (i = 0; i < ass->event_count; i++) {
int64_t pts = get_pts(ass->event[i]);
int64_t ts_diff = FFABS(pts - ts);
if (pts >= min_ts && pts <= max_ts && ts_diff < min_ts_diff) {
min_ts_diff = ts_diff;
2014-02-28 17:31:29 +00:00
idx = i;
}
}
if (idx < 0)
return AVERROR(ERANGE);
ass->event_index = idx;
}
return 0;
}
AVInputFormat ff_ass_demuxer = {
.name = "ass",
.long_name = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
.priv_data_size = sizeof(ASSContext),
.read_probe = probe,
.read_header = read_header,
.read_packet = read_packet,
.read_close = read_close,
.read_seek2 = read_seek2,
};