Remove all remaining code that was disabled through the major version bump.

Originally committed as revision 17903 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2009-03-09 10:24:47 +00:00
parent 0881748386
commit 082dea8e40
4 changed files with 0 additions and 30 deletions

View File

@ -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);