#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "avformat.h"
#include "internal.h"
#include "ffm.h"
#include "avio_internal.h"
Go to the source code of this file.
Functions | |
static int | ffm_is_avail_data (AVFormatContext *s, int size) |
static int | ffm_resync (AVFormatContext *s, int state) |
static int | ffm_read_data (AVFormatContext *s, uint8_t *buf, int size, int header) |
static int64_t | ffm_seek1 (AVFormatContext *s, int64_t pos1) |
static int64_t | get_dts (AVFormatContext *s, int64_t pos) |
static void | adjust_write_index (AVFormatContext *s) |
static int | ffm_close (AVFormatContext *s) |
static int | ffm_read_header (AVFormatContext *s) |
static int | ffm_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | ffm_seek (AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags) |
static int | ffm_probe (AVProbeData *p) |
Variables | |
AVInputFormat | ff_ffm_demuxer |
static void adjust_write_index | ( | AVFormatContext * | s | ) | [static] |
static int ffm_close | ( | AVFormatContext * | s | ) | [static] |
static int ffm_is_avail_data | ( | AVFormatContext * | s, | |
int | size | |||
) | [static] |
static int ffm_probe | ( | AVProbeData * | p | ) | [static] |
static int ffm_read_data | ( | AVFormatContext * | s, | |
uint8_t * | buf, | |||
int | size, | |||
int | header | |||
) | [static] |
static int ffm_read_header | ( | AVFormatContext * | s | ) | [static] |
static int ffm_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int ffm_resync | ( | AVFormatContext * | s, | |
int | state | |||
) | [static] |
static int ffm_seek | ( | AVFormatContext * | s, | |
int | stream_index, | |||
int64_t | wanted_pts, | |||
int | flags | |||
) | [static] |
static int64_t ffm_seek1 | ( | AVFormatContext * | s, | |
int64_t | pos1 | |||
) | [static] |
static int64_t get_dts | ( | AVFormatContext * | s, | |
int64_t | pos | |||
) | [static] |
Initial value:
{ .name = "ffm", .long_name = NULL_IF_CONFIG_SMALL("FFM (FFserver live feed)"), .priv_data_size = sizeof(FFMContext), .read_probe = ffm_probe, .read_header = ffm_read_header, .read_packet = ffm_read_packet, .read_close = ffm_close, .read_seek = ffm_seek, }