]> git.sesse.net Git - ffmpeg/blob - libavformat/microdvddec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / microdvddec.c
1 /*
2  * MicroDVD subtitle demuxer
3  * Copyright (c) 2010  Aurelien Jacobs <aurel@gnuage.org>
4  * Copyright (c) 2012  Clément Bœsch <ubitux@gmail.com>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include "avformat.h"
24 #include "internal.h"
25 #include "subtitles.h"
26 #include "libavutil/intreadwrite.h"
27
28 #define MAX_LINESIZE 2048
29
30
31 typedef struct {
32     FFDemuxSubtitlesQueue q;
33 } MicroDVDContext;
34
35
36 static int microdvd_probe(AVProbeData *p)
37 {
38     unsigned char c, *ptr = p->buf;
39     int i;
40
41     if (AV_RB24(ptr) == 0xEFBBBF)
42         ptr += 3;  /* skip UTF-8 BOM */
43
44     for (i=0; i<3; i++) {
45         if (sscanf(ptr, "{%*d}{}%c",     &c) != 1 &&
46             sscanf(ptr, "{%*d}{%*d}%c",  &c) != 1 &&
47             sscanf(ptr, "{DEFAULT}{}%c", &c) != 1)
48             return 0;
49         ptr += strcspn(ptr, "\n") + 1;
50     }
51     return AVPROBE_SCORE_MAX;
52 }
53
54 static int64_t get_pts(const char *buf)
55 {
56     int frame;
57     char c;
58
59     if (sscanf(buf, "{%d}{%c", &frame, &c) == 2)
60         return frame;
61     return AV_NOPTS_VALUE;
62 }
63
64 static int get_duration(const char *buf)
65 {
66     int frame_start, frame_end;
67
68     if (sscanf(buf, "{%d}{%d}", &frame_start, &frame_end) == 2)
69         return frame_end - frame_start;
70     return -1;
71 }
72
73 static int microdvd_read_header(AVFormatContext *s)
74 {
75     AVRational pts_info = (AVRational){ 2997, 125 };  /* default: 23.976 fps */
76     MicroDVDContext *microdvd = s->priv_data;
77     AVStream *st = avformat_new_stream(s, NULL);
78     int i = 0;
79     char line[MAX_LINESIZE];
80
81     if (!st)
82         return AVERROR(ENOMEM);
83
84     while (!url_feof(s->pb)) {
85         AVPacket *sub;
86         int64_t pos = avio_tell(s->pb);
87         int len = ff_get_line(s->pb, line, sizeof(line));
88
89         if (!len)
90             break;
91         if (i < 3) {
92             int frame;
93             double fps;
94             char c;
95
96             i++;
97             if ((sscanf(line, "{%d}{}%6lf",    &frame, &fps) == 2 ||
98                  sscanf(line, "{%d}{%*d}%6lf", &frame, &fps) == 2)
99                 && frame <= 1 && fps > 3 && fps < 100)
100                 pts_info = av_d2q(fps, 100000);
101             if (!st->codec->extradata && sscanf(line, "{DEFAULT}{}%c", &c) == 1) {
102                 st->codec->extradata = av_strdup(line + 11);
103                 if (!st->codec->extradata)
104                     return AVERROR(ENOMEM);
105                 st->codec->extradata_size = strlen(st->codec->extradata) + 1;
106                 continue;
107             }
108         }
109         sub = ff_subtitles_queue_insert(&microdvd->q, line, len, 0);
110         if (!sub)
111             return AVERROR(ENOMEM);
112         sub->pos = pos;
113         sub->pts = get_pts(sub->data);
114         sub->duration = get_duration(sub->data);
115     }
116     ff_subtitles_queue_finalize(&microdvd->q);
117     avpriv_set_pts_info(st, 64, pts_info.den, pts_info.num);
118     st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
119     st->codec->codec_id   = CODEC_ID_MICRODVD;
120     return 0;
121 }
122
123 static int microdvd_read_packet(AVFormatContext *s, AVPacket *pkt)
124 {
125     MicroDVDContext *microdvd = s->priv_data;
126     return ff_subtitles_queue_read_packet(&microdvd->q, pkt);
127 }
128
129 static int microdvd_read_close(AVFormatContext *s)
130 {
131     MicroDVDContext *microdvd = s->priv_data;
132     ff_subtitles_queue_clean(&microdvd->q);
133     return 0;
134 }
135
136 AVInputFormat ff_microdvd_demuxer = {
137     .name           = "microdvd",
138     .long_name      = NULL_IF_CONFIG_SMALL("MicroDVD subtitle format"),
139     .priv_data_size = sizeof(MicroDVDContext),
140     .read_probe     = microdvd_probe,
141     .read_header    = microdvd_read_header,
142     .read_packet    = microdvd_read_packet,
143     .read_close     = microdvd_read_close,
144     .flags          = AVFMT_GENERIC_INDEX,
145 };