|
FFmpeg
|
#include <vorbis/vorbisenc.h>#include "libavutil/avassert.h"#include "libavutil/fifo.h"#include "libavutil/opt.h"#include "avcodec.h"#include "audio_frame_queue.h"#include "internal.h"#include "vorbis.h"#include "vorbis_parser.h"Go to the source code of this file.
Data Structures | |
| struct | OggVorbisEncContext |
Macros | |
| #define | OGGVORBIS_FRAME_SIZE 64 |
| #define | BUFFER_SIZE (1024 * 64) |
Functions | |
| static int | vorbis_error_to_averror (int ov_err) |
| static av_cold int | oggvorbis_init_encoder (vorbis_info *vi, AVCodecContext *avctx) |
| static int | xiph_len (int l) |
| static av_cold int | oggvorbis_encode_close (AVCodecContext *avctx) |
| static av_cold int | oggvorbis_encode_init (AVCodecContext *avctx) |
| static int | oggvorbis_encode_frame (AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr) |
Variables | |
| static const AVOption | options [] |
| static const AVCodecDefault | defaults [] |
| class { | |
| class_name = "libvorbis" | |
| item_name = av_default_item_name | |
| option = options | |
| version = LIBAVUTIL_VERSION_INT | |
| }; | |
| AVCodec | ff_libvorbis_encoder |
| #define OGGVORBIS_FRAME_SIZE 64 |
Definition at line 38 of file libvorbisenc.c.
Referenced by oggvorbis_encode_init().
| #define BUFFER_SIZE (1024 * 64) |
Definition at line 40 of file libvorbisenc.c.
Referenced by oggvorbis_encode_init().
|
static |
Definition at line 74 of file libvorbisenc.c.
Referenced by oggvorbis_encode_frame(), oggvorbis_encode_init(), and oggvorbis_init_encoder().
|
static |
Definition at line 84 of file libvorbisenc.c.
Referenced by oggvorbis_encode_init().
|
static |
Definition at line 171 of file libvorbisenc.c.
Referenced by oggvorbis_encode_init().
|
static |
Definition at line 176 of file libvorbisenc.c.
Referenced by oggvorbis_encode_init().
|
static |
Definition at line 198 of file libvorbisenc.c.
|
static |
Definition at line 284 of file libvorbisenc.c.
|
static |
Definition at line 57 of file libvorbisenc.c.
|
static |
Definition at line 62 of file libvorbisenc.c.
| class_name = "libvorbis" |
Definition at line 68 of file libvorbisenc.c.
| item_name = av_default_item_name |
Definition at line 69 of file libvorbisenc.c.
| option = options |
Definition at line 70 of file libvorbisenc.c.
| version = LIBAVUTIL_VERSION_INT |
Definition at line 71 of file libvorbisenc.c.
| const { ... } |
| AVCodec ff_libvorbis_encoder |
Definition at line 375 of file libvorbisenc.c.
1.8.2