- 07 Apr, 2016 1 commit
-
-
Diego Biurrun authored
This avoids spurious library rebuilds when only the test program code is changed and simplifies the build system.
-
- 23 Mar, 2016 1 commit
-
-
Diego Biurrun authored
-
- 21 Jul, 2015 1 commit
-
-
Luca Barbato authored
uhd1 and uhd2 would be ambigous.
-
- 20 Jul, 2015 1 commit
-
-
Luca Barbato authored
Add DCI 2k and 4k and uhd1 and uhd2.
-
- 07 Apr, 2015 1 commit
-
-
Luca Barbato authored
And use it in libavformat. Based on a similar patch by Stefano Sabatini <stefasab@gmail.com>.
-
- 06 Apr, 2015 1 commit
-
-
Luca Barbato authored
The strptime implementation is supposed to support whitespace and %T.
-
- 14 Feb, 2015 1 commit
-
-
Diego Biurrun authored
-
- 25 Oct, 2014 1 commit
-
-
Martin Storsjö authored
gmtime isn't thread safe in general. In msvcrt (which lacks gmtime_r), the buffer used by gmtime is thread specific though. One call to localtime is left in avconv_opt.c, where thread safety shouldn't matter (instead of making avconv depend on the libavutil internal header). Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 12 Dec, 2013 1 commit
-
-
Vittorio Giovara authored
-
- 07 Mar, 2013 1 commit
-
-
Reimar Döffinger authored
Make sure the behavior does not change with the locale. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 04 Dec, 2012 1 commit
-
-
Anton Khirnov authored
-
- 11 Oct, 2012 2 commits
-
-
Mans Rullgard authored
- make tables static const - remove useless use of compound literal - break long lines - fix a comma/semicolon typo Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
The const qualifier is still removed although it happens inside the strtol() function so no warning is generated. Fixes: libavutil/parseutils.c:110:11: warning: assignment discards qualifiers from pointer target type Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 10 Oct, 2012 1 commit
-
-
Mans Rullgard authored
The error codes differ between systems so printing the value makes the fate test fail on some systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 06 Oct, 2012 2 commits
-
-
Mans Rullgard authored
An alpha specifier outside the valid range results in a conversion from double to long with undefined result. Range-checking the double and only converting it after it passes avoids this. Fixes fate-parseutils errors on some systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
This guarantees stable output for comparing test results.
-
- 15 Aug, 2012 1 commit
-
-
Martin Storsjö authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 20 Jun, 2012 1 commit
-
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 28 Mar, 2012 1 commit
-
-
Diego Biurrun authored
Also remove one pointless zero initialization in rangecoder.c.
-
- 16 Nov, 2011 1 commit
-
-
Martin Storsjö authored
This is useful, since the normal timegm function isn't a standard function (requiring _BSD_SOURCE or _SVID_SOURCE on glibc to be visible, and not available on e.g. windows). The widely available function mktime uses the local time zone, which requires ugly workarounds to handle UTC time. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 06 Nov, 2011 1 commit
-
-
Reimar Döffinger authored
All current usages of it are incompatible with localization. For example strcasecmp("i", "I") != 0 is possible, but would break many of the places where it is used. Instead use our own implementations that always treat the data as ASCII. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 02 Nov, 2011 1 commit
-
-
Diego Biurrun authored
-
- 14 Jul, 2011 1 commit
-
-
Diego Biurrun authored
-
- 03 Jul, 2011 2 commits
-
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
These statements cannot be reached and are thus not needed. This removes a number of compiler warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 07 Jun, 2011 1 commit
-
-
Diego Biurrun authored
-
- 19 Mar, 2011 1 commit
-
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 17 Feb, 2011 1 commit
-
-
Anton Khirnov authored
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
-
- 16 Feb, 2011 1 commit
-
-
Stefano Sabatini authored
The new av_parse_time() is created in libavutil/parseutils.h, all the internal functions used by parse_date are moved to libavutil/parseutils.c and made static. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
- 15 Feb, 2011 1 commit
-
-
Reinhard Tartler authored
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-
- 17 Nov, 2010 1 commit
-
-
Aurelien Jacobs authored
Originally committed as revision 25761 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 08 Nov, 2010 1 commit
-
-
Stefano Sabatini authored
eval API. More grep-friendly and more consistent with the rest of the FFmpeg API. Originally committed as revision 25708 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 04 Oct, 2010 2 commits
-
-
Stefano Sabatini authored
Originally committed as revision 25334 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
Originally committed as revision 25333 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 01 Oct, 2010 1 commit
-
-
Stefano Sabatini authored
Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- 26 Jul, 2010 5 commits
-
-
Stefano Sabatini authored
av_parse_video_rate(). Simplify. Originally committed as revision 24524 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
num and den. Simplify. Originally committed as revision 24523 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
more consistent with the function names. Originally committed as revision 24522 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
AVERROR(EINVAL) rather than -1 in case of unsuccess. Originally committed as revision 24521 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Stefano Sabatini authored
in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
-