comparison mathematics.c @ 873:4d9ad0ed07d0 libavutil

Replace many includes of libavutil/common.h with what is actually needed This reduces the number of false dependencies on header files and speeds up compilation.
author mru
date Tue, 09 Mar 2010 17:39:19 +0000
parents a6eab70dd366
children 0795a743bda1
comparison
equal deleted inserted replaced
872:9d32a031ab0b 873:4d9ad0ed07d0
22 * @file libavutil/mathematics.c 22 * @file libavutil/mathematics.c
23 * miscellaneous math routines and tables 23 * miscellaneous math routines and tables
24 */ 24 */
25 25
26 #include <assert.h> 26 #include <assert.h>
27 #include "avutil.h" 27 #include <stdint.h>
28 #include "common.h" 28 #include <limits.h>
29 #include "mathematics.h" 29 #include "mathematics.h"
30 30
31 const uint8_t ff_sqrt_tab[256]={ 31 const uint8_t ff_sqrt_tab[256]={
32 0, 16, 23, 28, 32, 36, 40, 43, 46, 48, 51, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 77, 79, 80, 82, 84, 85, 87, 88, 90, 32 0, 16, 23, 28, 32, 36, 40, 43, 46, 48, 51, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 77, 79, 80, 82, 84, 85, 87, 88, 90,
33 91, 92, 94, 95, 96, 98, 99,100,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127, 33 91, 92, 94, 95, 96, 98, 99,100,102,103,104,105,107,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,