]> git.sesse.net Git - ffmpeg/blob - libavformat/srtenc.c
ffplay: get rid of void casts in the option table
[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 != AV_CODEC_ID_TEXT &&
45         avf->streams[0]->codec->codec_id != AV_CODEC_ID_SUBRIP &&
46         avf->streams[0]->codec->codec_id != AV_CODEC_ID_SRT) {
47         av_log(avf, AV_LOG_ERROR,
48                "Unsupported subtitles codec: %s\n",
49                avcodec_get_name(avf->streams[0]->codec->codec_id));
50         return AVERROR(EINVAL);
51     }
52     avpriv_set_pts_info(avf->streams[0], 64, 1, 1000);
53     return 0;
54 }
55
56 static int srt_write_packet(AVFormatContext *avf, AVPacket *pkt)
57 {
58     SRTContext *srt = avf->priv_data;
59     int write_ts = avf->streams[0]->codec->codec_id != AV_CODEC_ID_SRT;
60
61     srt->index++;
62     if (write_ts) {
63         char buf[64];
64         int64_t s = pkt->pts, e, d = pkt->duration;
65         int len;
66
67         if (d <= 0)
68             d = pkt->convergence_duration;
69         if (s == AV_NOPTS_VALUE || d <= 0) {
70             av_log(avf, AV_LOG_ERROR, "Insufficient timestamps.\n");
71             return AVERROR(EINVAL);
72         }
73         e = s + d;
74         len = snprintf(buf, sizeof(buf),
75                        "%d\n%02d:%02d:%02d,%03d --> %02d:%02d:%02d,%03d\n",
76                        srt->index,
77                        (int)(s / 3600000),      (int)(s / 60000) % 60,
78                        (int)(s /    1000) % 60, (int)(s %  1000),
79                        (int)(e / 3600000),      (int)(e / 60000) % 60,
80                        (int)(e /    1000) % 60, (int)(e %  1000));
81         avio_write(avf->pb, buf, len);
82     }
83     avio_write(avf->pb, pkt->data, pkt->size);
84     if (write_ts)
85         avio_write(avf->pb, "\n\n", 2);
86     avio_flush(avf->pb);
87     return 0;
88 }
89
90 AVOutputFormat ff_srt_muxer = {
91     .name           = "srt",
92     .long_name      = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
93     .mime_type      = "application/x-subrip",
94     .extensions     = "srt",
95     .priv_data_size = sizeof(SRTContext),
96     .write_header   = srt_write_header,
97     .write_packet   = srt_write_packet,
98     .flags          = AVFMT_VARIABLE_FPS,
99     .subtitle_codec = AV_CODEC_ID_TEXT,
100 };