]> git.sesse.net Git - ffmpeg/blob - libavformat/assdec.c
http: Reduce scope of a variable in parse_content_encoding()
[ffmpeg] / libavformat / assdec.c
1 /*
2  * SSA/ASS demuxer
3  * Copyright (c) 2008 Michael Niedermayer
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <stdint.h>
23
24 #include "libavutil/mathematics.h"
25
26 #include "avformat.h"
27 #include "internal.h"
28
29 #define MAX_LINESIZE 2000
30
31 typedef struct ASSContext {
32     uint8_t *event_buffer;
33     uint8_t **event;
34     unsigned int event_count;
35     unsigned int event_index;
36 } ASSContext;
37
38 static int probe(AVProbeData *p)
39 {
40     const char *header = "[Script Info]";
41
42     if (!memcmp(p->buf, header, strlen(header)) ||
43         !memcmp(p->buf + 3, header, strlen(header)))
44         return AVPROBE_SCORE_MAX;
45
46     return 0;
47 }
48
49 static int read_close(AVFormatContext *s)
50 {
51     ASSContext *ass = s->priv_data;
52
53     av_freep(&ass->event_buffer);
54     av_freep(&ass->event);
55
56     return 0;
57 }
58
59 static int64_t get_pts(const uint8_t *p)
60 {
61     int hour, min, sec, hsec;
62
63     if (sscanf(p, "%*[^,],%d:%d:%d%*c%d", &hour, &min, &sec, &hsec) != 4)
64         return AV_NOPTS_VALUE;
65
66     av_dlog(NULL, "%d %d %d %d [%s]\n", hour, min, sec, hsec, p);
67
68     min += 60 * hour;
69     sec += 60 * min;
70
71     return sec * 100 + hsec;
72 }
73
74 static int event_cmp(const void *_a, const void *_b)
75 {
76     const uint8_t *const *a = _a, *const *b = _b;
77     return get_pts(*a) - get_pts(*b);
78 }
79
80 static int read_header(AVFormatContext *s)
81 {
82     int i, len, header_remaining;
83     ASSContext *ass = s->priv_data;
84     AVIOContext *pb = s->pb;
85     AVStream *st;
86     int allocated[2] = { 0 };
87     uint8_t *p, **dst[2] = { 0 };
88     int pos[2] = { 0 };
89
90     st = avformat_new_stream(s, NULL);
91     if (!st)
92         return -1;
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     header_remaining = INT_MAX;
98     dst[0] = &st->codec->extradata;
99     dst[1] = &ass->event_buffer;
100     while (!pb->eof_reached) {
101         uint8_t line[MAX_LINESIZE];
102
103         len = ff_get_line(pb, line, sizeof(line));
104
105         if (!memcmp(line, "[Events]", 8))
106             header_remaining = 2;
107         else if (line[0] == '[')
108             header_remaining = INT_MAX;
109
110         i = header_remaining == 0;
111
112         if (i && get_pts(line) == AV_NOPTS_VALUE)
113             continue;
114
115         p = av_fast_realloc(*(dst[i]), &allocated[i], pos[i] + MAX_LINESIZE);
116         if (!p)
117             goto fail;
118         *(dst[i]) = p;
119         memcpy(p + pos[i], line, len + 1);
120         pos[i] += len;
121         if (i)
122             ass->event_count++;
123         else
124             header_remaining--;
125     }
126     st->codec->extradata_size = pos[0];
127
128     if (ass->event_count >= UINT_MAX / sizeof(*ass->event))
129         goto fail;
130
131     ass->event = av_malloc(ass->event_count * sizeof(*ass->event));
132     p = ass->event_buffer;
133     for (i = 0; i < ass->event_count; i++) {
134         ass->event[i] = p;
135         while (*p && *p != '\n')
136             p++;
137         p++;
138     }
139
140     qsort(ass->event, ass->event_count, sizeof(*ass->event), event_cmp);
141
142     return 0;
143
144 fail:
145     read_close(s);
146
147     return -1;
148 }
149
150 static int read_packet(AVFormatContext *s, AVPacket *pkt)
151 {
152     ASSContext *ass = s->priv_data;
153     uint8_t *p, *end;
154
155     if (ass->event_index >= ass->event_count)
156         return AVERROR(EIO);
157
158     p = ass->event[ass->event_index];
159
160     end = strchr(p, '\n');
161     av_new_packet(pkt, end ? end - p + 1 : strlen(p));
162     pkt->flags |= AV_PKT_FLAG_KEY;
163     pkt->pos    = p - ass->event_buffer + s->streams[0]->codec->extradata_size;
164     pkt->pts    = pkt->dts = get_pts(p);
165     memcpy(pkt->data, p, pkt->size);
166
167     ass->event_index++;
168
169     return 0;
170 }
171
172 static int read_seek2(AVFormatContext *s, int stream_index,
173                       int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
174 {
175     ASSContext *ass = s->priv_data;
176
177     if (flags & AVSEEK_FLAG_BYTE) {
178         return AVERROR(ENOSYS);
179     } else if (flags & AVSEEK_FLAG_FRAME) {
180         if (ts < 0 || ts >= ass->event_count)
181             return AVERROR(ERANGE);
182         ass->event_index = ts;
183     } else {
184         int i, idx = -1;
185         int64_t min_ts_diff = INT64_MAX;
186         if (stream_index == -1) {
187             AVRational time_base = s->streams[0]->time_base;
188             ts     = av_rescale_q(ts, AV_TIME_BASE_Q, time_base);
189             min_ts = av_rescale_rnd(min_ts, time_base.den,
190                                     time_base.num * (int64_t) AV_TIME_BASE,
191                                     AV_ROUND_UP);
192             max_ts = av_rescale_rnd(max_ts, time_base.den,
193                                     time_base.num * (int64_t) AV_TIME_BASE,
194                                     AV_ROUND_DOWN);
195         }
196         /* TODO: ass->event[] is sorted by pts so we could do a binary search */
197         for (i = 0; i < ass->event_count; i++) {
198             int64_t pts     = get_pts(ass->event[i]);
199             int64_t ts_diff = FFABS(pts - ts);
200             if (pts >= min_ts && pts <= max_ts && ts_diff < min_ts_diff) {
201                 min_ts_diff = ts_diff;
202                 idx         = i;
203             }
204         }
205         if (idx < 0)
206             return AVERROR(ERANGE);
207         ass->event_index = idx;
208     }
209     return 0;
210 }
211
212 AVInputFormat ff_ass_demuxer = {
213     .name           = "ass",
214     .long_name      = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
215     .priv_data_size = sizeof(ASSContext),
216     .read_probe     = probe,
217     .read_header    = read_header,
218     .read_packet    = read_packet,
219     .read_close     = read_close,
220     .read_seek2     = read_seek2,
221 };