Go to the documentation of this file.
21 #include <vorbis/vorbisenc.h>
40 #define LIBVORBIS_FRAME_SIZE 64
42 #define BUFFER_SIZE (1024 * 64)
82 { 0, 2, 1, 5, 6, 4, 3 },
83 { 0, 2, 1, 6, 7, 4, 5, 3 },
90 case OV_EINVAL:
return AVERROR(EINVAL);
91 case OV_EIMPL:
return AVERROR(EINVAL);
121 if ((
ret = vorbis_encode_setup_managed(vi,
channels,
127 if (minrate == -1 && maxrate == -1)
128 if ((
ret = vorbis_encode_ctl(vi, OV_ECTL_RATEMANAGE2_SET,
NULL)))
134 cfreq = avctx->
cutoff / 1000.0;
135 if ((
ret = vorbis_encode_ctl(vi, OV_ECTL_LOWPASS_SET, &cfreq)))
141 if ((
ret = vorbis_encode_ctl(vi, OV_ECTL_IBLOCK_SET, &
s->iblock)))
164 "output stream will have incorrect "
165 "channel layout.\n",
name);
168 "will use Vorbis channel layout for "
173 if ((
ret = vorbis_encode_setup_init(vi)))
184 return 1 + l / 255 + l;
192 if (
s->dsp_initialized)
193 vorbis_analysis_wrote(&
s->vd, 0);
195 vorbis_block_clear(&
s->vb);
196 vorbis_dsp_clear(&
s->vd);
197 vorbis_info_clear(&
s->vi);
215 vorbis_info_init(&
s->vi);
220 if ((
ret = vorbis_analysis_init(&
s->vd, &
s->vi))) {
225 s->dsp_initialized = 1;
226 if ((
ret = vorbis_block_init(&
s->vd, &
s->vb))) {
232 vorbis_comment_init(&
s->vc);
236 if ((
ret = vorbis_analysis_headerout(&
s->vd, &
s->vc, &
header, &header_comm,
257 memcpy(&p[
offset], header_comm.packet, header_comm.bytes);
258 offset += header_comm.bytes;
259 memcpy(&p[
offset], header_code.packet, header_code.bytes);
260 offset += header_code.bytes;
269 vorbis_comment_clear(&
s->vc);
306 if ((
ret = vorbis_analysis_wrote(&
s->vd,
samples)) < 0) {
313 if (!
s->eof &&
s->afq.frame_alloc)
314 if ((
ret = vorbis_analysis_wrote(&
s->vd, 0)) < 0) {
322 while ((
ret = vorbis_analysis_blockout(&
s->vd, &
s->vb)) == 1) {
323 if ((
ret = vorbis_analysis(&
s->vb,
NULL)) < 0)
325 if ((
ret = vorbis_bitrate_addblock(&
s->vb)) < 0)
329 while ((
ret = vorbis_bitrate_flushpacket(&
s->vd, &
op)) == 1) {
377 .
p.
name =
"libvorbis",
392 .p.wrapper_name =
"libvorbis",
static void error(const char *err)
int frame_size
Number of samples per channel in an audio frame.
@ AV_SAMPLE_FMT_FLTP
float, planar
#define AV_LOG_WARNING
Something somehow does not look correct.
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
vorbis_comment vc
VorbisComment info
size_t av_fifo_can_write(const AVFifo *f)
void av_vorbis_parse_free(AVVorbisParseContext **s)
Free the parser and everything associated with it.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
void ff_af_queue_remove(AudioFrameQueue *afq, int nb_samples, int64_t *pts, int64_t *duration)
Remove frame(s) from the queue.
int sample_rate
samples per second
int64_t rc_min_rate
minimum bitrate
void ff_af_queue_close(AudioFrameQueue *afq)
Close AudioFrameQueue.
#define AV_CODEC_FLAG_QSCALE
Use fixed qscale.
av_cold void ff_af_queue_init(AVCodecContext *avctx, AudioFrameQueue *afq)
Initialize AudioFrameQueue.
#define AV_CHANNEL_LAYOUT_2_2
static const AVClass vorbis_class
This structure describes decoded (raw) audio or video data.
static av_cold int libvorbis_setup(vorbis_info *vi, AVCodecContext *avctx)
#define LIBVORBIS_FRAME_SIZE
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
int av_vorbis_parse_frame(AVVorbisParseContext *s, const uint8_t *buf, int buf_size)
Get the duration for a Vorbis packet.
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
enum AVChannelOrder order
Channel order used in this layout.
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
int nb_channels
Number of channels in this layout.
AVCodec p
The public AVCodec.
AVChannelLayout ch_layout
Audio channel layout.
int av_fifo_write(AVFifo *f, const void *buf, size_t nb_elems)
Write data into a FIFO.
static const FFCodecDefault defaults[]
int initial_padding
Audio only.
static const AVOption options[]
int flags
AV_CODEC_FLAG_*.
#define FF_CODEC_ENCODE_CB(func)
int ff_af_queue_add(AudioFrameQueue *afq, const AVFrame *f)
Add a frame to the queue.
static int ogg_packet(AVFormatContext *s, int *sid, int *dstart, int *dsize, int64_t *fpos)
find the next Ogg packet
#define AV_CHANNEL_LAYOUT_SURROUND
AVClass * av_class
class for AVOptions
vorbis_info vi
vorbis_info used during init
#define AV_OPT_FLAG_AUDIO_PARAM
static int libvorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int av_fifo_read(AVFifo *f, void *buf, size_t nb_elems)
Read data from a FIFO.
int av_channel_layout_describe(const AVChannelLayout *channel_layout, char *buf, size_t buf_size)
Get a human-readable string describing the channel layout properties.
#define AV_CHANNEL_LAYOUT_7POINT1
int global_quality
Global quality for codecs which cannot change it per frame.
static av_cold int libvorbis_encode_close(AVCodecContext *avctx)
static int op(uint8_t **dst, const uint8_t *dst_end, GetByteContext *gb, int pixel, int count, int *x, int width, int linesize)
Perform decode operation.
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
#define AV_CHANNEL_LAYOUT_5POINT0_BACK
#define av_assert0(cond)
assert() equivalent, that is always enabled.
int64_t rc_max_rate
maximum bitrate
#define CODEC_LONG_NAME(str)
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
static av_always_inline int64_t ff_samples_to_time_base(const AVCodecContext *avctx, int64_t samples)
Rescale from sample rate to AVCodecContext.time_base.
int64_t bit_rate
the average bitrate
const char * av_default_item_name(void *ptr)
Return the context name.
AudioFrameQueue afq
frame queue for timestamps
#define AV_OPT_FLAG_ENCODING_PARAM
A generic parameter which can be set by the user for muxing or encoding.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
int(* init)(AVBSFContext *ctx)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
An AVChannelLayout holds information about the channel layout of audio data.
#define AV_NOPTS_VALUE
Undefined timestamp value.
unsigned int av_xiphlacing(unsigned char *s, unsigned int v)
Encode extradata length to a buffer.
vorbis_block vb
vorbis_block used for analysis
AVVorbisParseContext * vp
parse context to get durations
static const uint8_t header[24]
static int xiph_len(int l)
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
static int vorbis_error_to_averror(int ov_err)
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
int nb_samples
number of audio samples (per channel) described by this frame
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
AVFifo * pkt_fifo
output packet buffer
#define AV_CHANNEL_LAYOUT_QUAD
uint8_t ** extended_data
pointers to the data planes/channels.
int cutoff
Audio cutoff bandwidth (0 means "automatic")
static const uint8_t vorbis_encoding_channel_layout_offsets[8][8]
AVSampleFormat
Audio sample formats.
const char * name
Name of the codec implementation.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
AVVorbisParseContext * av_vorbis_parse_init(const uint8_t *extradata, int extradata_size)
Allocate and initialize the Vorbis parser using headers in the extradata.
static av_cold int libvorbis_encode_init(AVCodecContext *avctx)
AVFifo * av_fifo_alloc2(size_t nb_elems, size_t elem_size, unsigned int flags)
Allocate and initialize an AVFifo with a given element size.
#define AV_INPUT_BUFFER_PADDING_SIZE
main external API structure.
double iblock
impulse block bias option
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Filter the word “frame” indicates either a video frame or a group of audio samples
int dsp_initialized
vd has been initialized
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
const FFCodec ff_libvorbis_encoder
This structure stores compressed data.
#define AV_CHANNEL_LAYOUT_5POINT1_BACK
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
#define AV_CHANNEL_LAYOUT_6POINT1
void av_fifo_freep2(AVFifo **f)
Free an AVFifo and reset pointer to NULL.
#define AV_CHANNEL_LAYOUT_5POINT0
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
#define AV_CODEC_CAP_SMALL_LAST_FRAME
Codec can be fed a final frame with a smaller size.
#define AV_CHANNEL_LAYOUT_5POINT1
vorbis_dsp_state vd
DSP state used for analysis