FFmpeg
Data Structures | Functions | Variables
cngenc.c File Reference
#include <math.h>
#include "libavutil/common.h"
#include "avcodec.h"
#include "internal.h"
#include "lpc.h"

Go to the source code of this file.

Data Structures

struct  CNGContext
 

Functions

static av_cold int cng_encode_close (AVCodecContext *avctx)
 
static av_cold int cng_encode_init (AVCodecContext *avctx)
 
static int cng_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
 

Variables

AVCodec ff_comfortnoise_encoder
 

Function Documentation

◆ cng_encode_close()

static av_cold int cng_encode_close ( AVCodecContext avctx)
static

Definition at line 36 of file cngenc.c.

Referenced by cng_encode_init().

◆ cng_encode_init()

static av_cold int cng_encode_init ( AVCodecContext avctx)
static

Definition at line 45 of file cngenc.c.

◆ cng_encode_frame()

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

Definition at line 69 of file cngenc.c.

Variable Documentation

◆ ff_comfortnoise_encoder

AVCodec ff_comfortnoise_encoder
Initial value:
= {
.name = "comfortnoise",
.long_name = NULL_IF_CONFIG_SMALL("RFC 3389 comfort noise generator"),
.priv_data_size = sizeof(CNGContext),
.encode2 = cng_encode_frame,
.close = cng_encode_close,
}

Definition at line 105 of file cngenc.c.

init
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
sample_fmts
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:686
cng_encode_frame
static int cng_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Definition: cngenc.c:69
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
CNGContext
Definition: cngdec.c:32
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:59
AV_CODEC_ID_COMFORT_NOISE
@ AV_CODEC_ID_COMFORT_NOISE
Definition: avcodec.h:625
cng_encode_init
static av_cold int cng_encode_init(AVCodecContext *avctx)
Definition: cngenc.c:45
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
AV_SAMPLE_FMT_S16
@ AV_SAMPLE_FMT_S16
signed 16 bits
Definition: samplefmt.h:61
cng_encode_close
static av_cold int cng_encode_close(AVCodecContext *avctx)
Definition: cngenc.c:36