ADPCM encoders First version by Francois Revol (revol@free.fr) Fringe ADPCM codecs (e.g., DK3, DK4, Westwood) by Mike Melanson (melanson@pcisys.net) 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_) |
Typedefs | |
| typedef struct TrellisPath | TrellisPath |
| typedef struct TrellisNode | TrellisNode |
| typedef struct ADPCMEncodeContext | ADPCMEncodeContext |
Variables | |
| static enum AVSampleFormat | sample_fmts [] |
| static enum AVSampleFormat | sample_fmts_p [] |
ADPCM encoders First version by Francois Revol (revol@free.fr) Fringe ADPCM codecs (e.g., DK3, DK4, Westwood) by Mike Melanson (melanson@pcisys.net)
See ADPCM decoder reference documents for codec information.
Definition in file adpcmenc.c.
| #define ADPCM_ENCODER | ( | id_, | |
| name_, | |||
| sample_fmts_, | |||
| long_name_ | |||
| ) |
Definition at line 717 of 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 LOOP_NODES | ( | NAME, | |
| STEP_TABLE, | |||
| STEP_INDEX | |||
| ) |
Referenced by adpcm_compress_trellis().
| #define STORE_NODE | ( | NAME, | |
| STEP_INDEX | |||
| ) |
Referenced by adpcm_compress_trellis().
| typedef struct ADPCMEncodeContext ADPCMEncodeContext |
| typedef struct TrellisNode TrellisNode |
| typedef struct TrellisPath TrellisPath |
|
static |
Definition at line 272 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
static |
Definition at line 159 of file adpcmenc.c.
|
static |
Definition at line 477 of file adpcmenc.c.
|
static |
Definition at line 62 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" | |||
| ) |
|
inlinestatic |
Definition at line 174 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
inlinestatic |
Definition at line 187 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
inlinestatic |
Definition at line 221 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
inlinestatic |
Definition at line 250 of file adpcmenc.c.
Referenced by adpcm_encode_frame().
|
static |
Definition at line 709 of file adpcmenc.c.
|
static |
Definition at line 713 of file adpcmenc.c.