FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
flvenc.c File Reference
#include "libavutil/intreadwrite.h"
#include "libavutil/dict.h"
#include "libavutil/intfloat.h"
#include "libavutil/avassert.h"
#include "avc.h"
#include "avformat.h"
#include "flv.h"
#include "internal.h"
#include "metadata.h"

Go to the source code of this file.

Data Structures

struct  FLVContext
 
struct  FLVStreamContext
 

Functions

static int get_audio_flags (AVFormatContext *s, AVCodecContext *enc)
 
static void put_amf_string (AVIOContext *pb, const char *str)
 
static void put_avc_eos_tag (AVIOContext *pb, unsigned ts)
 
static void put_amf_double (AVIOContext *pb, double d)
 
static void put_amf_bool (AVIOContext *pb, int b)
 
static int flv_write_header (AVFormatContext *s)
 
static int flv_write_trailer (AVFormatContext *s)
 
static int flv_write_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

static const AVCodecTag flv_video_codec_ids []
 
static const AVCodecTag flv_audio_codec_ids []
 
AVOutputFormat ff_flv_muxer
 

Function Documentation

static int get_audio_flags ( AVFormatContext s,
AVCodecContext enc 
)
static

Definition at line 72 of file flvenc.c.

Referenced by flv_write_header(), and flv_write_packet().

static void put_amf_string ( AVIOContext pb,
const char *  str 
)
static

Definition at line 162 of file flvenc.c.

Referenced by flv_write_header(), and flv_write_packet().

static void put_avc_eos_tag ( AVIOContext pb,
unsigned  ts 
)
static

Definition at line 169 of file flvenc.c.

Referenced by flv_write_trailer().

static void put_amf_double ( AVIOContext pb,
double  d 
)
static

Definition at line 182 of file flvenc.c.

Referenced by flv_write_header(), and flv_write_trailer().

static void put_amf_bool ( AVIOContext pb,
int  b 
)
static

Definition at line 188 of file flvenc.c.

Referenced by flv_write_header().

static int flv_write_header ( AVFormatContext s)
static

Definition at line 194 of file flvenc.c.

static int flv_write_trailer ( AVFormatContext s)
static

Definition at line 422 of file flvenc.c.

static int flv_write_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 455 of file flvenc.c.

Variable Documentation

const AVCodecTag flv_video_codec_ids[]
static
const AVCodecTag flv_audio_codec_ids[]
static
AVOutputFormat ff_flv_muxer
Initial value:
= {
.name = "flv",
.long_name = NULL_IF_CONFIG_SMALL("FLV (Flash Video)"),
.mime_type = "video/x-flv",
.extensions = "flv",
.priv_data_size = sizeof(FLVContext),
.audio_codec = CONFIG_LIBMP3LAME ? AV_CODEC_ID_MP3 : AV_CODEC_ID_ADPCM_SWF,
.video_codec = AV_CODEC_ID_FLV1,
.codec_tag = (const AVCodecTag* const []) {
},
}

Definition at line 594 of file flvenc.c.