comparison mathematics.h @ 893:76fd7478a2dc libavutil

Replace @returns by @return.
author benoit
date Tue, 30 Mar 2010 15:50:57 +0000
parents 4d9ad0ed07d0
children 37d97bd9f84d
comparison
equal deleted inserted replaced
892:3e77728d53e1 893:76fd7478a2dc
85 85
86 /** 86 /**
87 * Compares 2 timestamps each in its own timebases. 87 * Compares 2 timestamps each in its own timebases.
88 * The result of the function is undefined if one of the timestamps 88 * The result of the function is undefined if one of the timestamps
89 * is outside the int64_t range when represented in the others timebase. 89 * is outside the int64_t range when represented in the others timebase.
90 * @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 90 * @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
91 */ 91 */
92 int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b); 92 int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b);
93 93
94 94
95 #endif /* AVUTIL_MATHEMATICS_H */ 95 #endif /* AVUTIL_MATHEMATICS_H */