FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
latmenc.c File Reference
#include "libavcodec/get_bits.h"
#include "libavcodec/put_bits.h"
#include "libavcodec/avcodec.h"
#include "libavcodec/mpeg4audio.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "rawenc.h"

Go to the source code of this file.

Data Structures

struct  LATMContext
 

Macros

#define MAX_EXTRADATA_SIZE   1024
 

Functions

static int latm_decode_extradata (LATMContext *ctx, uint8_t *buf, int size)
 
static int latm_write_header (AVFormatContext *s)
 
static void latm_write_frame_header (AVFormatContext *s, PutBitContext *bs)
 
static int latm_write_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

static const AVOption options []
 
static const AVClass latm_muxer_class
 
AVOutputFormat ff_latm_muxer
 

Macro Definition Documentation

#define MAX_EXTRADATA_SIZE   1024

Definition at line 30 of file latmenc.c.

Referenced by latm_decode_extradata(), and latm_write_packet().

Function Documentation

static int latm_decode_extradata ( LATMContext ctx,
uint8_t buf,
int  size 
)
static

Definition at line 55 of file latmenc.c.

Referenced by latm_write_header().

static int latm_write_header ( AVFormatContext s)
static

Definition at line 84 of file latmenc.c.

static void latm_write_frame_header ( AVFormatContext s,
PutBitContext bs 
)
static

Definition at line 99 of file latmenc.c.

Referenced by latm_write_packet().

static int latm_write_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 144 of file latmenc.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{"smc-interval", "StreamMuxConfig interval.",
0x42, AV_OPT_TYPE_INT, {.i64 = 0x0014}, 0x0001, 0xffff, AV_OPT_FLAG_ENCODING_PARAM},
{NULL},
}

Definition at line 42 of file latmenc.c.

const AVClass latm_muxer_class
static
Initial value:
= {
.class_name = "LATM/LOAS muxer",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 48 of file latmenc.c.

AVOutputFormat ff_latm_muxer
Initial value:
= {
.name = "latm",
.long_name = NULL_IF_CONFIG_SMALL("LOAS/LATM"),
.mime_type = "audio/MP4A-LATM",
.extensions = "latm,loas",
.priv_data_size = sizeof(LATMContext),
.audio_codec = AV_CODEC_ID_AAC,
.video_codec = AV_CODEC_ID_NONE,
.priv_class = &latm_muxer_class,
}

Definition at line 219 of file latmenc.c.