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
2011-02-17Merge libavcore into libavutilReinhard Tartler
Done to keep ABI compatible. Otherwise this is just silly
2010-11-21Use the new libavcore audio channel API.Stefano Sabatini
This also allows to remove a linking dependency of libavfilter on libavcodec. Originally committed as revision 25789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-21Move audio channel API from libavcodec to libavcore.Stefano Sabatini
Originally committed as revision 25787 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-11-03Implement functions:Stefano Sabatini
av_get_sample_fmt_name() av_get_sample_fmt() av_get_sample_fmt_string() in libavcore, and deprecate the corresponding libavcodec/audioconvert.h functions: avcodec_get_sample_fmt_name() avcodec_get_sample_fmt() avcodec_sample_fmt_string() Originally committed as revision 25653 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-26Implement avcodec_get_channel_layout().S.N. Hemanth Meenakshisundaram
Patch by S.N. Hemanth Meenakshisundaram smeenaks:ucsd+edu. Originally committed as revision 24936 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Workaround for missing llrintf()Måns Rullgård
Originally committed as revision 22954 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-21Move clipping of audio samples (for those codecs outputting float) from decoderRonald S. Bultje
to the audio conversion routines. Originally committed as revision 22937 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-02-28Make function get_channel_name() static: It is only used in audioconvert.c.Carl Eugen Hoyos
Originally committed as revision 22114 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-14Do not guess the channel layout when getting its string value.Justin Ruggles
Originally committed as revision 19185 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-13Remove the 3-front-channel layout from the list of channel layoutJustin Ruggles
aliases. Calling this "surround" is confusing and questionable. Originally committed as revision 19183 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-19Check that channel layout is compatible with number of channels forJustin Ruggles
output audio stream. Originally committed as revision 18621 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-18Add 3 channel layout convenience macros.Justin Ruggles
Originally committed as revision 18609 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Add names for 5.0 and 5.1 back speaker channel layouts.Justin Ruggles
Originally committed as revision 18459 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-10Replace snprintf() with av_strlcpy().Patrik
Fixes the following warning on some systems: audioconvert.c:131: warning: format not a string literal and no format arguments Patch by Patrik patrik A yes D nu Originally committed as revision 17110 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-22Add const, remove warning:Baptiste Coudurier
libavcodec/audioconvert.c:190: warning: initialization discards qualifiers from pointer target type Originally committed as revision 16716 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-20Use "" instead of <> when #including non-system headers.Diego Biurrun
Originally committed as revision 16689 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-17One const is enough.Carl Eugen Hoyos
Originally committed as revision 15847 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-03Change multichannel API define prefix from "CHANNEL_" to "CH_".Andreas Öman
Originally committed as revision 15768 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-01Add audio channel layout API to libavcodec.Peter Ross
Originally committed as revision 15762 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-02Remove duplicate "const" qualifier for *matrix.Diego Pettenò
This silences out a warning when compiling with Intel C Compiler. Patch by Diego 'Flameeyes' Pettenò %flameeyes A gmail P com% Originally committed as revision 15524 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Drop deprecated SAMPLE_FMT_S24.Michael Niedermayer
Originally committed as revision 15264 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-19Add SAMPLE_FMT_DBL.Peter Ross
Originally committed as revision 14832 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-01Modify av_audio_convert() to use AVAudioConvert context struct; add ↵Peter Ross
av_audio_convert_alloc() and av_audio_convert_free() support functions. Originally committed as revision 14496 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-01Revert r14484 hunk that deleted the 'include avcodec.h' statement.Peter Ross
Originally committed as revision 14495 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Add sample format support functions: avcodec_get_sample_fmt_name(), ↵Peter Ross
avcodec_get_sample_fmt(), avcodec_sample_fmt_string() Originally committed as revision 14484 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-12misc spelling fixesDiego Biurrun
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-20cosmeticsMichael Niedermayer
Originally committed as revision 6032 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-20audio format conversionMichael Niedermayer
untested and unused Originally committed as revision 6029 to svn://svn.ffmpeg.org/ffmpeg/trunk