summaryrefslogtreecommitdiff
path: root/libavcore/parseutils.c
Commit message (Collapse)AuthorAge
* move the av_parse_color() function from libavfilter to libavcoreAurelien Jacobs2010-11-17
| | | | Originally committed as revision 25761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use hierarchic names convention (prefix them with av_expr) for theStefano Sabatini2010-11-08
| | | | | | | | | eval API. More grep-friendly and more consistent with the rest of the FFmpeg API. Originally committed as revision 25708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a test for av_parse_video_rate().Stefano Sabatini2010-10-04
| | | | Originally committed as revision 25334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_parse_and_eval_expr() in av_parse_video_rate(), simplify.Stefano Sabatini2010-10-04
| | | | Originally committed as revision 25333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix weird indent.Stefano Sabatini2010-10-01
| | | | Originally committed as revision 25287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid the use of an intermediary variable inStefano Sabatini2010-07-26
| | | | | | av_parse_video_rate(). Simplify. Originally committed as revision 24524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make VideoFrameRateAbbr contain a rational rather than two ints forStefano Sabatini2010-07-26
| | | | | | num and den. Simplify. Originally committed as revision 24523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reference to the "frame" term in variable names. Simpler andStefano Sabatini2010-07-26
| | | | | | more consistent with the function names. Originally committed as revision 24522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_parse_video_size() and av_parse_video_rate() returnStefano Sabatini2010-07-26
| | | | | | AVERROR(EINVAL) rather than -1 in case of unsuccess. Originally committed as revision 24521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()Stefano Sabatini2010-07-26
in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk