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
2014-01-26avutil: remove timer.h include from internal.hJanne Grunau
Added libavutil/timer.h include to all files with {START,STOP}_TIMER.
2013-07-27eval: Explicitly ignore return value of strtod() in parse_db()Diego Biurrun
The return value is not needed. This fixes the warning: libavutil/eval.c:353:15: warning: ignoring return value of ‘strtod’
2013-03-07Use the avstring.h locale-independent character type functionsReimar Döffinger
Make sure the behavior does not change with the locale. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-05eval: treat dB as decibels instead of decibytesJustin Ruggles
2012-12-05Remove pointless #undefs of previously forbidden functions.Anton Khirnov
2012-10-13eval-test: make table static constMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-27eval: fix printing of NaN in eval fate test.Ronald S. Bultje
This fixes "make fate-eval" on MSVC builds. Without this, the test outputs "-1.#NaN" instead of "nan" on MSVS 2010.
2012-07-14eval: add gt(), gte(), lt() and lte() fate testsJanne Grunau
2012-07-14eval: fix swapping of lt() and lte()Max Lazarov
CC: libav-stable@libav.org
2012-07-04eval: Add the isinf() function and tests for itMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-01opt/eval: Include mathematics.h for NAN/INFINITYMartin Storsjö
These files use NAN/INFINITY but didn't include mathematics.h to get the fallback definitions if the system lacks the macros. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-21Mark mutable static data const where appropriate.Alex Converse
2011-09-22eval: test isnan(sqrt(-1)) instead of just sqrt(-1)Anton Khirnov
sqrt(-1) returns "some NaN", it's not specified which exactly.
2011-09-19eval: implement not() expressionStefano Sabatini
2011-09-19eval: add sqrt function for computing the square rootStefano Sabatini
2011-07-06eval: add missing comma to tests.Ronald S. Bultje
2011-07-06eval: fix memleak.Ronald S. Bultje
2011-07-04eval: clear Parser instances before usingMans Rullgard
This prevents random values from the stack being used as "variables" in expressions. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04eval: make timing optional in test programMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-04Do not include log.h in avutil.hMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-07Drop unnecessary directory prefixes from #include directives.Diego Biurrun
2011-04-19lavu: remove FF_API_OLD_EVAL_NAMES cruftAnton Khirnov
2011-04-10eval: add support for trunc, ceil, and floor functionsStefano Sabatini
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-11-08Use hierarchic names convention (prefix them with av_expr) for theStefano Sabatini
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
2010-11-03Implement isnan() function evaluation.Stefano Sabatini
Originally committed as revision 25666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-01Make strmatch() return 1 only if the string compared against theStefano Sabatini
prefix does not contain other characters which may belong to an identifier. This allows to distinguish for example to have different constants with the same prefix (e.g. "foo" and "foobar"). Originally committed as revision 25626 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-01Add st, ld, while examples/tests.Stefano Sabatini
Originally committed as revision 25625 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-01Add examples of unary operators.Stefano Sabatini
Originally committed as revision 25624 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-01Fix evaluation of expressions of the form: E1;E2.Stefano Sabatini
The pointer to the char ';' has to be increased before to evaluate ";E2". Originally committed as revision 25623 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-17Add more tests to eval, help detecting some of the more apparentStefano Sabatini
errors, far from being a complete test system. Originally committed as revision 23635 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-16Make av_parse_expr() fail if there are trailing chars at the end ofStefano Sabatini
the provided expression. Allow detection of mistyped expressions. Originally committed as revision 23629 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-16Improve av_parse_eval() error reporting.Stefano Sabatini
Originally committed as revision 23627 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-05Move eval.c and eval.h from libavcodec to libavutil, and make the evalStefano Sabatini
API public. Originally committed as revision 23485 to svn://svn.ffmpeg.org/ffmpeg/trunk