Go to the documentation of this file.
21 #include <vorbis/vorbisenc.h>
41 int i, hsizes[3],
ret;
49 vorbis_info_init(&
context->vi) ;
50 vorbis_comment_init(&
context->vc) ;
52 if(p[0] == 0 && p[1] == 30) {
54 for(
i = 0;
i < 3;
i++){
55 hsizes[
i] = bytestream_get_be16((
const uint8_t **)&p);
56 sizesum += 2 + hsizes[
i];
68 unsigned int sizesum = 1;
72 while((*p == 0xFF) && (sizesum < avccontext->extradata_size)) {
83 "vorbis header sizes damaged\n");
92 "vorbis header sizes: %d, %d, %d, / extradata_len is %d \n",
100 "vorbis initial header len is wrong: %d\n", *p);
136 ogg_int16_t *ptr, *
data = (ogg_int16_t*)buf ;
143 for(j = 0 ; j <
samples ; j++) {
153 int *got_frame_ptr,
AVPacket *avpkt)
158 int samples, total_samples, total_bytes;
182 if(vorbis_synthesis(&
context->vb,
op) == 0)
188 while((
samples = vorbis_synthesis_pcmout(&
context->vd, &pcm)) > 0) {
196 *got_frame_ptr = total_samples > 0;
204 vorbis_block_clear(&
context->vb);
205 vorbis_dsp_clear(&
context->vd);
206 vorbis_info_clear(&
context->vi) ;
207 vorbis_comment_clear(&
context->vc) ;
214 .
p.
name =
"libvorbis",
static void error(const char *err)
vorbis_dsp_state vd
DSP state used for analysis
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
int sample_rate
samples per second
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce output
static int oggvorbis_decode_init(AVCodecContext *avccontext)
This structure describes decoded (raw) audio or video data.
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
enum AVChannelOrder order
Channel order used in this layout.
int nb_channels
Number of channels in this layout.
vorbis_info vi
vorbis_info used during init
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
vorbis_block vb
vorbis_block used for analysis
AVCodec p
The public AVCodec.
AVChannelLayout ch_layout
Audio channel layout.
static int ogg_packet(AVFormatContext *s, int *sid, int *dstart, int *dsize, int64_t *fpos)
find the next Ogg packet
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define FF_CODEC_DECODE_CB(func)
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_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define CODEC_LONG_NAME(str)
static int conv(int samples, float **pcm, char *buf, int channels)
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 keep it simple and lowercase description are in without and describe what they for example set the foo of the bar offset is the offset of the field in your context
Rational number (pair of numerator and denominator).
static int oggvorbis_decode_frame(AVCodecContext *avccontext, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
int(* init)(AVBSFContext *ctx)
const FFCodec ff_libvorbis_decoder
enum AVSampleFormat sample_fmt
audio sample format
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
vorbis_comment vc
VorbisComment info
int nb_samples
number of audio samples (per channel) described by this frame
#define i(width, name, range_min, range_max)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
@ AV_SAMPLE_FMT_S16
signed 16 bits
const char * name
Name of the codec implementation.
main external API structure.
FFmpeg currently uses a custom build this text attempts to document some of its obscure features and options Makefile the full command issued by make and its output will be shown on the screen DBG Preprocess x86 external assembler files to a dbg asm file in the object which then gets compiled Helps in developing those assembler files DESTDIR Destination directory for the install useful to prepare packages or install FFmpeg in cross environments GEN Set to ‘1’ to generate the missing or mismatched references Makefile builds all the libraries and the executables fate Run the fate test note that you must have installed it fate list List all fate regression test targets install Install headers
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
#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
static int oggvorbis_decode_close(AVCodecContext *avccontext)
This structure stores compressed data.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.