]> git.sesse.net Git - ffmpeg/blob - libavformat/mpsubdec.c
Merge commit '09c93b1b957f2049ea5fd8fb0e6f4d82680172f2'
[ffmpeg] / libavformat / mpsubdec.c
1 /*
2  * Copyright (c) 2012 Clément Bœsch
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * MPlayer subtitles format demuxer
24  */
25
26 #include "avformat.h"
27 #include "internal.h"
28 #include "subtitles.h"
29
30 typedef struct {
31     FFDemuxSubtitlesQueue q;
32 } MPSubContext;
33
34 static int mpsub_probe(AVProbeData *p)
35 {
36     const char *ptr     = p->buf;
37     const char *ptr_end = p->buf + p->buf_size;
38
39     while (ptr < ptr_end) {
40         if (!memcmp(ptr, "FORMAT=TIME", 11))
41             return AVPROBE_SCORE_EXTENSION;
42         if (!memcmp(ptr, "FORMAT=", 7))
43             return AVPROBE_SCORE_EXTENSION / 3;
44         ptr += strcspn(ptr, "\n") + 1;
45     }
46     return 0;
47 }
48
49 static int mpsub_read_header(AVFormatContext *s)
50 {
51     MPSubContext *mpsub = s->priv_data;
52     AVStream *st;
53     AVBPrint buf;
54     AVRational pts_info = (AVRational){ 100, 1 }; // ts based by default
55     int res = 0;
56     float multiplier = 100.0;
57     float current_pts = 0;
58
59     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
60
61     while (!url_feof(s->pb)) {
62         char line[1024];
63         float start, duration;
64         int fps, len = ff_get_line(s->pb, line, sizeof(line));
65
66         if (!len)
67             break;
68
69         line[strcspn(line, "\r\n")] = 0;
70
71         if (sscanf(line, "FORMAT=%d", &fps) == 1 && fps > 3 && fps < 100) {
72             /* frame based timing */
73             pts_info = (AVRational){ fps, 1 };
74             multiplier = 1.0;
75         } else if (sscanf(line, "%f %f", &start, &duration) == 2) {
76             AVPacket *sub;
77             const int64_t pos = avio_tell(s->pb);
78
79             ff_subtitles_read_chunk(s->pb, &buf);
80             if (buf.len) {
81                 sub = ff_subtitles_queue_insert(&mpsub->q, buf.str, buf.len, 0);
82                 if (!sub) {
83                     res = AVERROR(ENOMEM);
84                     goto end;
85                 }
86                 sub->pts = (int64_t)(current_pts + start*multiplier);
87                 sub->duration = (int)(duration * multiplier);
88                 current_pts += (start + duration) * multiplier;
89                 sub->pos = pos;
90             }
91         }
92     }
93
94     st = avformat_new_stream(s, NULL);
95     if (!st)
96         return AVERROR(ENOMEM);
97     avpriv_set_pts_info(st, 64, pts_info.den, pts_info.num);
98     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
99     st->codec->codec_id   = AV_CODEC_ID_TEXT;
100
101     ff_subtitles_queue_finalize(&mpsub->q);
102
103 end:
104     av_bprint_finalize(&buf, NULL);
105     return res;
106 }
107
108 static int mpsub_read_packet(AVFormatContext *s, AVPacket *pkt)
109 {
110     MPSubContext *mpsub = s->priv_data;
111     return ff_subtitles_queue_read_packet(&mpsub->q, pkt);
112 }
113
114 static int mpsub_read_seek(AVFormatContext *s, int stream_index,
115                            int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
116 {
117     MPSubContext *mpsub = s->priv_data;
118     return ff_subtitles_queue_seek(&mpsub->q, s, stream_index,
119                                    min_ts, ts, max_ts, flags);
120 }
121
122 static int mpsub_read_close(AVFormatContext *s)
123 {
124     MPSubContext *mpsub = s->priv_data;
125     ff_subtitles_queue_clean(&mpsub->q);
126     return 0;
127 }
128
129 AVInputFormat ff_mpsub_demuxer = {
130     .name           = "mpsub",
131     .long_name      = NULL_IF_CONFIG_SMALL("MPlayer subtitles"),
132     .priv_data_size = sizeof(MPSubContext),
133     .read_probe     = mpsub_probe,
134     .read_header    = mpsub_read_header,
135     .read_packet    = mpsub_read_packet,
136     .read_seek2     = mpsub_read_seek,
137     .read_close     = mpsub_read_close,
138     .extensions     = "sub",
139 };