diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-26 23:12:41 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-26 23:12:41 +0000 |
commit | dc4a50a073191075b2093a016defcbd55b043a99 (patch) | |
tree | afa5f3bdaf41f23ac6a5eef1baca76af260fd1b1 /libavcore/parseutils.h | |
parent | afead10638badf35f60caec4da4dd6d5aab5d35c (diff) | |
download | ffmpeg-dc4a50a073191075b2093a016defcbd55b043a99.tar.gz |
Remove reference to the "frame" term in variable names. Simpler and
more consistent with the function names.
Originally committed as revision 24522 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcore/parseutils.h')
-rw-r--r-- | libavcore/parseutils.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcore/parseutils.h b/libavcore/parseutils.h index ceaf09785f..a81cc18f50 100644 --- a/libavcore/parseutils.h +++ b/libavcore/parseutils.h @@ -30,24 +30,24 @@ * Parse str and put in width_ptr and height_ptr the detected values. * * @param[in,out] width_ptr pointer to the variable which will contain the detected - * frame width value + * width value * @param[in,out] height_ptr pointer to the variable which will contain the detected - * frame height value + * height value * @param[in] str the string to parse: it has to be a string in the format - * width x height or a valid video frame size abbreviation. + * width x height or a valid video size abbreviation. * @return >= 0 on success, a negative error code otherwise */ int av_parse_video_size(int *width_ptr, int *height_ptr, const char *str); /** - * Parse str and store the detected values in *frame_rate. + * Parse str and store the detected values in *rate. * - * @param[in,out] frame_rate pointer to the AVRational which will contain the detected + * @param[in,out] rate pointer to the AVRational which will contain the detected * frame rate * @param[in] str the string to parse: it has to be a string in the format - * frame_rate_num / frame_rate_den, a float number or a valid video rate abbreviation + * rate_num / rate_den, a float number or a valid video rate abbreviation * @return >= 0 on success, a negative error code otherwise */ -int av_parse_video_rate(AVRational *frame_rate, const char *str); +int av_parse_video_rate(AVRational *rate, const char *str); #endif /* AVCORE_PARSEUTILS_H */ |