]> git.sesse.net Git - ffmpeg/blob - libavformat/srtenc.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / srtenc.c
1 /*
2  * SubRip subtitle muxer
3  * Copyright (c) 2012  Nicolas George <nicolas.george@normalesup.org>
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 "libavutil/log.h"
25
26 /* TODO: add options for:
27    - character encoding;
28    - LF / CRLF;
29    - byte order mark.
30  */
31
32 typedef struct SRTContext{
33     unsigned index;
34 } SRTContext;
35
36 static int srt_write_header(AVFormatContext *avf)
37 {
38     if (avf->nb_streams != 1 ||
39         avf->streams[0]->codec->codec_type != AVMEDIA_TYPE_SUBTITLE) {
40         av_log(avf, AV_LOG_ERROR,
41                "SRT supports only a single subtitles stream.\n");
42         return AVERROR(EINVAL);
43     }
44     if (avf->streams[0]->codec->codec_id != CODEC_ID_TEXT &&
45         avf->streams[0]->codec->codec_id != CODEC_ID_SRT) {
46         av_log(avf, AV_LOG_ERROR,
47                "Unsupported subtitles codec: %s\n",
48                avcodec_get_name(avf->streams[0]->codec->codec_id));
49         return AVERROR(EINVAL);
50     }
51     avpriv_set_pts_info(avf->streams[0], 64, 1, 1000);
52     return 0;
53 }
54
55 static int srt_write_packet(AVFormatContext *avf, AVPacket *pkt)
56 {
57     SRTContext *srt = avf->priv_data;
58     int write_ts = avf->streams[0]->codec->codec_id != CODEC_ID_SRT;
59
60     srt->index++;
61     if (write_ts) {
62         char buf[64];
63         int64_t s = pkt->pts, e, d = pkt->duration;
64         int len;
65
66         if (d <= 0)
67             d = pkt->convergence_duration;
68         if (s == AV_NOPTS_VALUE || d <= 0) {
69             av_log(avf, AV_LOG_ERROR, "Insufficient timestamps.\n");
70             return AVERROR(EINVAL);
71         }
72         e = s + d;
73         len = snprintf(buf, sizeof(buf),
74                        "%d\n%02d:%02d:%02d,%03d --> %02d:%02d:%02d,%03d\n",
75                        srt->index,
76                        (int)(s / 3600000),      (int)(s / 60000) % 60,
77                        (int)(s /    1000) % 60, (int)(s %  1000),
78                        (int)(e / 3600000),      (int)(e / 60000) % 60,
79                        (int)(e /    1000) % 60, (int)(e %  1000));
80         avio_write(avf->pb, buf, len);
81     }
82     avio_write(avf->pb, pkt->data, pkt->size);
83     if (write_ts)
84         avio_write(avf->pb, "\n\n", 2);
85     avio_flush(avf->pb);
86     return 0;
87 }
88
89 AVOutputFormat ff_srt_muxer = {
90     .name           = "srt",
91     .long_name      = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
92     .mime_type      = "application/x-subrip",
93     .extensions     = "srt",
94     .priv_data_size = sizeof(SRTContext),
95     .write_header   = srt_write_header,
96     .write_packet   = srt_write_packet,
97     .flags          = AVFMT_VARIABLE_FPS,
98     .subtitle_codec = CODEC_ID_TEXT,
99 };