#include <vorbis/vorbisenc.h>
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/fifo.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "audio_frame_queue.h"
#include "encode.h"
#include "internal.h"
#include "vorbis.h"
#include "vorbis_parser.h"
Go to the source code of this file.
◆ LIBVORBIS_FRAME_SIZE
#define LIBVORBIS_FRAME_SIZE 64 |
◆ BUFFER_SIZE
#define BUFFER_SIZE (1024 * 64) |
◆ vorbis_error_to_averror()
static int vorbis_error_to_averror |
( |
int |
ov_err | ) |
|
|
static |
◆ libvorbis_setup()
◆ xiph_len()
◆ libvorbis_encode_close()
◆ libvorbis_encode_init()
◆ libvorbis_encode_frame()
◆ options
◆ defaults
◆ vorbis_class
Initial value:= {
.class_name = "libvorbis",
}
Definition at line 68 of file libvorbisenc.c.
◆ vorbis_encoding_channel_layout_offsets
const uint8_t vorbis_encoding_channel_layout_offsets[8][8] |
|
static |
Initial value:= {
{ 0 },
{ 0, 1 },
{ 0, 2, 1 },
{ 0, 1, 2, 3 },
{ 0, 2, 1, 3, 4 },
{ 0, 2, 1, 4, 5, 3 },
{ 0, 2, 1, 5, 6, 4, 3 },
{ 0, 2, 1, 6, 7, 4, 5, 3 },
}
Definition at line 75 of file libvorbisenc.c.
Referenced by libvorbis_encode_frame().
◆ ff_libvorbis_encoder
Initial value:= {
.name = "libvorbis",
.wrapper_name = "libvorbis",
}
Definition at line 378 of file libvorbisenc.c.