Browse code

inverse.c: Replace unnecessary intmath.h header by necessary stdint.h.

Diego Biurrun authored on 2011/06/05 22:27:51
Showing 1 changed files
... ...
@@ -19,7 +19,7 @@
19 19
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 20
  */
21 21
 
22
-#include "libavutil/intmath.h"
22
+#include <stdint.h>
23 23
 
24 24
 /* a*inverse[b]>>32 == a/b for all 0<=a<=16909558 && 2<=b<=256
25 25
  * for a>16909558, is an overestimate by less than 1 part in 1<<24 */