Libav
|
#include <stdint.h>
#include "libavutil/crc.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/random_seed.h"
#include "libavcodec/xiph.h"
#include "libavcodec/bytestream.h"
#include "libavcodec/flac.h"
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
#include "vorbiscomment.h"
Go to the source code of this file.
Data Structures | |
struct | OGGPage |
struct | OGGStreamContext |
struct | OGGPageList |
struct | OGGContext |
Macros | |
#define | MAX_PAGE_SIZE 65025 |
#define | OFFSET(x) offsetof(OGGContext, x) |
#define | PARAM AV_OPT_FLAG_ENCODING_PARAM |
#define | SPEEX_HEADER_SIZE 80 |
#define | OPUS_HEADER_SIZE 19 |
Variables | |
static const AVOption | options [] |
static const AVClass | ogg_muxer_class |
AVOutputFormat | ff_ogg_muxer |
#define MAX_PAGE_SIZE 65025 |
Definition at line 36 of file oggenc.c.
Referenced by ogg_buffer_data().
#define OFFSET | ( | x | ) | offsetof(OGGContext, x) |
#define PARAM AV_OPT_FLAG_ENCODING_PARAM |
#define SPEEX_HEADER_SIZE 80 |
Definition at line 332 of file oggenc.c.
Referenced by ogg_build_speex_headers().
#define OPUS_HEADER_SIZE 19 |
Definition at line 361 of file oggenc.c.
Referenced by ogg_build_opus_headers().
|
static |
Definition at line 95 of file oggenc.c.
Referenced by ogg_write_page().
|
static |
Definition at line 104 of file oggenc.c.
Referenced by ogg_write_pages().
|
static |
Definition at line 142 of file oggenc.c.
Referenced by ogg_buffer_data(), and ogg_compare_granule().
|
static |
Definition at line 151 of file oggenc.c.
Referenced by ogg_buffer_page().
|
static |
Definition at line 167 of file oggenc.c.
Referenced by ogg_buffer_page().
|
static |
Definition at line 176 of file oggenc.c.
Referenced by ogg_buffer_data(), ogg_write_header(), ogg_write_packet(), and ogg_write_trailer().
|
static |
Definition at line 201 of file oggenc.c.
Referenced by ogg_write_header(), and ogg_write_packet_internal().
|
static |
Definition at line 270 of file oggenc.c.
Referenced by ogg_build_flac_headers(), ogg_build_opus_headers(), ogg_build_speex_headers(), and ogg_write_header().
|
static |
Definition at line 294 of file oggenc.c.
Referenced by ogg_write_header().
|
static |
Definition at line 334 of file oggenc.c.
Referenced by ogg_write_header().
|
static |
Definition at line 363 of file oggenc.c.
Referenced by ogg_write_header().
|
static |
Definition at line 390 of file oggenc.c.
Referenced by ogg_write_header(), ogg_write_packet(), ogg_write_packet_internal(), and ogg_write_trailer().
|
static |
|
static |
Definition at line 547 of file oggenc.c.
Referenced by ogg_write_packet().
|
static |
|
static |
|
static |
|
static |
AVOutputFormat ff_ogg_muxer |