#include "avformat.h"#include "internal.h"#include "libavutil/log.h"Go to the source code of this file.
Data Structures | |
| struct | SRTContext |
Functions | |
| static int | srt_write_header (AVFormatContext *avf) |
| static int | srt_write_packet (AVFormatContext *avf, AVPacket *pkt) |
Variables | |
| AVOutputFormat | ff_srt_muxer |
| static int srt_write_header | ( | AVFormatContext * | avf | ) | [static] |
| static int srt_write_packet | ( | AVFormatContext * | avf, | |
| AVPacket * | pkt | |||
| ) | [static] |
Initial value:
{
.name = "srt",
.long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
.mime_type = "application/x-subrip",
.extensions = "srt",
.priv_data_size = sizeof(SRTContext),
.write_header = srt_write_header,
.write_packet = srt_write_packet,
.flags = AVFMT_VARIABLE_FPS,
.subtitle_codec = AV_CODEC_ID_TEXT,
}
1.5.8