From 3a1429ec3cea15cfc82ab1b9edab95c8016c06ba Mon Sep 17 00:00:00 2001
From: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Date: Tue, 5 Oct 2010 08:44:18 +0000
Subject: [PATCH] Update av_cmp_q() documentation after r25338.

Originally committed as revision 25340 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavutil/rational.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavutil/rational.h b/libavutil/rational.h
index 15df06f4af4..789e4aca2cc 100644
--- a/libavutil/rational.h
+++ b/libavutil/rational.h
@@ -44,7 +44,8 @@ typedef struct AVRational{
  * Compare two rationals.
  * @param a first rational
  * @param b second rational
- * @return 0 if a==b, 1 if a>b and -1 if a<b
+ * @return 0 if a==b, 1 if a>b, -1 if a<b, and INT_MIN if one of the
+ * values is of the form 0/0
  */
 static inline int av_cmp_q(AVRational a, AVRational b){
     const int64_t tmp= a.num * (int64_t)b.den - b.num * (int64_t)a.den;
-- 
GitLab