summaryrefslogtreecommitdiffstats
path: root/libavcore/parseutils.c
Commit message (Collapse)AuthorAgeFilesLines
* Avoid the use of an intermediary variable inStefano Sabatini2010-07-261-3/+1
| | | | | | 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-261-11/+10
| | | | | | 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-261-25/+25
| | | | | | 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-261-2/+2
| | | | | | 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-261-0/+150
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