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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-14avutil/fifo: add function av_fifo_generic_peek_at()Zhang Rui
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-08-19avfilter: add showfreqs filterPaul B Mahol
2014-11-24avutil: remove FF_CONST_AVUTIL53, its no longer neededMichael Niedermayer
version is 54 already Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-20lavu/fifo: add av_fifo_alloc_array functionLukasz Marek
Allows to alloc fifo buffer by passing number of elements and size of element. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-05-14avutil/fifo: delay addition of const from ↵Michael Niedermayer
78d3453c4a2efef9bc079e8f3458653beafcf990 until next major ABI bump This unbreaks API, for example audacity has more build errors due to this Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-08lavu/fifo: add av_fifo_freep functionLukasz Marek
Function allows to free fifo and reset freed pointer. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-05-05lavu/fifo: add const to argumentsLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-23Merge commit '8b8899ac3233b4f7af83ded0dc032fad8902d714'Michael Niedermayer
* commit '8b8899ac3233b4f7af83ded0dc032fad8902d714': fate: Declare avcodec/avformat deps in the respective Makefile snippets fate: Add dependencies for WMA and WavPack tests Improve wording and spelling of av_log_missing_feature messages. lavu: remove disabled FF_API_AV_FIFO_PEEK cruft Conflicts: libavcodec/aacsbr.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-23lavu: remove disabled FF_API_AV_FIFO_PEEK cruftAnton Khirnov
2012-08-16Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: Fix even more missing includes after the common.h removal build: Factor out rangecoder dependencies to CONFIG_RANGECODER build: Factor out error resilience dependencies to CONFIG_ERROR_RESILIENCE x86: avcodec: Consistently name all init files Add more missing includes after removing the implicit common.h Add some more missing includes after removing the implicit common.h Don't include common.h from avutil.h rtmp: Automatically compute the hash for SWFVerification Conflicts: configure doc/APIchanges doc/examples/decoding_encoding.c libavcodec/Makefile libavcodec/assdec.c libavcodec/audio_frame_queue.c libavcodec/avpacket.c libavcodec/dv_profile.c libavcodec/dwt.c libavcodec/libtheoraenc.c libavcodec/rawdec.c libavcodec/rv40dsp.c libavcodec/tiff.c libavcodec/tiffenc.c libavcodec/v210dec.h libavcodec/vc1dsp.c libavcodec/x86/Makefile libavfilter/asrc_anullsrc.c libavfilter/avfilter.c libavfilter/buffer.c libavfilter/formats.c libavfilter/vf_ass.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_select.c libavfilter/video.c libavfilter/vsrc_testsrc.c libavformat/version.h libavutil/audioconvert.c libavutil/error.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-15fifo: add av_fifo_grow()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-08-30fifo: add note in av_fifo_realloc2() doxy regarding reallocation failure ↵Stefano Sabatini
behavior
2011-08-28Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: Use deinterleavers for demangling audio packets in RealMedia. vf_scale: don't leak SWS context. doxygen: drop another pointless star from pointer variable name Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-08-27doxygen: drop another pointless star from pointer variable nameDiego Biurrun
2011-08-27Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: fifo: add FIFO API test program, and fate test fifo: add av_fifo_peek2(), and deprecate av_fifo_peek() postprocess.c: filter name needs to be double 0 terminated doxygen: fix wrong comment syntax, //< vs. ///< doxygen: drop pointless star from pointer variable names Replace deprecated av_find_stream_info() by avformat_find_stream_info(). xmv: eliminate superfluous zeroing of zero data configure: fix typo in avconv dependency list Conflicts: configure doc/APIchanges libavutil/Makefile libavutil/avutil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-08-26fifo: add av_fifo_peek2(), and deprecate av_fifo_peek()Stefano Sabatini
The new function provides a more generic interface than av_fifo_peek() for peeking at a FIFO buffer data. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-26doxygen: drop pointless star from pointer variable namesDiego Biurrun
2011-08-14fifo: add av_fifo_peek2(), and deprecate av_fifo_peek()Stefano Sabatini
The new function provides a more flexible interface for peeking at a FIFO buffer data.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 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-04-07Clarify doxy for av_fifo_alloc().Stefano Sabatini
Originally committed as revision 22812 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Replace many includes of libavutil/common.h with what is actually neededMåns Rullgård
This reduces the number of false dependencies on header files and speeds up compilation. Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-25Extend doxy for the src parameter of av_fifo_generic_write().Stefano Sabatini
@patchby Tomas Härdin |tomas dot hardin at codemill dot se| Originally committed as revision 22043 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-03Implement av_fifo_space().Olivier Guilyardi
Patch by Olivier Guilyardi list et samalyse DOT c0m. Originally committed as revision 18321 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-09Reorder arguments for av_fifo_generic_read to be more logical andReimar Döffinger
consistent with av_fifo_generic_write. Originally committed as revision 17914 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-09Add av_fifo_reset function to completely reset fifo state, which makesReimar Döffinger
it easier to reuse the fifo. Originally committed as revision 17901 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-08Remove more functions disabled by major version bump.Reimar Döffinger
Originally committed as revision 17876 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-08Remove av_fifo_read, API is already broken and major version will be bumped ↵Reimar Döffinger
soon. Originally committed as revision 17870 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-08Allocate AVFifoBuffer through the fifo API to reduce future API/ABI issues.Michael Niedermayer
Yes this breaks ABI/API but ive already broken it and will bump avutil major soon. Originally committed as revision 17869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-08Try to fix the 1 byte cannot be used issue.Michael Niedermayer
Originally committed as revision 17865 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-28spelling/grammar/consistency review part IDiego Biurrun
Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-25Drop deprecated av_fifo_write function with the next libavutil version bump.Diego Biurrun
Originally committed as revision 16782 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-13add the necessary include for LIBAV*_VERSION_*Aurelien Jacobs
Originally committed as revision 16571 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Globally rename the header inclusion guard names.Stefano Sabatini
Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-20Deprecate av_fifo_realloc(). av_fifo_realloc2() should be used instead.Stefano Sabatini
Originally committed as revision 14855 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-19Implement av_fifo_realloc2().Stefano Sabatini
Originally committed as revision 14846 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-26Ensure that one can store X bytes in a fifo of size X.Michael Niedermayer
Fixed issue417. Originally committed as revision 13405 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-03add necessary #includes in headersMåns Rullgård
Originally committed as revision 13043 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-09cosmetics (by Björn Axelsson)Benoit Fouet
Originally committed as revision 12774 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-09Add a generic write function to av_fifo.Björn Axelsson
Patch by Björn Axelsson: bjorn axelsson intinor se Original thread: [FFmpeg-devel] [RFC][PATCH] av_fifo_write_from_bytestream() Date: 04/03/2008 12:14 PM Originally committed as revision 12773 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun
Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17include all prerequisites in header filesMåns Rullgård
Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-02Improve Doxygen documentation, inspired by Michael's description.Diego Biurrun
Originally committed as revision 8187 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-27Doxygen documentation for all functions, patch by Dujardin Bernard,Dujardin Bernard
dujardin.iut numericable fr with some further changes by me. Originally committed as revision 8151 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-27Add missing license headers.Diego Biurrun
Originally committed as revision 8149 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-21 * Moving FifoBuffer out of libavformat/avformat.h andRoman Shaposhnik
libavformat/utils.c into libavutil Originally committed as revision 6310 to svn://svn.ffmpeg.org/ffmpeg/trunk