FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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

static av_cold int cng_encode_close ( AVCodecContext avctx)
static

Definition at line 36 of file cngenc.c.

Referenced by cng_encode_init().

static av_cold int cng_encode_init ( AVCodecContext avctx)
static

Definition at line 45 of file cngenc.c.

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

AVCodec ff_comfortnoise_encoder
Initial value:
= {
.name = "comfortnoise",
.priv_data_size = sizeof(CNGContext),
.encode2 = cng_encode_frame,
.long_name = NULL_IF_CONFIG_SMALL("RFC 3389 comfort noise generator"),
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
}

Definition at line 105 of file cngenc.c.