assdec.c 4.55 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * SSA/ASS demuxer
 * Copyright (c) 2008 Michael Niedermayer
 *
 * 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 "avformat.h"
23
#include "internal.h"
24
#include "subtitles.h"
25
#include "libavcodec/internal.h"
26
#include "libavutil/bprint.h"
27 28

typedef struct ASSContext{
29
    FFDemuxSubtitlesQueue q;
30 31
}ASSContext;

32
static int ass_probe(AVProbeData *p)
33 34 35 36 37 38 39 40 41 42
{
    const char *header= "[Script Info]";

    if(   !memcmp(p->buf  , header, strlen(header))
       || !memcmp(p->buf+3, header, strlen(header)))
        return AVPROBE_SCORE_MAX;

    return 0;
}

43
static int ass_read_close(AVFormatContext *s)
44 45
{
    ASSContext *ass = s->priv_data;
46
    ff_subtitles_queue_clean(&ass->q);
47 48 49
    return 0;
}

50
static int read_ts(const uint8_t *p, int64_t *start, int *duration)
51
{
52 53 54 55 56 57 58 59 60 61 62 63 64
    int64_t end;
    int hh1, mm1, ss1, ms1;
    int hh2, mm2, ss2, ms2;

    if (sscanf(p, "%*[^,],%d:%d:%d%*c%d,%d:%d:%d%*c%d",
               &hh1, &mm1, &ss1, &ms1,
               &hh2, &mm2, &ss2, &ms2) == 8) {
        end    = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
        *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
        *duration = end - *start;
        return 0;
    }
    return -1;
65 66
}

67
static int64_t get_line(AVBPrint *buf, AVIOContext *pb)
68
{
69 70 71 72 73 74 75 76 77 78 79 80
    int64_t pos = avio_tell(pb);

    av_bprint_clear(buf);
    for (;;) {
        char c = avio_r8(pb);
        if (!c)
            break;
        av_bprint_chars(buf, c, 1);
        if (c == '\n')
            break;
    }
    return pos;
81 82
}

83
static int ass_read_header(AVFormatContext *s)
84 85
{
    ASSContext *ass = s->priv_data;
86 87
    AVBPrint header, line;
    int header_remaining, res = 0;
88 89
    AVStream *st;

90
    st = avformat_new_stream(s, NULL);
91
    if (!st)
92
        return AVERROR(ENOMEM);
93
    avpriv_set_pts_info(st, 64, 1, 100);
94
    st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
95
    st->codec->codec_id= AV_CODEC_ID_SSA;
96 97 98

    header_remaining= INT_MAX;

99 100
    av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
    av_bprint_init(&line,   0, AV_BPRINT_SIZE_UNLIMITED);
101

102 103
    for (;;) {
        int64_t pos = get_line(&line, s->pb);
104

105 106
        if (!line.str[0]) // EOF
            break;
107

108 109 110 111
        if (!memcmp(line.str, "[Events]", 8))
            header_remaining= 2;
        else if (line.str[0]=='[')
            header_remaining= INT_MAX;
112

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
        if (header_remaining) {
            av_bprintf(&header, "%s", line.str);
            header_remaining--;
        } else {
            int64_t ts_start = AV_NOPTS_VALUE;
            int duration = -1;
            AVPacket *sub;

            if (read_ts(line.str, &ts_start, &duration) < 0)
                continue;
            sub = ff_subtitles_queue_insert(&ass->q, line.str, line.len, 0);
            if (!sub) {
                res = AVERROR(ENOMEM);
                goto end;
            }
            sub->pos = pos;
            sub->pts = ts_start;
            sub->duration = duration;
        }
132 133
    }

134
    av_bprint_finalize(&line, NULL);
135

136
    res = avpriv_bprint_to_extradata(st->codec, &header);
137
    if (res < 0)
138
        goto end;
139

140
    ff_subtitles_queue_finalize(&ass->q);
141

142 143
end:
    return res;
144 145
}

146
static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
147 148
{
    ASSContext *ass = s->priv_data;
149
    return ff_subtitles_queue_read_packet(&ass->q, pkt);
150 151
}

152 153
static int ass_read_seek(AVFormatContext *s, int stream_index,
                         int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
154 155
{
    ASSContext *ass = s->priv_data;
156 157
    return ff_subtitles_queue_seek(&ass->q, s, stream_index,
                                   min_ts, ts, max_ts, flags);
158 159
}

160
AVInputFormat ff_ass_demuxer = {
161
    .name           = "ass",
162
    .long_name      = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
163
    .priv_data_size = sizeof(ASSContext),
164 165 166 167 168
    .read_probe     = ass_probe,
    .read_header    = ass_read_header,
    .read_packet    = ass_read_packet,
    .read_close     = ass_read_close,
    .read_seek2     = ass_read_seek,
169
};