#include "libavutil/avstring.h"
#include "libavutil/dict.h"
#include "libavutil/intfloat.h"
#include "libavutil/mathematics.h"
#include "libavcodec/bytestream.h"
#include "libavcodec/mpeg4audio.h"
#include "avformat.h"
#include "internal.h"
#include "avio_internal.h"
#include "flv.h"
Go to the source code of this file.
static int amf_get_string | ( | AVIOContext * | ioc, |
char * | buffer, | ||
int | buffsize | ||
) | [static] |
Definition at line 125 of file flvdec.c.
Referenced by amf_parse_object(), flv_read_metabody(), and parse_keyframes_index().
static int amf_parse_object | ( | AVFormatContext * | s, |
AVStream * | astream, | ||
AVStream * | vstream, | ||
const char * | key, | ||
int64_t | max_pos, | ||
int | depth | ||
) | [static] |
Definition at line 215 of file flvdec.c.
Referenced by flv_read_metabody().
static AVStream* create_stream | ( | AVFormatContext * | s, |
int | stream_type | ||
) | [static] |
Definition at line 359 of file flvdec.c.
Referenced by flv_read_header(), and flv_read_packet().
static int flv_get_extradata | ( | AVFormatContext * | s, |
AVStream * | st, | ||
int | size | ||
) | [static] |
Definition at line 425 of file flvdec.c.
Referenced by flv_read_packet().
static int flv_probe | ( | AVProbeData * | p | ) | [static] |
static int flv_queue_extradata | ( | FLVContext * | flv, |
AVIOContext * | pb, | ||
int | stream, | ||
int | size | ||
) | [static] |
Definition at line 436 of file flvdec.c.
Referenced by flv_read_packet().
static int flv_read_close | ( | AVFormatContext * | s | ) | [static] |
static int flv_read_header | ( | AVFormatContext * | s, |
AVFormatParameters * | ap | ||
) | [static] |
static int flv_read_metabody | ( | AVFormatContext * | s, |
int64_t | next_pos | ||
) | [static] |
Definition at line 329 of file flvdec.c.
Referenced by flv_read_packet().
static int flv_read_packet | ( | AVFormatContext * | s, |
AVPacket * | pkt | ||
) | [static] |
static int flv_read_seek | ( | AVFormatContext * | s, |
int | stream_index, | ||
int64_t | ts, | ||
int | flags | ||
) | [static] |
static void flv_set_audio_codec | ( | AVFormatContext * | s, |
AVStream * | astream, | ||
AVCodecContext * | acodec, | ||
int | flv_codecid | ||
) | [static] |
Definition at line 57 of file flvdec.c.
Referenced by flv_read_packet().
static int flv_set_video_codec | ( | AVFormatContext * | s, |
AVStream * | vstream, | ||
int | flv_codecid | ||
) | [static] |
Definition at line 94 of file flvdec.c.
Referenced by flv_read_packet().
static int parse_keyframes_index | ( | AVFormatContext * | s, |
AVIOContext * | ioc, | ||
AVStream * | vstream, | ||
int64_t | max_pos | ||
) | [static] |
Definition at line 139 of file flvdec.c.
Referenced by amf_parse_object().
{ .name = "flv", .long_name = NULL_IF_CONFIG_SMALL("FLV format"), .priv_data_size = sizeof(FLVContext), .read_probe = flv_probe, .read_header = flv_read_header, .read_packet = flv_read_packet, .read_seek = flv_read_seek, .read_close = flv_read_close, .extensions = "flv", .value = CODEC_ID_FLV1, }