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 (Expand)Author
2010-06-05Move eval.c and eval.h from libavcodec to libavutil, and make the evalStefano Sabatini
2010-06-01Fix eval-test compilation.Stefano Sabatini
2010-06-01Cosmetics: reindent and break some overly long line.Stefano Sabatini
2010-06-01Cosmetics: consistently apply K&R style.Stefano Sabatini
2010-06-01Cosmetics: rename ff_parse_expr() and ff_parse_and_eval_expr() parameters:Stefano Sabatini
2010-06-01Make ff_parse_expr() and ff_parse_and_eval_expr() return an intStefano Sabatini
2010-05-20Change eval API to take parent log context and log level offset.Michael Niedermayer
2010-05-17Change the order of parameters for ff_eval_expr() andStefano Sabatini
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
2010-04-13Fix constness for func[12] parameters in ff_parse_expr() andStefano Sabatini
2010-04-12Change constness for func[12]_name parameters of ff_parse_expr() andStefano Sabatini
2010-04-12Rename ff_parse() to ff_parse_expr().Stefano Sabatini
2010-04-12Remove unnecessary header inclusion directives.Stefano Sabatini
2010-04-12Rename ff_eval2() to ff_parse_and_eval_expr().Stefano Sabatini
2010-04-12Rename ff_parse_eval() to ff_eval_expr().Stefano Sabatini
2010-04-12Remove redundant file descriptions from copyright headers.Stefano Sabatini
2010-04-11Avoid the use of the symbol ff_expr_s for referencing AVExpr.Stefano Sabatini
2010-04-11Rename ff_eval_free() to ff_free_expr().Stefano Sabatini
2010-04-11Rename AVEvalExpr to AVExpr, as suggested by Michael.Stefano Sabatini
2009-09-12eval: Check for return value of memory allocations.Ramiro Polla
2009-08-20eval: replace variable-length array with av_malloc/freeMåns Rullgård
2009-08-10eval: include libavutil/mathematics.h for NAN and M_PIMåns Rullgård
2009-08-10eval: include our headers after system headersMåns Rullgård
2009-06-23Export av_strtod() to eval.h.Stefano Sabatini
2009-06-22Cosmetics: rename 'name' av_strtod() param to 'numstr'. The new nameStefano Sabatini
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
2008-12-14Add a few const qualifiers in appropriate places.Anders Grönberg
2008-11-05Fix test program build: ff_eval was replaced by ff_eval2.Diego Biurrun
2008-09-08Remove stuff under #if LIBAVCODEC_VERSION_INT.Michael Niedermayer
2008-06-25mark read-only data as constStefan Gehrer
2008-05-21Improve parse_primary() error message.Stefano Sabatini
2008-03-05remove more useless mpegvideo.h includesAurelien Jacobs
2008-02-15FixLuca Abeni
2008-02-04constMichael Niedermayer
2008-01-22Fix warnings in test code:Diego Biurrun
2007-11-23main() --> main(void)Diego Biurrun
2007-07-05license header consistency cosmeticsDiego Biurrun
2007-02-25Add av_ prefix to clip functionsReimar Döffinger
2007-01-17fix a gcc warning, avoid an unnecessary operationLuca Barbato
2006-10-29update copyright year, it looks odd otherwise :)Michael Niedermayer
2006-10-28I hope noone minds, adding myself to eval.c copyright...Oded Shimon
2006-10-28ignore whitespace in ff_evalOded Shimon
2006-10-28add missing 'e->value * 'Oded Shimon
2006-10-28shut gcc warning, also makes sense for NAN to be returned if the loop was nev...Oded Shimon
2006-10-28add support for while() loops again ugly syntax while(condition, statements) ...Michael Niedermayer
2006-10-28support seperating expressons by ;Michael Niedermayer
2006-10-28possible bug of 'gte' being read as 'gt', same with 'lte'Oded Shimon
2006-10-28minor simplificationMichael Niedermayer
2006-10-28factorize AVEvalExpr alloc and initMichael Niedermayer
2006-10-27new optimized eval method, by seperating parsing and runtimeOded Shimon