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
2010-10-01add FF_API_SET_STRING_OLD define to disable the deprecated av_set_string APIAurelien Jacobs
Originally committed as revision 25276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Move AVOptions from libavcodec to libavutilMichael Niedermayer
Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24Deprecate av_opt_show() in favor of a new function av_opt_show2(),Stefano Sabatini
which allows to specify only a subset of all the options to show. Originally committed as revision 25166 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
2010-06-01Make ff_parse_expr() and ff_parse_and_eval_expr() return an intStefano Sabatini
containing an error code. Allow these functions to convey the reason of the failure to the calling function, failure which is not always due to a parsing error but it may depend for example on a memory problem. Also fix several potential memleaks. Originally committed as revision 23402 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-20Change eval API to take parent log context and log level offset.Michael Niedermayer
this is based on stefanos work, especially all bugs are his fault ;) Originally committed as revision 23201 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-17Change the order of parameters for ff_eval_expr() andStefano Sabatini
ff_parse_and_eval_expr(), place the names for constants/functions before the corresponding values. This looks more readable, as the user is expected to know the names before the values. Originally committed as revision 23149 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-12Rename ff_eval2() to ff_parse_and_eval_expr().Stefano Sabatini
The new name better expresses what the function does. Originally committed as revision 22845 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-27Fix misc typos, patch byStefano Sabatini
Fabian Greffrath base64_decode(PGZhYmlhbkBncmVmZnJhdGguY29tPg==). Originally committed as revision 21473 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-17Revert r20249, it seems the union trick works everywhereMichael Niedermayer
Original commit message: Very evil missuse of svn to test if AVOption and AVOption2 are compatible. If this test triggers anywhere for anyone, revert this commit immedeatly. Ill revert this in a day or 2, its just so we know beforehand if the idea with the union is doable or not without breaking ABI/API. Originally committed as revision 20264 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-16Very evil missuse of svn to test if AVOption and AVOption2 are compatible.Michael Niedermayer
If this test triggers anywhere for anyone, revert this commit immedeatly. Ill revert this in a day or 2, its just so we know beforehand if the idea with the union is doable or not without breaking ABI/API. Originally committed as revision 20249 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-06Revert:Michael Niedermayer
r18826 | stefano | 2009-05-14 20:50:58 +0200 (Thu, 14 May 2009) | 2 lines Make av_set_string3() print a message in case of unknown option. This change led to multiple identical error messages to be printed if an option was not found. Originally committed as revision 20172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-14Make av_set_string3() print a message in case of unknown option.Stefano Sabatini
Originally committed as revision 18826 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-14Provide a context to av_log() calls in av_set_number2() andStefano Sabatini
av_set_string3(). Originally committed as revision 18825 to svn://svn.ffmpeg.org/ffmpeg/trunk
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-23Revert r16257:Andreas Öman
Include "libavutil/common.h" where we use llrint() in case ffmpeg's own llrint() is to be used. Originally committed as revision 16282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-22Include "libavutil/common.h" where we use llrint() in case ffmpeg'sAndreas Öman
own llrint() is to be used. Originally committed as revision 16257 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-20Put under #if LIBAVCODEC_VERSION_MAJOR < 53 the deprecated functionsStefano Sabatini
av_set_string() and av_set_string2(), they will be dropped at the next major bump. Originally committed as revision 16243 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-20Remove calls to deprecated av_set_string2() with calls toStefano Sabatini
av_set_string3(). Originally committed as revision 16241 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-17Implement av_set_string3().Stefano Sabatini
Originally committed as revision 16175 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-16Implement the av_set_number2() internal function, which makes possibleStefano Sabatini
to distinguish between a not found option failure and a not valid value failure. Originally committed as revision 16156 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-16Remove ending period in a log message, which was inconsistent withStefano Sabatini
most other messages. Originally committed as revision 16155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-15Remove set_all_opt() and its use in av_set_string2(). MakeStefano Sabatini
av_set_string() and av_set_string2() do not accept as parameter the name of a named constant. This avoids av_set_string2() and av_set_string() to misbehave when there is an option and a named constant with the same name. See the thread: "[PATCH] Remove libavcodec/opt.c:set_all_opt()". Originally committed as revision 16134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-05Fix FF_OPT_TYPE_INT64 support of defaults.Michael Niedermayer
Originally committed as revision 16008 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-14Fix the logic to access the location of a string to free when settingStefano Sabatini
a new value for a string with av_set_string2(). Fix a segmentation fault. Originally committed as revision 14219 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-09Fix the av_set_string() free / alloc issue.Michael Niedermayer
Originally committed as revision 14134 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-24Anoter try to make +- behave sanely.Michael Niedermayer
Originally committed as revision 13281 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-23Fix + - bug with non flags.Michael Niedermayer
Originally committed as revision 13243 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-15Make av_set_string() fail when number could not be set.Stefano Sabatini
Patch by Stefano Sabatini stefano§sabatini-lalaATposte§it Originally committed as revision 13155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-14Update offset in the option string later, to have a better error message.Stefano Sabatini
Patch by Stefano Sabatini stefanoTODsabatini-lalaCHEZposteTODit Originally committed as revision 13153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-13Fix a typo.Stefano Sabatini
Patch by Stefano Sabatini stefanoDOTsabatini-lalaATpostePOINTit Originally committed as revision 13140 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-05Fix handling flags with the MSB set.Michael Niedermayer
Originally committed as revision 12324 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15FixLuca Abeni
opt.c: In function ‘av_set_string’: opt.c:164: warning: passing argument 9 of ‘ff_eval2’ from incompatible pointer type Originally committed as revision 11937 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-17Add FF_OPT_TYPE_BINARY and use it to add a cryptokey optionReimar Döffinger
Originally committed as revision 11250 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-13Add a missing break, before av_set_number would always return NULL forReimar Döffinger
FF_OPT_TYPE_RATIONAL options instead of the corresponding AVOption Originally committed as revision 11213 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-03simplifyMichael Niedermayer
Originally committed as revision 11141 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-03make the AVOption code work with strings instead of crashMichael Niedermayer
Originally committed as revision 11140 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-03-30Fix a bug in av_find_opt(). Because some of the AVOption structures have fieldKamil Nowosad
unit = NULL, the function could pass NULL to strcmp and cause a segfault. Patch by Kamil Nowosad, k nowosad % students mimuw edu pl. Original thread: Subject: [PATCH] small bugfix in av_find_opt() Date: 03/23/2007 12:20 PM Originally committed as revision 8553 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-30add 'all' and 'none' options for partitions configLimin Wang
Patch by Limin Wang % lance P lmwang A gmail P com % Original thread: date: Mar 24, 2007 3:53 PM subject: [Ffmpeg-devel] [PATCH] add all and none options for partitions config Originally committed as revision 8552 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07add av_opt_set_defaults2() which sets just defaults from AVOptions whos ↵Michael Niedermayer
flags match a user specified & mask = flags Originally committed as revision 8280 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07make av_find_opt() available to the public and add a mask+flags parameter to ↵Michael Niedermayer
search for specific AVOptions Originally committed as revision 8279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-21Constantize AVOption, solve few warnings, patch from flameeyes@gentoo.org ↵Luca Barbato
aka "the other Diego" Originally committed as revision 7601 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-09Fixes:Dominik Mierzejewski
opt.c:327: warning: no return statement in function returning non-void opt_list return value is never checked. Approved by Michael. Originally committed as revision 6593 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-09-29Reformat the output of the list of available AVOptions, by indenting thePanagiotis Issaris
parameters of certain options and displaying them _right after_ the actual option taking the parameter. Originally committed as revision 6385 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-09-29Pull out the ff_eval* from the mpegvideo header, as it doesn't belong there andPanagiotis Issaris
put it in a separate file. Originally committed as revision 6383 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