diff options
author | Benoit Fouet <benoit.fouet@free.fr> | 2010-03-30 15:50:57 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2010-03-30 15:50:57 +0000 |
commit | 32e543f866d9d4b450729e93cd81dacd8c457971 (patch) | |
tree | 3e4271e8f798d25c3868584a04dcb52df3eff83f /libavutil | |
parent | 3bccd93ac0b7e5dbb4a335257eaee9d8908dad3c (diff) | |
download | ffmpeg-32e543f866d9d4b450729e93cd81dacd8c457971.tar.gz |
Replace @returns by @return.
Originally committed as revision 22729 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/mathematics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mathematics.h b/libavutil/mathematics.h index ab0f3f731d..3b783db832 100644 --- a/libavutil/mathematics.h +++ b/libavutil/mathematics.h @@ -87,7 +87,7 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; * Compares 2 timestamps each in its own timebases. * The result of the function is undefined if one of the timestamps * is outside the int64_t range when represented in the others timebase. - * @returns -1 if ts_a is before ts_b, 1 if ts_a is after ts_b or 0 if they represent the same position + * @return -1 if ts_a is before ts_b, 1 if ts_a is after ts_b or 0 if they represent the same position */ int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b); |