#include "nellymoser.h"
#include "libavutil/random.h"
#include "avcodec.h"
#include "dsputil.h"
#include "bitstream.h"
Go to the source code of this file.
Data Structures | |
| struct | NellyMoserDecodeContext |
Defines | |
| #define | ALT_BITSTREAM_READER_LE |
Functions | |
| static void | overlap_and_window (NellyMoserDecodeContext *s, float *state, float *audio, float *a_in) |
| 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 *data_size, const uint8_t *buf, int buf_size) |
| static av_cold int | decode_end (AVCodecContext *avctx) |
Variables | |
| AVCodec | nellymoser_decoder |
The original code is available from http://code.google.com/p/nelly2pcm/
Definition in file nellymoserdec.c.
| #define ALT_BITSTREAM_READER_LE |
Definition at line 39 of file nellymoserdec.c.
| static av_cold int decode_end | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 191 of file nellymoserdec.c.
| static av_cold int decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 127 of file nellymoserdec.c.
| static int decode_tag | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) | [static] |
Definition at line 153 of file nellymoserdec.c.
| static void nelly_decode_block | ( | NellyMoserDecodeContext * | s, | |
| const unsigned char | block[NELLY_BLOCK_LEN], | |||
| float | audio[NELLY_SAMPLES] | |||
| ) | [static] |
| static void overlap_and_window | ( | NellyMoserDecodeContext * | s, | |
| float * | state, | |||
| float * | audio, | |||
| float * | a_in | |||
| ) | [static] |
Initial value:
{
"nellymoser",
CODEC_TYPE_AUDIO,
CODEC_ID_NELLYMOSER,
sizeof(NellyMoserDecodeContext),
decode_init,
NULL,
decode_end,
decode_tag,
.long_name = NULL_IF_CONFIG_SMALL("Nellymoser Asao"),
}
Definition at line 198 of file nellymoserdec.c.
1.5.8