FFmpeg
|
Native Vorbis encoder. More...
#include <float.h>
#include "avcodec.h"
#include "internal.h"
#include "fft.h"
#include "mathops.h"
#include "vorbis.h"
#include "vorbis_enc_data.h"
#include "put_bits.h"
#include <assert.h>
Go to the source code of this file.
Data Structures | |
struct | vorbis_enc_codebook |
struct | vorbis_enc_floor_class |
struct | vorbis_enc_floor |
struct | vorbis_enc_residue |
struct | vorbis_enc_mapping |
struct | vorbis_enc_mode |
struct | vorbis_enc_context |
Macros | |
#define | BITSTREAM_WRITER_LE |
#define | MAX_CHANNELS 2 |
#define | MAX_CODEBOOK_DIM 8 |
#define | MAX_FLOOR_CLASS_DIM 4 |
#define | NUM_FLOOR_PARTITIONS 8 |
#define | MAX_FLOOR_VALUES (MAX_FLOOR_CLASS_DIM*NUM_FLOOR_PARTITIONS+2) |
#define | RESIDUE_SIZE 1600 |
#define | RESIDUE_PART_SIZE 32 |
#define | NUM_RESIDUE_PARTITIONS (RESIDUE_SIZE/RESIDUE_PART_SIZE) |
Variables | |
AVCodec | ff_vorbis_encoder |
Native Vorbis encoder.
Definition in file vorbisenc.c.
#define BITSTREAM_WRITER_LE |
Definition at line 36 of file vorbisenc.c.
#define MAX_CHANNELS 2 |
Definition at line 131 of file vorbisenc.c.
Referenced by residue_encode().
#define MAX_CODEBOOK_DIM 8 |
Definition at line 132 of file vorbisenc.c.
Referenced by residue_encode().
#define MAX_FLOOR_CLASS_DIM 4 |
Definition at line 134 of file vorbisenc.c.
#define NUM_FLOOR_PARTITIONS 8 |
Definition at line 135 of file vorbisenc.c.
Referenced by create_vorbis_context().
#define MAX_FLOOR_VALUES (MAX_FLOOR_CLASS_DIM*NUM_FLOOR_PARTITIONS+2) |
Definition at line 136 of file vorbisenc.c.
Referenced by floor_encode(), floor_fit(), and vorbis_encode_frame().
#define RESIDUE_SIZE 1600 |
Definition at line 138 of file vorbisenc.c.
#define RESIDUE_PART_SIZE 32 |
Definition at line 139 of file vorbisenc.c.
#define NUM_RESIDUE_PARTITIONS (RESIDUE_SIZE/RESIDUE_PART_SIZE) |
Definition at line 140 of file vorbisenc.c.
Referenced by residue_encode().
|
inlinestatic |
Definition at line 142 of file vorbisenc.c.
Referenced by floor_encode(), put_vector(), and residue_encode().
|
static |
Definition at line 154 of file vorbisenc.c.
Referenced by create_vorbis_context(), put_codebook_header(), and ready_codebook().
|
static |
Definition at line 163 of file vorbisenc.c.
Referenced by create_vorbis_context().
|
static |
Definition at line 200 of file vorbisenc.c.
Referenced by create_vorbis_context().
|
static |
Definition at line 239 of file vorbisenc.c.
Referenced by vorbis_encode_init().
|
static |
Definition at line 440 of file vorbisenc.c.
Referenced by put_codebook_header().
|
static |
Definition at line 454 of file vorbisenc.c.
Referenced by put_main_header().
|
static |
Definition at line 519 of file vorbisenc.c.
Referenced by put_main_header().
|
static |
Definition at line 552 of file vorbisenc.c.
Referenced by put_main_header().
|
static |
Definition at line 584 of file vorbisenc.c.
Referenced by vorbis_encode_init().
|
static |
Definition at line 719 of file vorbisenc.c.
Referenced by floor_fit().
|
static |
Definition at line 731 of file vorbisenc.c.
Referenced by vorbis_encode_frame().
|
static |
Definition at line 758 of file vorbisenc.c.
Referenced by floor_encode().
|
static |
Definition at line 763 of file vorbisenc.c.
Referenced by vorbis_encode_frame().
|
static |
Definition at line 852 of file vorbisenc.c.
Referenced by residue_encode().
|
static |
Definition at line 875 of file vorbisenc.c.
Referenced by vorbis_encode_frame().
|
static |
Definition at line 970 of file vorbisenc.c.
Referenced by vorbis_encode_frame().
|
static |
Definition at line 1021 of file vorbisenc.c.
|
static |
Definition at line 1108 of file vorbisenc.c.
Referenced by vorbis_encode_init().
|
static |
Definition at line 1167 of file vorbisenc.c.
AVCodec ff_vorbis_encoder |
Definition at line 1199 of file vorbisenc.c.