aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter/parseutils.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix grammar errors in documentationMåns Rullgård2010-06-301-1/+1
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: merge "} else" and "if (...) {" lines, less confusing.Stefano Sabatini2010-06-271-2/+1
| | | | Originally committed as revision 23837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after the last commit.Stefano Sabatini2010-06-271-4/+4
| | | | Originally committed as revision 23836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend color syntax, make it accept an alpha component specifier.Stefano Sabatini2010-06-271-7/+53
| | | | Originally committed as revision 23835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ColorEntry.rgba_color to rgb_color and do not reserve a fourthStefano Sabatini2010-06-271-2/+2
| | | | | | | byte for the alpha component, as it is never used, clarify the code and prevent bad usage of it. Originally committed as revision 23834 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing check to av_get_token().Stefano Sabatini2010-06-131-0/+1
| | | | Originally committed as revision 23594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö2010-05-231-1/+1
| | | | | | | Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_parse_color() return AVERROR(EINVAL) rather than -1.Stefano Sabatini2010-05-131-2/+2
| | | | Originally committed as revision 23120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
| | | | | | | | 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
* Make parse_key_value_pair() print an error message if a key is notStefano Sabatini2009-12-081-0/+2
| | | | | | found in the context. Originally committed as revision 20779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use an unsigned int to contain all the color values of the expressionsStefano Sabatini2009-12-081-1/+2
| | | | | | | | of the type 0xRRGBBAA parsed by av_parse_color(), using a simple int was resulting in unexpected results as the most significant bit was used for the sign. Originally committed as revision 20778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log with level AV_LOG_ERROR if av_parse_color() cannot recognize aStefano Sabatini2009-05-181-1/+1
| | | | | | color. Originally committed as revision 18868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_set_options_string().Stefano Sabatini2009-05-141-0/+137
| | | | Originally committed as revision 18832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support in av_parse_color() to a "random" color name, which willStefano Sabatini2009-05-141-1/+2
| | | | | | | result in a randomly choosen random color, as it is with the "bikeshed" color. Originally committed as revision 18828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make case insensitive the match for the color name inStefano Sabatini2009-05-141-3/+3
| | | | | | av_parse_color(). Originally committed as revision 18827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Accept "bikeshed" as a random color.Ramiro Polla2009-05-061-0/+9
| | | | Originally committed as revision 18758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_parse_color().Stefano Sabatini2009-05-051-0/+215
| | | | Originally committed as revision 18748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer (void) over () in function prototype.Stefano Sabatini2009-05-011-1/+1
| | | | Originally committed as revision 18727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_get_token()Michael Niedermayer2009-05-011-0/+110
based on a patch by Stefano Sabatini Originally committed as revision 18725 to svn://svn.ffmpeg.org/ffmpeg/trunk