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-04-26Fix apparently exploitable race condition.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-03-18consolidate .gitignore patters into a single fileJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 2c3589bfda036c7827ded0bf38b16dfe7630bae1) Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-03-18convert svn:ignore properties to .gitignore filesJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net> (cherry picked from commit 348b8218f7a59374355c966dbe3b851a7275f952)
2010-06-15Fix symbol version compat wrappers on systems with export prefixesReinhard Tartler
backport r23615 by mru Originally committed as revision 23617 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-06-15Add compatibility wrappers for functions moved from lavf to lavcReinhard Tartler
When symbol versioning is enabled, moving symbols from one library to another breaks binary compatibility. This adds wrappers with the old version tag for the av_*packet functions recently moved to lavc. backport r23611 by mru Originally committed as revision 23613 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-24Convert NaN to 0/0 in av_d2qDiego Biurrun
This fixes aspect ratio calculation for encoding from files with 0/0 stored, common with ogg/theora backport r23280 by conrad Originally committed as revision 23283 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-21Clarify description for the MONOWHITE and MONOBLACK pixel formats.Reinhard Tartler
backport r23144 by stefano Originally committed as revision 23223 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-21Clarify descriptions for RGB4, BGR4, NV12, NV21,Reinhard Tartler
RGB48BE, and RGB48LE pixel formats. backport r23142 by stefano Originally committed as revision 23222 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-21bswap: 10L add missing parens around macro argsReinhard Tartler
backport r23070 by mru Originally committed as revision 23204 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-19Make av_strerror() return -1 even in the case when av_strerror_r() isReinhard Tartler
not defined. This allows applications to check if av_strerror() cannot provide a meaningful representation for the provided error code, without having to actually check the filled string. backport r23031 by stefano Originally committed as revision 23174 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
2010-05-04Make av_strerror() print an error message mentioning the error codeStefano Sabatini
number if strerror_r() did not succeed for whatever reason. This avoids the need for the application to fill the string in case strerror_r() fails, for example because the error code is not known. Originally committed as revision 23015 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29bswap: add macros to byteswap constantsMåns Rullgård
The normal byteswap functions might use inline asm which is suboptimal with constants (and cannot be used in static initialisers), so special macros for constants only is needed. We should not rely on the gcc __builtin_constant_p() test since it is not always available. Originally committed as revision 22990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29Fix typo.Jai Menon
Originally committed as revision 22988 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer
ABI issues. Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-28Drop AVERROR_NOTSUPP at the next major bump, use AVERROR(ENOSYS)Stefano Sabatini
instead which is semantically equivalent. See the thread: Subject: [FFmpeg-devel] [RFC] The meaning of AVERROR_NOTSUPP Date: Sat, 27 Mar 2010 00:51:13 +0100 Originally committed as revision 22981 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Reindent after r22968.Ronald S. Bultje
Originally committed as revision 22969 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-27Write clip-related decimal numbers into hex, where they make more sense.Ronald S. Bultje
Originally committed as revision 22968 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-26Fix broken 32-bit clipping, and write numbers in hex instead of decimal soRonald S. Bultje
they are easier to understand. Also give the add a 'u' postfix to silence a pre-c99 compiler warning. Originally committed as revision 22965 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-244th try at getting ansi colors working with a default of color=yes_please.Michael Niedermayer
Colors will only be used if the TERM env var is set and NO_COLOR is not set. Originally committed as revision 22957 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-23Trying _WIN32 for win32 detection.Michael Niedermayer
Originally committed as revision 22953 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Merge the 2 ANSI ESC codes.Michael Niedermayer
Originally committed as revision 22952 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Reenable ANSI colors, use method from VLC as suggested by ramiro.Michael Niedermayer
Please tell us asap if this breaks for your platform & terminal. Originally committed as revision 22951 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-23Disable ANSI color code until we figured out how to detect ANSI support inMichael Niedermayer
the used terminal. Originally committed as revision 22948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-22Coloring the log with ANSI.Michael Niedermayer
Ive checked this on black and white background and found no problem in terms of readability. flames welcome. Originally committed as revision 22946 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-04-15Add PIX_FMT_Y400A, 8bit gray, 8bit alphaAndreas Öman
Originally committed as revision 22881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-10Add M_SQRT2 to the constants in mathematics.h.Alex Converse
Originally committed as revision 22825 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-04-02av_builtin_constant_p()Michael Niedermayer
Originally committed as revision 22770 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Move AVMediaType from libavcodec to libavutil.Stefano Sabatini
This allows applications/libraries which require that symbol (e.g. libavfilter) to be compiled without to depend on the presence of libavcodec/avcodec.h, which may not be installed. Originally committed as revision 22736 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-30Replace @returns by @return.Benoit Fouet
Originally committed as revision 22729 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-26Implement av_strerror().Stefano Sabatini
Originally committed as revision 22684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-26Prefer '///< ...' doxygen inline syntax over '/**< ... */'.Stefano Sabatini
Originally committed as revision 22683 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-26Use consistent punctuation rules for the error message descriptions.Stefano Sabatini
Originally committed as revision 22682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-21Drop AVERROR_NOFMT at the next libavutil major bump.Stefano Sabatini
Originally committed as revision 22626 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-20Change the definition of AVERROR_INVALIDDATA at the next libavutilStefano Sabatini
major bump, using an FFmpeg specific error code rather than EINVAL, which has a quite different semantics. Originally committed as revision 22601 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-20Extend description for AVERROR_INVALIDDATA.Stefano Sabatini
Originally committed as revision 22600 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15error.h: test EDOM instead of EINVALMåns Rullgård
C99 doesn't require EINVAL, only EDOM, EILSEQ, and ERANGE. Originally committed as revision 22530 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15Add missing includes to libavutil/error.hMåns Rullgård
Originally committed as revision 22529 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-15Change the definition of AVERROR_NUMEXPECTED at the next libavutilStefano Sabatini
major bump, using an FFmpeg specific error code rather than EDOM, which has a quite different semantics. Originally committed as revision 22528 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-14Mark AVERROR_ENOENT for deletion at the next libavutil major bump.Stefano Sabatini
The symbol is currently unused, AVERROR(ENOENT) must be used instead. Originally committed as revision 22519 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-14Lexically sort the error code definitions.Stefano Sabatini
Originally committed as revision 22518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-13Mark AVERROR_ENOMEM to be deleted at the next major bump.Stefano Sabatini
AVERROR(ENOMEM) must be used instead, and there are no occurrences of AVERROR_ENOMEM in the FFmpeg basecode so it can be safely dropped. Originally committed as revision 22514 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-13Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and markStefano Sabatini
AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-13Make iff.c:decode_init return the value returned byStefano Sabatini
avctx->get_buffer() in case of error, rather than AVERROR_UNKNOWN which is deprecated, and mark AVERROR_UNKNOWN for deletion at the next major bump. Originally committed as revision 22512 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-13Add missing parentheses around the AVERROR_PATCHWELCOME macroStefano Sabatini
definition. Originally committed as revision 22502 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-13Move error code definitions from libavcodec/avcodec.h toStefano Sabatini
libavutil/error.h. Error code definitions and handling code belong to libavutil, where they can be shared by all the libav* libraries. See the thread: Subject: [FFmpeg-devel] [PATCH] Move error codes definitions from lavc to lavu Date: Sun, 19 Jul 2009 12:09:16 +0200 Originally committed as revision 22501 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11indentMåns Rullgård
Originally committed as revision 22451 to svn://svn.ffmpeg.org/ffmpeg/trunk