index
:
delta/ffmpeg.git
ffmpeg
h264_assembly
master
merge2
oldabi
release/0.10
release/0.11
release/0.5
release/0.6
release/0.7
release/0.8
release/0.9
release/1.0
release/1.1
release/1.2
release/2.0
release/2.1
release/2.2
release/2.3
release/2.4
release/2.5
release/2.6
release/2.7
release/2.8
release/3.0
release/3.1
release/3.2
release/3.3
release/3.4
release/4.0
release/4.1
release/4.2
release/4.3
release/4.4
release/5.0
release/5.1
release/6.0
git.ffmpeg.org: ffmpeg.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
libavcodec
/
eval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove explicit filename from Doxygen @file commands.
Diego Biurrun
2010-04-20
1
-1
/
+1
*
Fix constness for func[12] parameters in ff_parse_expr() and
Stefano Sabatini
2010-04-12
1
-6
/
+6
*
Change constness for func[12]_name parameters of ff_parse_expr() and
Stefano Sabatini
2010-04-12
1
-6
/
+6
*
Rename ff_parse() to ff_parse_expr().
Stefano Sabatini
2010-04-12
1
-2
/
+2
*
Remove unnecessary header inclusion directives.
Stefano Sabatini
2010-04-12
1
-7
/
+1
*
Rename ff_eval2() to ff_parse_and_eval_expr().
Stefano Sabatini
2010-04-11
1
-5
/
+5
*
Rename ff_parse_eval() to ff_eval_expr().
Stefano Sabatini
2010-04-11
1
-2
/
+2
*
Remove redundant file descriptions from copyright headers.
Stefano Sabatini
2010-04-11
1
-2
/
+0
*
Avoid the use of the symbol ff_expr_s for referencing AVExpr.
Stefano Sabatini
2010-04-11
1
-2
/
+2
*
Rename ff_eval_free() to ff_free_expr().
Stefano Sabatini
2010-04-11
1
-9
/
+9
*
Rename AVEvalExpr to AVExpr, as suggested by Michael.
Stefano Sabatini
2010-04-11
1
-24
/
+24
*
eval: Check for return value of memory allocations.
Ramiro Polla
2009-09-12
1
-0
/
+13
*
eval: replace variable-length array with av_malloc/free
Måns Rullgård
2009-08-19
1
-3
/
+9
*
eval: include libavutil/mathematics.h for NAN and M_PI
Måns Rullgård
2009-08-10
1
-8
/
+1
*
eval: include our headers after system headers
Måns Rullgård
2009-08-10
1
-3
/
+3
*
Export av_strtod() to eval.h.
Stefano Sabatini
2009-06-22
1
-5
/
+1
*
Cosmetics: rename 'name' av_strtod() param to 'numstr'. The new name
Stefano Sabatini
2009-06-21
1
-3
/
+3
*
Use full internal pathname in doxygen @file directives.
Diego Biurrun
2009-02-01
1
-1
/
+1
*
Add a few const qualifiers in appropriate places.
Anders Grönberg
2008-12-14
1
-8
/
+8
*
Fix test program build: ff_eval was replaced by ff_eval2.
Diego Biurrun
2008-11-05
1
-4
/
+4
*
Remove stuff under #if LIBAVCODEC_VERSION_INT.
Michael Niedermayer
2008-09-08
1
-14
/
+0
*
mark read-only data as const
Stefan Gehrer
2008-06-24
1
-1
/
+1
*
Improve parse_primary() error message.
Stefano Sabatini
2008-05-21
1
-1
/
+1
*
remove more useless mpegvideo.h includes
Aurelien Jacobs
2008-03-05
1
-1
/
+0
*
Fix
Luca Abeni
2008-02-15
1
-2
/
+2
*
const
Michael Niedermayer
2008-02-03
1
-4
/
+4
*
Fix warnings in test code:
Diego Biurrun
2008-01-22
1
-1
/
+2
*
main() --> main(void)
Diego Biurrun
2007-11-23
1
-1
/
+1
*
license header consistency cosmetics
Diego Biurrun
2007-07-05
1
-1
/
+0
*
Add av_ prefix to clip functions
Reimar Döffinger
2007-02-25
1
-2
/
+2
*
fix a gcc warning, avoid an unnecessary operation
Luca Barbato
2007-01-16
1
-1
/
+1
*
update copyright year, it looks odd otherwise :)
Michael Niedermayer
2006-10-28
1
-1
/
+1
*
I hope noone minds, adding myself to eval.c copyright...
Oded Shimon
2006-10-28
1
-0
/
+1
*
ignore whitespace in ff_eval
Oded Shimon
2006-10-28
1
-1
/
+6
*
add missing 'e->value * '
Oded Shimon
2006-10-28
1
-1
/
+1
*
shut gcc warning, also makes sense for NAN to be returned if the loop was nev...
Oded Shimon
2006-10-28
1
-1
/
+1
*
add support for while() loops again ugly syntax while(condition, statements) ...
Michael Niedermayer
2006-10-27
1
-1
/
+8
*
support seperating expressons by ;
Michael Niedermayer
2006-10-27
1
-4
/
+23
*
possible bug of 'gte' being read as 'gt', same with 'lte'
Oded Shimon
2006-10-27
1
-2
/
+2
*
minor simplification
Michael Niedermayer
2006-10-27
1
-5
/
+2
*
factorize AVEvalExpr alloc and init
Michael Niedermayer
2006-10-27
1
-19
/
+14
*
new optimized eval method, by seperating parsing and runtime
Oded Shimon
2006-10-27
1
-64
/
+194
*
fix -a^b which was interpreted as (-a)^b
Michael Niedermayer
2006-10-16
1
-7
/
+10
*
asin() acos() atan()
Michael Niedermayer
2006-10-16
1
-0
/
+3
*
mod()
Michael Niedermayer
2006-10-16
1
-0
/
+1
*
Change license headers to say 'FFmpeg' instead of 'this program/this library'
Diego Biurrun
2006-10-07
1
-4
/
+6
*
Remove unused variables and the corresponding warnings along with them.
Diego Biurrun
2006-10-03
1
-1
/
+0
*
Break compatibility only when first part of version number changes, in this
Panagiotis Issaris
2006-09-27
1
-1
/
+1
*
Make AVOption parsign code use ff_eval2()
Panagiotis Issaris
2006-09-27
1
-2
/
+60
*
Fix compilation by postponing deprecation of ff_eval() until the next version
Panagiotis Issaris
2006-09-27
1
-1
/
+1
[next]