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
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
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-28Add long names to AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-04Remove libvorbis Vorbis decoding support. Our native decoder is completeDiego Biurrun
and has no known bugs, any remaining issues will hopefully be uncovered now. Originally committed as revision 10924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12various simplifications around recent av_clip_int16() usageAurelien Jacobs
Originally committed as revision 10080 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12use av_clip_int16() where it makes senseAurelien Jacobs
Originally committed as revision 10078 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05license header consistency cosmeticsDiego Biurrun
Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-06Give all wrappers for external libraries names starting with lib.Diego Biurrun
Originally committed as revision 9226 to svn://svn.ffmpeg.org/ffmpeg/trunk