Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-03-09lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov
2013-01-14lavc: Fix assignments in if() when calling ff_af_queue_addMichael Niedermayer
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-06libvorbis: use planar sample formatJustin Ruggles
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-03-21libvorbis: use AVCodec.encode2()Justin Ruggles
2012-02-29libvorbis: add/update error messagesJustin Ruggles
also use AVERROR codes for some return values instead of -1
2012-02-29libvorbis: use AVFifoBuffer for output packet bufferJustin Ruggles
simplifies the code and does less memmove()
2012-02-29libvorbis: remove unneeded e_o_s checkJustin Ruggles
vorbis_bitrate_flushpacket() does not return any packets that should not be output in the bitstream.
2012-02-29libvorbis: check return values for functions that can return errorsJustin Ruggles
2012-02-29libvorbis: use float input instead of s16Justin Ruggles
libvorbis takes float input, so we can just deinterleave/reorder the input as-is instead of also converting.
2012-02-29libvorbis: do not flush libvorbis analysis if dsp state was not initializedJustin Ruggles
Fixes a segfault if init() fails before initializing the dsp state
2012-02-29libvorbis: use VBR by default, with default quality of 3Justin Ruggles
2012-02-29libvorbis: fix use of minrate/maxrate AVOptionsJustin Ruggles
- enable the options for audio encoding - properly check for user-set maxrate - use correct calling order in vorbis_encode_setup_managed()
2012-02-29libvorbis: cosmetics: renaming/pretty-printing/comments/unused codeJustin Ruggles
2012-02-25libvorbis: improve error checking in oggvorbis_encode_init()Justin Ruggles
2012-02-25audio encoders: do not set coded_frame->key_frame.Justin Ruggles
it is already set in avcodec_alloc_frame()
2012-02-21avcodec: add ff_samples_to_time_base() convenience function to internal.hJustin Ruggles
2011-12-31cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun
2011-12-30libvorbis: K&R reformatting cosmeticsDiego Biurrun
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-09-24Use explicit struct initializers for AVCodec declarations.Diego Biurrun
2011-07-04vorbis: vpxenc: Add missing include for av_rescale*Robert Swain
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-10AVOptions: make default_val a union, as proposed in AVOption2.Anton Khirnov
This breaks API and ABI.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-12-30Add audio flag to libvorbis AVOption.Justin Ruggles
Originally committed as revision 26165 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-12Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini
SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-14Fix crash when using iblock option (when a warning is logged).James Zern
Patch by James Zern, jzern google Originally committed as revision 25472 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-29Allow setting the impulse block bias for libvorbis through a private codec ↵Michael Niedermayer
parameter. First example and test of private codec parameters. Originally committed as revision 25258 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-21remove an unneeded av_realloc()Pascal Massimino
Originally committed as revision 24375 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-11add some buffer checksPascal Massimino
Originally committed as revision 24184 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-11use avccontext->frame_size where appropriatePascal Massimino
Originally committed as revision 24183 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-27Fix libvorbis encoding with more than 2 channelsJames Darnley
Fixes issue 1325. Patch by James Darnley, james dot darnley at gmail Originally committed as revision 23818 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-22libvorbis: Only drop 1-byte packets at end of streamMartin Storsjö
This fixes handling of totally silent packets during the encoding, that also are 1 byte in size. This fixes issue 2013 Originally committed as revision 23693 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-16libvorbis: Use memmove instead of memcpy for shifting dataMartin Storsjö
Originally committed as revision 23631 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-05libvorbis: Disable strict bitrate management when not requestedDavid Conrad
This is 3 times faster in a quick benchmark Originally committed as revision 23471 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-05libvorbis: OV_ECTL_RATEMANAGE_AVG is depreciated in favor ofDavid Conrad
OV_ECTL_RATEMANAGE2_SET Originally committed as revision 23470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-05libvorbis: Hook up min/max bitrateDavid Conrad
Originally committed as revision 23469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger
.data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-01add missing \n to error messageBaptiste Coudurier
Originally committed as revision 19313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-22Add missing av_cold in static init/close functions.Daniel Verkamp
Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-10libvorbis: Use 0-10 range for audio quality.Nicolas George
Patch by Nicolas George (nicolas george normalesup org) Originally committed as revision 17107 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-27Fix filenames in Doxygen comments.Diego Biurrun
Originally committed as revision 16811 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-15Cosmetics: fix indentation after previous commit.Benoit Fouet
Originally committed as revision 15621 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-15Add a flag to avoid calling vorbis_analysis_wrote twice with an empty buffer.Nicolas George
Patch by Nicolas George: name surname normalesup org Originally committed as revision 15620 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Modify all codecs to report their supported input and output sample format(s).Peter Ross
Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk