cngdec.c File Reference
#include <math.h>
#include "libavutil/common.h"
#include "avcodec.h"
#include "celp_filters.h"
#include "internal.h"
#include "libavutil/lfg.h"
Include dependency graph for cngdec.c:

Go to the source code of this file.

Data Structures

struct  CNGContext
 

Typedefs

typedef struct CNGContext CNGContext
 

Functions

static av_cold int cng_decode_close (AVCodecContext *avctx)
 
static av_cold int cng_decode_init (AVCodecContext *avctx)
 
static void make_lpc_coefs (float *lpc, const float *refl, int order)
 
static void cng_decode_flush (AVCodecContext *avctx)
 
static int cng_decode_frame (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
 

Variables

AVCodec ff_comfortnoise_decoder
 

Typedef Documentation

typedef struct CNGContext CNGContext

Function Documentation

static av_cold int cng_decode_close ( AVCodecContext avctx)
static

Definition at line 41 of file cngdec.c.

Referenced by cng_decode_init().

static void cng_decode_flush ( AVCodecContext avctx)
static

Definition at line 96 of file cngdec.c.

static int cng_decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame_ptr,
AVPacket avpkt 
)
static

Definition at line 102 of file cngdec.c.

static av_cold int cng_decode_init ( AVCodecContext avctx)
static

Definition at line 52 of file cngdec.c.

static void make_lpc_coefs ( float *  lpc,
const float *  refl,
int  order 
)
static

Definition at line 79 of file cngdec.c.

Referenced by cng_decode_frame().

Variable Documentation

AVCodec ff_comfortnoise_decoder
Initial value:
= {
.name = "comfortnoise",
.priv_data_size = sizeof(CNGContext),
.long_name = NULL_IF_CONFIG_SMALL("RFC 3389 comfort noise generator"),
.sample_fmts = (const enum AVSampleFormat[]){ AV_SAMPLE_FMT_S16,
.capabilities = CODEC_CAP_DELAY | CODEC_CAP_DR1,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int cng_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
Definition: cngdec.c:102
signed 16 bits
Definition: samplefmt.h:52
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
#define CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
struct CNGContext CNGContext
static void flush(AVCodecContext *avctx)
static void cng_decode_flush(AVCodecContext *avctx)
Definition: cngdec.c:96
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
AVSampleFormat
Audio Sample Formats.
Definition: samplefmt.h:49
static av_cold int cng_decode_close(AVCodecContext *avctx)
Definition: cngdec.c:41
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: crystalhd.c:868
static av_cold int cng_decode_init(AVCodecContext *avctx)
Definition: cngdec.c:52

Definition at line 158 of file cngdec.c.