diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 21:57:27 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 21:57:27 +0000 |
commit | 7e5f82dc0618d91afc24ad1d4b48a359a5f739b8 (patch) | |
tree | 5424dd1501d811a34e884dcbf82e46e15065f7f9 | |
parent | 54eb77c05e6a03815316908a64fa31b8c5353929 (diff) | |
download | ffmpeg-7e5f82dc0618d91afc24ad1d4b48a359a5f739b8.tar.gz |
move comment
Originally committed as revision 7072 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 8ae20d564d..4cb0d2a7e2 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -100,6 +100,8 @@ #define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) +/* math */ + extern const uint32_t ff_inverse[256]; #if defined(ARCH_X86) @@ -130,7 +132,6 @@ extern const uint32_t ff_inverse[256]; # define FASTDIV(a,b) ((a)/(b)) #endif -/* math */ extern FF_IMPORT_ATTR const uint8_t ff_sqrt_tab[128]; static inline int ff_sqrt(int a) |