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-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-30os_support: make poll() fallbacks conditional on CONFIG_NETWORKMans Rullgard
poll() is only used by networking code, so the fallback should only be built if networking is enabled. Also remove CONFIG_FFSERVER condition from the declarations. This should fix building on systems without poll(), broken by a8475bbdb64e638bd8161df9647876fd23f8a29a. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit 362d8f7d9e6a3bca2ce89f767d153d3ab8bf5773)
2011-01-28os_support: make poll() fallbacks conditional on CONFIG_NETWORKMans Rullgard
poll() is only used by networking code, so the fallback should only be built if networking is enabled. Also remove CONFIG_FFSERVER condition from the declarations. This should fix building on systems without poll(), broken by a8475bbdb64e638bd8161df9647876fd23f8a29a. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-09-04Move INET6_ADDRSTRLEN to network.h, similar to other network-related fixupsRonald S. Bultje
for broken OSes. This is included in rtsp.h, as opposed to os_support.h. Should fix OS/2 broken build on fate. Originally committed as revision 25035 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-03Send NAT punching messages to the address specified in the Transport:John Wimer
message, if available (RFC 2326, section 12.39), fixes issue 2212. Patch by John Wimer <john at god vtic net>. Originally committed as revision 25032 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-10Remove support for pre-Haiku, non-POSIX, non-C99 BeOS variants.Diego Biurrun
BeOS support has been broken for many years and the "maintainer" of the port has not reacted to countless requests to get the port fixed. approved by Mans Originally committed as revision 23562 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-04win32: Use _fstati64() instead of plain old fstat() on Windows to support filekemuri
sizes greater than 4gb. Patch by kemuri <kemuri9 at gmail dot com> Originally committed as revision 23448 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
2009-10-21Add comment on #endif about condition that triggers it.Ramiro Polla
Originally committed as revision 20337 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-13Only #define lseek to _lseeki64 on MinGW, not MinGW CE.İsmail Dönmez
This fixes compilation on WinCE, which does not support _lseeki64. patch by Ismail Dönmez, ismail namtrac org Originally committed as revision 19425 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-24Fix undefined preprocessor directives warnings during 'make checkheaders'.Diego Biurrun
Originally committed as revision 16747 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-03Delete unnecessary 'extern' keywords.Diego Biurrun
Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-10Only special-case absolute DOS paths on systems that support them.Ramiro Polla
Originally committed as revision 15594 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-02MinGW runtime 3.15 has a wrapper for usleep().Ramiro Polla
Originally committed as revision 15522 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-02Revert r14497Michael Niedermayer
Log: Add missing header #includes. Policy violation (change not approved by maintainer) and while discussions where ongoing and no consensus has been reached. Originally committed as revision 14500 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-01Add missing header #includes.Diego Biurrun
Originally committed as revision 14497 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-22typo: occured --> occurredDiego Biurrun
Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08Define WIN32_LEAN_AND_MEAN before including windows.h to excludeRamiro Polla
rarely-used header files. Originally committed as revision 12378 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08Include windows.h instead of trying to redeclare SleepRamiro Polla
os_support.h used to be included in all lavf files, and including windows.h here caused a significant slowdown. Originally committed as revision 12377 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08Put network-related code under #ifdefRamiro Polla
Originally committed as revision 12372 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-08Group network-related code togetherRamiro Polla
Originally committed as revision 12371 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-07__stdcall -> WINAPIRamiro Polla
Windows x64 has no __stdcall. It is not yet supported, but someday it might... Originally committed as revision 12363 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13Include poll.h instead of sys/poll.hLuca Abeni
Originally committed as revision 11924 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-02Add portable way to check for the existence of definitions andDave Yeo
apply it to socklen_t. patch by Dave Yeo, daveryeo telus net Originally committed as revision 11366 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-24djgpp port, first partMichael Kostylev
patch by Michael Kostylev, mik niipt ru Originally committed as revision 11313 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-27Remove possibly misleading comments.Diego Biurrun
Originally committed as revision 11095 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-08-09use proper closesocket definesAlex Beregszaszi
Originally committed as revision 9992 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-08Check for winsock2.h instead of __MINGW32__Ramiro Polla
Originally committed as revision 9988 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-11Remove OS/2 supportRamiro Polla
Originally committed as revision 9586 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-02Remove leading underscores from specifiers, they are reserved.Diego Biurrun
Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-24BeOS only: we don't have SA_RESTART. #define to 0 and emit a warning. I ↵François Revol
don't plan on hosting a streaming tv anyway but it gets ffserver building. Originally committed as revision 8103 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-15Make sure we don't try to emulate poll() when it's there if ↵François Revol
--disable-ffserver... 10l Originally committed as revision 7991 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-15MinGW patch by <koyama AT infocity DOT co DOT jp>, reworked. Removed ↵François Revol
placeholder for winsock. Originally committed as revision 7990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-15poll() emulation for BeOS, and maybe MinGW.François Revol
Originally committed as revision 7987 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-18The long awaited BeOS cleanup, phase 1François Revol
Originally committed as revision 7581 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-23support files >2GB on MinGWRamiro Polla
patch by Ramiro Polla, angustia arrozcru.no-ip org Originally committed as revision 7362 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-09-10Add official LGPL license headers to the files that were missing them.Diego Biurrun
Originally committed as revision 6219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-04-24cygwin patch by ("Sascha Sommer" <saschasommer at freenet dot de>)Sascha Sommer
Originally committed as revision 3053 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-09simpler strptime - added os_support.[ch] - moved localtime_r to os_support.cFabrice Bellard
Originally committed as revision 2228 to svn://svn.ffmpeg.org/ffmpeg/trunk