]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blobdiff - libavutil/mathematics.c
frsh: Export information about the last RTP contract and VRES
[frescor/ffmpeg.git] / libavutil / mathematics.c
index 91ade22571a881155f609275325aad97a6ff4894..f57cf8e4b618900c8e9ffde25f3ca1329c8d4405 100644 (file)
@@ -19,8 +19,8 @@
  */
 
 /**
- * @file mathematics.c
- * Miscellaneous math routines and tables.
+ * @file libavutil/mathematics.c
+ * miscellaneous math routines and tables
  */
 
 #include <assert.h>
@@ -55,12 +55,6 @@ int64_t av_gcd(int64_t a, int64_t b){
     else  return a;
 }
 
-#if LIBAVUTIL_VERSION_MAJOR < 50
-int64_t ff_gcd(int64_t a, int64_t b){
-    return av_gcd(a, b);
-}
-#endif
-
 int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd){
     int64_t r=0;
     assert(c > 0);