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

The 3 alphanumeric copyright notices are md5summed they are from the original implementors. More...

#include "libavutil/channel_layout.h"
#include "libavutil/float_dsp.h"
#include "libavutil/lfg.h"
#include "libavutil/random_seed.h"
#include "avcodec.h"
#include "fft.h"
#include "get_bits.h"
#include "internal.h"
#include "nellymoser.h"
#include "sinewin.h"

Go to the source code of this file.

Data Structures

struct  NellyMoserDecodeContext
 

Macros

#define BITSTREAM_READER_LE
 

Functions

static void nelly_decode_block (NellyMoserDecodeContext *s, const unsigned char block[NELLY_BLOCK_LEN], float audio[NELLY_SAMPLES])
 
static av_cold int decode_init (AVCodecContext *avctx)
 
static int decode_tag (AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
 
static av_cold int decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_nellymoser_decoder
 

Detailed Description

The 3 alphanumeric copyright notices are md5summed they are from the original implementors.

The original code is available from http://code.google.com/p/nelly2pcm/

Definition in file nellymoserdec.c.

Macro Definition Documentation

#define BITSTREAM_READER_LE

Definition at line 39 of file nellymoserdec.c.

Function Documentation

static void nelly_decode_block ( NellyMoserDecodeContext s,
const unsigned char  block[NELLY_BLOCK_LEN],
float  audio[NELLY_SAMPLES] 
)
static

Definition at line 60 of file nellymoserdec.c.

Referenced by decode_tag().

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 115 of file nellymoserdec.c.

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

Definition at line 141 of file nellymoserdec.c.

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 190 of file nellymoserdec.c.

Variable Documentation

AVCodec ff_nellymoser_decoder
Initial value:
= {
.name = "nellymoser",
.long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
.priv_data_size = sizeof(NellyMoserDecodeContext),
.close = decode_end,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int decode_end(AVCodecContext *avctx)
static int decode_tag(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static av_cold int decode_init(AVCodecContext *avctx)
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:58
#define AV_CODEC_CAP_PARAM_CHANGE
Codec supports changed parameters at any point.
Definition: avcodec.h:1030
static enum AVSampleFormat sample_fmts[]
Definition: adpcmenc.c:701
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition: ffmpeg.c:2035
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959

Definition at line 199 of file nellymoserdec.c.