Libav
|
ADPCM encoders See ADPCM decoder reference documents for codec information. More...
#include "avcodec.h"
#include "get_bits.h"
#include "put_bits.h"
#include "bytestream.h"
#include "adpcm.h"
#include "adpcm_data.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | TrellisPath |
struct | TrellisNode |
struct | ADPCMEncodeContext |
Macros | |
#define | FREEZE_INTERVAL 128 |
#define | STORE_NODE(NAME, STEP_INDEX) |
#define | LOOP_NODES(NAME, STEP_TABLE, STEP_INDEX) |
#define | ADPCM_ENCODER(id_, name_, sample_fmts_, long_name_) |
Variables | |
static enum AVSampleFormat | sample_fmts [] |
static enum AVSampleFormat | sample_fmts_p [] |
ADPCM encoders See ADPCM decoder reference documents for codec information.
Definition in file adpcmenc.c.
#define FREEZE_INTERVAL 128 |
Definition at line 60 of file adpcmenc.c.
Referenced by adpcm_compress_trellis(), and adpcm_encode_init().
#define STORE_NODE | ( | NAME, | |
STEP_INDEX | |||
) |
Referenced by adpcm_compress_trellis().
#define LOOP_NODES | ( | NAME, | |
STEP_TABLE, | |||
STEP_INDEX | |||
) |
Referenced by adpcm_compress_trellis().
#define ADPCM_ENCODER | ( | id_, | |
name_, | |||
sample_fmts_, | |||
long_name_ | |||
) |
Definition at line 708 of file adpcmenc.c.
|
static |
Definition at line 62 of file adpcmenc.c.
|
static |
Definition at line 154 of file adpcmenc.c.
|
inlinestatic |
Definition at line 166 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
inlinestatic |
Definition at line 179 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
inlinestatic |
Definition at line 213 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
inlinestatic |
Definition at line 242 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
static |
Definition at line 264 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
static |
Definition at line 469 of file adpcmenc.c.
ADPCM_ENCODER | ( | AV_CODEC_ID_ADPCM_IMA_QT | , |
adpcm_ima_qt | , | ||
sample_fmts_p | , | ||
"ADPCM IMA QuickTime" | |||
) |
ADPCM_ENCODER | ( | AV_CODEC_ID_ADPCM_IMA_WAV | , |
adpcm_ima_wav | , | ||
sample_fmts_p | , | ||
"ADPCM IMA WAV" | |||
) |
ADPCM_ENCODER | ( | AV_CODEC_ID_ADPCM_MS | , |
adpcm_ms | , | ||
sample_fmts | , | ||
"ADPCM Microsoft" | |||
) |
ADPCM_ENCODER | ( | AV_CODEC_ID_ADPCM_SWF | , |
adpcm_swf | , | ||
sample_fmts | , | ||
"ADPCM Shockwave Flash" | |||
) |
ADPCM_ENCODER | ( | AV_CODEC_ID_ADPCM_YAMAHA | , |
adpcm_yamaha | , | ||
sample_fmts | , | ||
"ADPCM Yamaha" | |||
) |
|
static |
Definition at line 700 of file adpcmenc.c.
|
static |
Definition at line 704 of file adpcmenc.c.