2 * Copyright (c) 2012 Clément Bœsch
4 * This file is part of FFmpeg.
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.
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.
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
23 * MPL2 subtitles format demuxer
26 #include "libavutil/intreadwrite.h"
31 #include "subtitles.h"
34 FFDemuxSubtitlesQueue q
;
37 static int mpl2_probe(const AVProbeData
*p
)
42 const unsigned char *ptr
= p
->buf
;
43 const unsigned char *ptr_end
= ptr
+ p
->buf_size
;
45 if (AV_RB24(ptr
) == 0xefbbbf)
48 for (i
= 0; i
< 2; i
++) {
49 if (sscanf(ptr
, "[%"SCNd64
"][%"SCNd64
"]%c", &start
, &end
, &c
) != 3 &&
50 sscanf(ptr
, "[%"SCNd64
"][]%c", &start
, &c
) != 2)
52 ptr
+= ff_subtitles_next_line(ptr
);
56 return AVPROBE_SCORE_MAX
;
59 static int read_ts(char **line
, int64_t *pts_start
, int64_t *duration
)
65 if (sscanf(*line
, "[%"SCNd64
"][]%c%n",
66 pts_start
, &c
, &len
) >= 2) {
71 if (sscanf(*line
, "[%"SCNd64
"][%"SCNd64
"]%c%n",
72 pts_start
, &end
, &c
, &len
) >= 3) {
73 if (end
< *pts_start
|| end
- (uint64_t)*pts_start
> INT64_MAX
) {
76 *duration
= end
- *pts_start
;
83 static int mpl2_read_header(AVFormatContext
*s
)
85 MPL2Context
*mpl2
= s
->priv_data
;
86 AVStream
*st
= avformat_new_stream(s
, NULL
);
89 return AVERROR(ENOMEM
);
90 avpriv_set_pts_info(st
, 64, 1, 10);
91 st
->codecpar
->codec_type
= AVMEDIA_TYPE_SUBTITLE
;
92 st
->codecpar
->codec_id
= AV_CODEC_ID_MPL2
;
94 if (avio_rb24(s
->pb
) != 0xefbbbf)
95 avio_seek(s
->pb
, -3, SEEK_CUR
);
97 while (!avio_feof(s
->pb
)) {
100 const int64_t pos
= avio_tell(s
->pb
);
101 int len
= ff_get_line(s
->pb
, line
, sizeof(line
));
108 line
[strcspn(line
, "\r\n")] = 0;
110 if (!read_ts(&p
, &pts_start
, &duration
)) {
113 sub
= ff_subtitles_queue_insert(&mpl2
->q
, p
, strlen(p
), 0);
115 return AVERROR(ENOMEM
);
117 sub
->pts
= pts_start
;
118 sub
->duration
= duration
;
122 ff_subtitles_queue_finalize(s
, &mpl2
->q
);
126 const FFInputFormat ff_mpl2_demuxer
= {
128 .p
.long_name
= NULL_IF_CONFIG_SMALL("MPL2 subtitles"),
129 .p
.extensions
= "txt,mpl2",
130 .priv_data_size
= sizeof(MPL2Context
),
131 .flags_internal
= FF_INFMT_FLAG_INIT_CLEANUP
,
132 .read_probe
= mpl2_probe
,
133 .read_header
= mpl2_read_header
,
134 .read_packet
= ff_subtitles_read_packet
,
135 .read_seek2
= ff_subtitles_read_seek
,
136 .read_close
= ff_subtitles_read_close
,