FFmpeg
 All Data Structures 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 "fmtconvert.h"
#include "internal.h"
#include "nellymoser.h"
#include "sinewin.h"
#include "get_bits.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 45 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 61 of file nellymoserdec.c.

Referenced by decode_tag().

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 116 of file nellymoserdec.c.

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

Definition at line 140 of file nellymoserdec.c.

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 191 of file nellymoserdec.c.

Variable Documentation

AVCodec ff_nellymoser_decoder
Initial value:
= {
.name = "nellymoser",
.priv_data_size = sizeof(NellyMoserDecodeContext),
.long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLT,
}

Definition at line 199 of file nellymoserdec.c.