diff options
| author | Mohamed Tarek <mt@rockbox.org> | 2010-04-30 12:20:25 +0000 |
|---|---|---|
| committer | Mohamed Tarek <mt@rockbox.org> | 2010-04-30 12:20:25 +0000 |
| commit | fe147cec651486d39967f24d0d1bbe6ae1cd067b (patch) | |
| tree | ef15055d39c17e05c91f591b5d4f264bfd421e5e /apps/codecs/libwmapro/libavutil/mathematics.h | |
| parent | cf43e5083b9e0f87de262ea31fd8067225ebfcda (diff) | |
| download | rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.zip rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.gz rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.bz2 rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.xz | |
Modify the ffmpeg source files in apps/codecs/libwmapro in order to compile the codec standalone.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25764 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwmapro/libavutil/mathematics.h')
| -rw-r--r-- | apps/codecs/libwmapro/libavutil/mathematics.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libwmapro/libavutil/mathematics.h b/apps/codecs/libwmapro/libavutil/mathematics.h index e198aef..a09d3e9 100644 --- a/apps/codecs/libwmapro/libavutil/mathematics.h +++ b/apps/codecs/libwmapro/libavutil/mathematics.h @@ -24,7 +24,7 @@ #include <stdint.h> #include <math.h> #include "attributes.h" -#include "rational.h" +//#include "rational.h" #ifndef M_E #define M_E 2.7182818284590452354 /* e */ @@ -84,7 +84,7 @@ int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding) av_cons /** * Rescales a 64-bit integer by 2 rational numbers. */ -int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; +//int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; /** * Compares 2 timestamps each in its own timebases. @@ -92,7 +92,7 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq) av_const; * is outside the int64_t range when represented in the others timebase. * @return -1 if ts_a is before ts_b, 1 if ts_a is after ts_b or 0 if they represent the same position */ -int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b); +//int av_compare_ts(int64_t ts_a, AVRational tb_a, int64_t ts_b, AVRational tb_b); #endif /* AVUTIL_MATHEMATICS_H */ |