FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
libtwolame.c File Reference

Interface to libtwolame for mp2 encoding. More...

#include <twolame.h>
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "internal.h"
#include "mpegaudio.h"

Go to the source code of this file.

Data Structures

struct  TWOLAMEContext
 

Macros

#define OFFSET(x)   offsetof(TWOLAMEContext, x)
 
#define AE   AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
 

Functions

static av_cold int twolame_encode_close (AVCodecContext *avctx)
 
static av_cold int twolame_encode_init (AVCodecContext *avctx)
 
static int twolame_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
 

Variables

static const AVOption options []
 
static const AVClass twolame_class
 
static const AVCodecDefault twolame_defaults []
 
static const int twolame_samplerates []
 
AVCodec ff_libtwolame_encoder
 

Detailed Description

Interface to libtwolame for mp2 encoding.

Definition in file libtwolame.c.

Macro Definition Documentation

#define OFFSET (   x)    offsetof(TWOLAMEContext, x)

Definition at line 171 of file libtwolame.c.

Definition at line 172 of file libtwolame.c.

Function Documentation

static av_cold int twolame_encode_close ( AVCodecContext avctx)
static

Definition at line 50 of file libtwolame.c.

Referenced by twolame_encode_init().

static av_cold int twolame_encode_init ( AVCodecContext avctx)
static

Definition at line 57 of file libtwolame.c.

static int twolame_encode_frame ( AVCodecContext avctx,
AVPacket avpkt,
const AVFrame frame,
int *  got_packet_ptr 
)
static

Definition at line 103 of file libtwolame.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{ "mode", "Mpeg Mode", OFFSET(mode), AV_OPT_TYPE_INT, { .i64 = TWOLAME_AUTO_MODE }, TWOLAME_AUTO_MODE, TWOLAME_MONO, AE, "mode"},
{ "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_AUTO_MODE }, 0, 0, AE, "mode" },
{ "stereo", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_STEREO }, 0, 0, AE, "mode" },
{ "joint_stereo", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_JOINT_STEREO }, 0, 0, AE, "mode" },
{ "dual_channel", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_DUAL_CHANNEL }, 0, 0, AE, "mode" },
{ "mono", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = TWOLAME_MONO }, 0, 0, AE, "mode" },
{ "psymodel", "Psychoacoustic Model", OFFSET(psymodel), AV_OPT_TYPE_INT, { .i64 = 3 }, -1, 4, AE},
{ "energy_levels","enable energy levels", OFFSET(energy), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE},
{ "error_protection","enable CRC error protection", OFFSET(error_protection), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE},
{ "copyright", "set MPEG Audio Copyright flag", OFFSET(copyright), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE},
{ "original", "set MPEG Audio Original flag", OFFSET(original), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AE},
{ "verbosity", "set library optput level (0-10)", OFFSET(verbosity), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 10, AE},
{ NULL },
}

Definition at line 173 of file libtwolame.c.

const AVClass twolame_class
static
Initial value:
= {
.class_name = "libtwolame encoder",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 189 of file libtwolame.c.

const AVCodecDefault twolame_defaults[]
static
Initial value:
= {
{ "b", "0" },
{ NULL },
}

Definition at line 196 of file libtwolame.c.

const int twolame_samplerates[]
static
Initial value:
= {
16000, 22050, 24000, 32000, 44100, 48000, 0
}

Definition at line 201 of file libtwolame.c.

AVCodec ff_libtwolame_encoder
Initial value:
= {
.name = "libtwolame",
.long_name = NULL_IF_CONFIG_SMALL("libtwolame MP2 (MPEG audio layer 2)"),
.priv_data_size = sizeof(TWOLAMEContext),
.capabilities = CODEC_CAP_DELAY,
.priv_class = &twolame_class,
.sample_fmts = (const enum AVSampleFormat[]) {
},
.channel_layouts = (const uint64_t[]) {
0 },
.supported_samplerates = twolame_samplerates,
}

Definition at line 205 of file libtwolame.c.