#include "avformat.h"
#include "rawenc.h"
Go to the source code of this file.
Functions | |
static int | microdvd_write_header (struct AVFormatContext *s) |
Variables | |
AVOutputFormat | ff_microdvd_muxer |
static int microdvd_write_header | ( | struct AVFormatContext * | s | ) | [static] |
Definition at line 25 of file microdvdenc.c.
Initial value:
{ .name = "microdvd", .long_name = NULL_IF_CONFIG_SMALL("MicroDVD subtitle format"), .mime_type = "text/x-microdvd", .extensions = "sub", .write_header = microdvd_write_header, .write_packet = ff_raw_write_packet, .flags = AVFMT_NOTIMESTAMPS, .subtitle_codec = AV_CODEC_ID_MICRODVD, }
Definition at line 42 of file microdvdenc.c.