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
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
2008-12-14Add a few const qualifiers in appropriate places.Anders Grönberg
patch by Anders Grönberg, galileo.m2 gmail com Originally committed as revision 16120 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-05Fix test program build: ff_eval was replaced by ff_eval2.Diego Biurrun
Originally committed as revision 15775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Remove stuff under #if LIBAVCODEC_VERSION_INT.Michael Niedermayer
Originally committed as revision 15263 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25mark read-only data as constStefan Gehrer
Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-21Improve parse_primary() error message.Stefano Sabatini
Patch by Stefano Sabatini and Michael Niedermayer Originally committed as revision 13218 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-05remove more useless mpegvideo.h includesAurelien Jacobs
Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15FixLuca Abeni
utils.c: In function ‘avcodec_get_context_defaults2’: utils.c:793: warning: assignment discards qualifiers from pointer target type Originally committed as revision 11938 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-04constMichael Niedermayer
Originally committed as revision 11840 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-22Fix warnings in test code:Diego Biurrun
eval.c:454: warning: return type defaults to 'int' eval.c:464: warning: control reaches end of non-void function Originally committed as revision 11594 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-23main() --> main(void)Diego Biurrun
Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05license header consistency cosmeticsDiego Biurrun
Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-25Add av_ prefix to clip functionsReimar Döffinger
Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-17fix a gcc warning, avoid an unnecessary operationLuca Barbato
Originally committed as revision 7555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-29update copyright year, it looks odd otherwise :)Michael Niedermayer
Originally committed as revision 6830 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28I hope noone minds, adding myself to eval.c copyright...Oded Shimon
Originally committed as revision 6827 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28ignore whitespace in ff_evalOded Shimon
Originally committed as revision 6821 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28add missing 'e->value * 'Oded Shimon
Originally committed as revision 6819 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28shut gcc warning, also makes sense for NAN to be returned if the loop was ↵Oded Shimon
never executed Originally committed as revision 6818 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28add support for while() loops again ugly syntax while(condition, statements) ↵Michael Niedermayer
but very simple implementation Originally committed as revision 6814 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28support seperating expressons by ;Michael Niedermayer
support variables, the syntax isnt beautifull (st(a,b) means var[a]=b and ld(a) var[a]) but for a mere 19 lines of code its fairly simple, if anyone wants to write real variables support with names for variables and = and [] then that would of course be welcome but only if it doesnt bloat the code up terribly...) Originally committed as revision 6813 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28possible bug of 'gte' being read as 'gt', same with 'lte'Oded Shimon
Originally committed as revision 6811 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28minor simplificationMichael Niedermayer
Originally committed as revision 6810 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-28factorize AVEvalExpr alloc and initMichael Niedermayer
Originally committed as revision 6809 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-27new optimized eval method, by seperating parsing and runtimeOded Shimon
Originally committed as revision 6803 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-16fix -a^b which was interpreted as (-a)^bMichael Niedermayer
Originally committed as revision 6713 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-16asin() acos() atan()Michael Niedermayer
Originally committed as revision 6712 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-16mod()Michael Niedermayer
Originally committed as revision 6710 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-10-03Remove unused variables and the corresponding warnings along with them.Diego Biurrun
Originally committed as revision 6536 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-28Break compatibility only when first part of version number changes, in thisPanagiotis Issaris
specific case for ff_eval deprecation. Originally committed as revision 6358 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-28Make AVOption parsign code use ff_eval2()Panagiotis Issaris
Originally committed as revision 6357 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-27Fix compilation by postponing deprecation of ff_eval() until the next versionPanagiotis Issaris
increment. Originally committed as revision 6352 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-27Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.Panagiotis Issaris
Instead, error messages are passed upward by means of a struct member variable. Originally committed as revision 6348 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-24Missing extern declaration for av_strtod.Panagiotis Issaris
Originally committed as revision 6327 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-24cosmeticMichael Niedermayer
Originally committed as revision 6326 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-24segfault fixMichael Niedermayer
thanks to takis for finding the cause of this Originally committed as revision 6325 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-23Define NAN -if not already defined- as 0.0/0.0Panagiotis Issaris
Originally committed as revision 6324 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-18Add support for SI (k, M, ...) and IEC/IEEE (Ki, Mi, ...) units.Panagiotis Issaris
Originally committed as revision 6287 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-17K prefixMichael Niedermayer
add SI prefix selftest Originally committed as revision 6286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-17support SI and some non SI prefixesMichael Niedermayer
Originally committed as revision 6284 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-17simplifyMichael Niedermayer
benchmark Originally committed as revision 3844 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-15simplifyMichael Niedermayer
Originally committed as revision 3841 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-15simplify, null pointer, selftestMichael Niedermayer
Originally committed as revision 3840 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-02-18avoid negative array indicesAlex Beregszaszi
Originally committed as revision 2794 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-11-03av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux
Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-03-06per file doxyMichael Niedermayer
Originally committed as revision 1634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-02-10* static,const,compiler warning cleanupZdenek Kabelac
Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk