]> git.sesse.net Git - ffmpeg/blob - libavformat/assdec.c
Merge commit '9ebd45c2d58ad9241ad09718679f0cf7fb57da52'
[ffmpeg] / libavformat / assdec.c
1 /*
2  * SSA/ASS demuxer
3  * Copyright (c) 2008 Michael Niedermayer
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "avformat.h"
23 #include "internal.h"
24 #include "subtitles.h"
25 #include "libavutil/bprint.h"
26
27 typedef struct ASSContext{
28     FFDemuxSubtitlesQueue q;
29 }ASSContext;
30
31 static int ass_probe(AVProbeData *p)
32 {
33     const char *header= "[Script Info]";
34
35     if(   !memcmp(p->buf  , header, strlen(header))
36        || !memcmp(p->buf+3, header, strlen(header)))
37         return AVPROBE_SCORE_MAX;
38
39     return 0;
40 }
41
42 static int ass_read_close(AVFormatContext *s)
43 {
44     ASSContext *ass = s->priv_data;
45     ff_subtitles_queue_clean(&ass->q);
46     return 0;
47 }
48
49 static int read_ts(const uint8_t *p, int64_t *start, int *duration)
50 {
51     int64_t end;
52     int hh1, mm1, ss1, ms1;
53     int hh2, mm2, ss2, ms2;
54
55     if (sscanf(p, "%*[^,],%d:%d:%d%*c%d,%d:%d:%d%*c%d",
56                &hh1, &mm1, &ss1, &ms1,
57                &hh2, &mm2, &ss2, &ms2) == 8) {
58         end    = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2;
59         *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1;
60         *duration = end - *start;
61         return 0;
62     }
63     return -1;
64 }
65
66 static int64_t get_line(AVBPrint *buf, AVIOContext *pb)
67 {
68     int64_t pos = avio_tell(pb);
69
70     av_bprint_clear(buf);
71     for (;;) {
72         char c = avio_r8(pb);
73         if (!c)
74             break;
75         av_bprint_chars(buf, c, 1);
76         if (c == '\n')
77             break;
78     }
79     return pos;
80 }
81
82 static int ass_read_header(AVFormatContext *s)
83 {
84     ASSContext *ass = s->priv_data;
85     AVBPrint header, line;
86     int header_remaining, res = 0;
87     AVStream *st;
88
89     st = avformat_new_stream(s, NULL);
90     if (!st)
91         return AVERROR(ENOMEM);
92     avpriv_set_pts_info(st, 64, 1, 100);
93     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
94     st->codec->codec_id= AV_CODEC_ID_SSA;
95
96     header_remaining= INT_MAX;
97
98     av_bprint_init(&header, 0, AV_BPRINT_SIZE_UNLIMITED);
99     av_bprint_init(&line,   0, AV_BPRINT_SIZE_UNLIMITED);
100
101     for (;;) {
102         int64_t pos = get_line(&line, s->pb);
103
104         if (!line.str[0]) // EOF
105             break;
106
107         if (!memcmp(line.str, "[Events]", 8))
108             header_remaining= 2;
109         else if (line.str[0]=='[')
110             header_remaining= INT_MAX;
111
112         if (header_remaining) {
113             av_bprintf(&header, "%s", line.str);
114             header_remaining--;
115         } else {
116             int64_t ts_start = AV_NOPTS_VALUE;
117             int duration = -1;
118             AVPacket *sub;
119
120             if (read_ts(line.str, &ts_start, &duration) < 0)
121                 continue;
122             sub = ff_subtitles_queue_insert(&ass->q, line.str, line.len, 0);
123             if (!sub) {
124                 res = AVERROR(ENOMEM);
125                 goto end;
126             }
127             sub->pos = pos;
128             sub->pts = ts_start;
129             sub->duration = duration;
130         }
131     }
132
133     av_bprint_finalize(&line, NULL);
134
135     av_bprint_finalize(&header, (char **)&st->codec->extradata);
136     if (!st->codec->extradata) {
137         res = AVERROR(ENOMEM);
138         goto end;
139     }
140     st->codec->extradata_size = header.len + 1;
141
142     ff_subtitles_queue_finalize(&ass->q);
143
144 end:
145     return res;
146 }
147
148 static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
149 {
150     ASSContext *ass = s->priv_data;
151     return ff_subtitles_queue_read_packet(&ass->q, pkt);
152 }
153
154 static int ass_read_seek(AVFormatContext *s, int stream_index,
155                          int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
156 {
157     ASSContext *ass = s->priv_data;
158     return ff_subtitles_queue_seek(&ass->q, s, stream_index,
159                                    min_ts, ts, max_ts, flags);
160 }
161
162 AVInputFormat ff_ass_demuxer = {
163     .name           = "ass",
164     .long_name      = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
165     .priv_data_size = sizeof(ASSContext),
166     .read_probe     = ass_probe,
167     .read_header    = ass_read_header,
168     .read_packet    = ass_read_packet,
169     .read_close     = ass_read_close,
170     .read_seek2     = ass_read_seek,
171 };