comparison vp6.c @ 4078:6a10cc9adb8a libavcodec

Don't include inttypes.h/stdint.h directly, there is an abstraction in libavutil/common.h for platforms with no inttypes.h. patch by Steve Lhomme, slhomme divxcorp com
author diego
date Tue, 24 Oct 2006 18:57:43 +0000
parents 7f991a9cd252
children 331961478469
comparison
equal deleted inserted replaced
4077:fc1235327725 4078:6a10cc9adb8a
25 * - upper 4bits: difference between encoded width and visible width 25 * - upper 4bits: difference between encoded width and visible width
26 * - lower 4bits: difference between encoded height and visible height 26 * - lower 4bits: difference between encoded height and visible height
27 */ 27 */
28 28
29 #include <stdlib.h> 29 #include <stdlib.h>
30 #include <inttypes.h>
31 30
32 #include "avcodec.h" 31 #include "avcodec.h"
33 #include "dsputil.h" 32 #include "dsputil.h"
34 #include "bitstream.h" 33 #include "bitstream.h"
35 #include "mpegvideo.h" 34 #include "mpegvideo.h"