assdec.c 5.4 KB
Newer Older
1 2 3
/*
 * SSA/ASS demuxer
 * Copyright (c) 2008 Michael Niedermayer
4
 * Copyright (c) 2014 Clément Bœsch
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * 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
 */

23 24
#include <stdint.h>

25
#include "avformat.h"
26
#include "internal.h"
27
#include "subtitles.h"
28
#include "libavcodec/internal.h"
29
#include "libavutil/bprint.h"
30

31
typedef struct ASSContext {
32
    FFDemuxSubtitlesQueue q;
33
    unsigned readorder;
34
} ASSContext;
35

36
static int ass_probe(const AVProbeData *p)
37
{
wm4's avatar
wm4 committed
38 39 40
    char buf[13];
    FFTextReader tr;
    ff_text_init_buf(&tr, p->buf, p->buf_size);
41

42 43 44
    while (ff_text_peek_r8(&tr) == '\r' || ff_text_peek_r8(&tr) == '\n')
        ff_text_r8(&tr);

wm4's avatar
wm4 committed
45 46 47
    ff_text_read(&tr, buf, sizeof(buf));

    if (!memcmp(buf, "[Script Info]", 13))
48 49 50 51 52
        return AVPROBE_SCORE_MAX;

    return 0;
}

53
static int ass_read_close(AVFormatContext *s)
54 55
{
    ASSContext *ass = s->priv_data;
56
    ff_subtitles_queue_clean(&ass->q);
57 58 59
    return 0;
}

60 61
static int read_dialogue(ASSContext *ass, AVBPrint *dst, const uint8_t *p,
                         int64_t *start, int *duration)
62
{
63
    int pos = 0;
64 65 66 67
    int64_t end;
    int hh1, mm1, ss1, ms1;
    int hh2, mm2, ss2, ms2;

68
    if (sscanf(p, "Dialogue: %*[^,],%d:%d:%d%*c%d,%d:%d:%d%*c%d,%n",
69
               &hh1, &mm1, &ss1, &ms1,
70
               &hh2, &mm2, &ss2, &ms2, &pos) >= 8 && pos > 0) {
71 72 73

        /* This is not part of the sscanf itself in order to handle an actual
         * number (which would be the Layer) or the form "Marked=N" (which is
74
         * the old SSA field, now replaced by Layer, and will lead to Layer
75 76 77
         * being 0 here). */
        const int layer = atoi(p + 10);

78 79 80
        end    = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
        *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
        *duration = end - *start;
81 82 83 84 85 86 87 88 89

        av_bprint_clear(dst);
        av_bprintf(dst, "%u,%d,%s", ass->readorder++, layer, p + pos);

        /* right strip the buffer */
        while (dst->len > 0 &&
               dst->str[dst->len - 1] == '\r' ||
               dst->str[dst->len - 1] == '\n')
            dst->str[--dst->len] = 0;
90 91 92
        return 0;
    }
    return -1;
93 94
}

wm4's avatar
wm4 committed
95
static int64_t get_line(AVBPrint *buf, FFTextReader *tr)
96
{
wm4's avatar
wm4 committed
97
    int64_t pos = ff_text_pos(tr);
98 99 100

    av_bprint_clear(buf);
    for (;;) {
wm4's avatar
wm4 committed
101
        char c = ff_text_r8(tr);
102 103 104 105 106 107 108
        if (!c)
            break;
        av_bprint_chars(buf, c, 1);
        if (c == '\n')
            break;
    }
    return pos;
109 110
}

111
static int ass_read_header(AVFormatContext *s)
112 113
{
    ASSContext *ass = s->priv_data;
114
    AVBPrint header, line, rline;
115
    int res = 0;
116
    AVStream *st;
wm4's avatar
wm4 committed
117
    FFTextReader tr;
118
    ff_text_init_avio(s, &tr, s->pb);
119

120
    st = avformat_new_stream(s, NULL);
121
    if (!st)
122
        return AVERROR(ENOMEM);
123
    avpriv_set_pts_info(st, 64, 1, 100);
124
    st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
125
    st->codecpar->codec_id   = AV_CODEC_ID_ASS;
126

127 128
    av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
    av_bprint_init(&line,   0, AV_BPRINT_SIZE_UNLIMITED);
129
    av_bprint_init(&rline,  0, AV_BPRINT_SIZE_UNLIMITED);
130

131 132
    ass->q.keep_duplicates = 1;

133
    for (;;) {
wm4's avatar
wm4 committed
134
        int64_t pos = get_line(&line, &tr);
135 136 137
        int64_t ts_start = AV_NOPTS_VALUE;
        int duration = -1;
        AVPacket *sub;
138

139 140 141
        if (!line.str[0]) // EOF
            break;

142 143 144 145 146 147 148 149 150 151 152 153
        if (read_dialogue(ass, &rline, line.str, &ts_start, &duration) < 0) {
            av_bprintf(&header, "%s", line.str);
            continue;
        }
        sub = ff_subtitles_queue_insert(&ass->q, rline.str, rline.len, 0);
        if (!sub) {
            res = AVERROR(ENOMEM);
            goto end;
        }
        sub->pos = pos;
        sub->pts = ts_start;
        sub->duration = duration;
154 155
    }

156
    res = ff_bprint_to_codecpar_extradata(st->codecpar, &header);
157
    if (res < 0)
158
        goto end;
159

160
    ff_subtitles_queue_finalize(s, &ass->q);
161

162
end:
163 164 165
    av_bprint_finalize(&header, NULL);
    av_bprint_finalize(&line,   NULL);
    av_bprint_finalize(&rline,  NULL);
166
    return res;
167 168
}

169
static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
170 171
{
    ASSContext *ass = s->priv_data;
172
    return ff_subtitles_queue_read_packet(&ass->q, pkt);
173 174
}

175 176
static int ass_read_seek(AVFormatContext *s, int stream_index,
                         int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
177 178
{
    ASSContext *ass = s->priv_data;
179 180
    return ff_subtitles_queue_seek(&ass->q, s, stream_index,
                                   min_ts, ts, max_ts, flags);
181 182
}

183
AVInputFormat ff_ass_demuxer = {
184
    .name           = "ass",
185
    .long_name      = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
186
    .priv_data_size = sizeof(ASSContext),
187 188 189 190 191
    .read_probe     = ass_probe,
    .read_header    = ass_read_header,
    .read_packet    = ass_read_packet,
    .read_close     = ass_read_close,
    .read_seek2     = ass_read_seek,
192
};