diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-09 10:24:47 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-09 10:24:47 +0000 |
commit | 082dea8e404ea30c7ece089cf7cd81c38c3916c4 (patch) | |
tree | 345d896c885996233fd455abb7d59f16c35a774e /libavutil/mathematics.c | |
parent | 0881748386fa7c39dbd1d5e5c204035cb7b6c2c0 (diff) | |
download | ffmpeg-082dea8e404ea30c7ece089cf7cd81c38c3916c4.tar.gz |
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.c | 6 |
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); |