#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "libavutil/avassert.h"
#include "avformat.h"
#include "internal.h"
#include "ffm.h"
Go to the source code of this file.
Functions | |
static void | flush_packet (AVFormatContext *s) |
static void | ffm_write_data (AVFormatContext *s, const uint8_t *buf, int size, int64_t dts, int header) |
static int | ffm_write_header (AVFormatContext *s) |
static int | ffm_write_packet (AVFormatContext *s, AVPacket *pkt) |
static int | ffm_write_trailer (AVFormatContext *s) |
Variables | |
AVOutputFormat | ff_ffm_muxer |
static void ffm_write_data | ( | AVFormatContext * | s, | |
const uint8_t * | buf, | |||
int | size, | |||
int64_t | dts, | |||
int | header | |||
) | [static] |
static int ffm_write_header | ( | AVFormatContext * | s | ) | [static] |
static int ffm_write_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int ffm_write_trailer | ( | AVFormatContext * | s | ) | [static] |
static void flush_packet | ( | AVFormatContext * | s | ) | [static] |
Initial value:
{ .name = "ffm", .long_name = NULL_IF_CONFIG_SMALL("FFM (FFserver live feed)"), .extensions = "ffm", .priv_data_size = sizeof(FFMContext), .audio_codec = AV_CODEC_ID_MP2, .video_codec = AV_CODEC_ID_MPEG1VIDEO, .write_header = ffm_write_header, .write_packet = ffm_write_packet, .write_trailer = ffm_write_trailer, }