summaryrefslogtreecommitdiff
path: root/libavutil/mathematics.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-03-09 10:24:47 +0000
committerDiego Biurrun <diego@biurrun.de>2009-03-09 10:24:47 +0000
commit082dea8e404ea30c7ece089cf7cd81c38c3916c4 (patch)
tree345d896c885996233fd455abb7d59f16c35a774e /libavutil/mathematics.c
parent0881748386fa7c39dbd1d5e5c204035cb7b6c2c0 (diff)
Remove all remaining code that was disabled through the major version bump.
Originally committed as revision 17903 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/mathematics.c')
-rw-r--r--libavutil/mathematics.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavutil/mathematics.c b/libavutil/mathematics.c
index ff488a70ef..f57cf8e4b6 100644
--- a/libavutil/mathematics.c
+++ b/libavutil/mathematics.c
@@ -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);