#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | ASSContext |
Functions | |
static int | write_header (AVFormatContext *s) |
static int | write_packet (AVFormatContext *s, AVPacket *pkt) |
static int | write_trailer (AVFormatContext *s) |
Variables | |
AVOutputFormat | ff_ass_muxer |
static int write_header | ( | AVFormatContext * | s | ) | [static] |
static int write_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 58 of file assenc.c.
Referenced by av_alloc_put_byte(), avio_alloc_context(), ffio_init_context(), and init_put_byte().
static int write_trailer | ( | AVFormatContext * | s | ) | [static] |
Initial value:
{ .name = "ass", .long_name = NULL_IF_CONFIG_SMALL("Advanced SubStation Alpha subtitle format"), .mime_type = "text/x-ssa", .extensions = "ass,ssa", .priv_data_size = sizeof(ASSContext), .subtitle_codec = CODEC_ID_SSA, .write_header = write_header, .write_packet = write_packet, .write_trailer = write_trailer, .flags = AVFMT_GLOBALHEADER | AVFMT_NOTIMESTAMPS, }