comparison huffyuv.c @ 1758:d49aae2f9027 libavcodec

freebsd fix for mpeg12.c (moving INT64_MAX to common.h)
author alex
date Sun, 25 Jan 2004 11:13:56 +0000
parents 932d306bf1dc
children b7340afa261a
comparison
equal deleted inserted replaced
1757:3906ddbaffec 1758:d49aae2f9027
27 */ 27 */
28 28
29 #include "common.h" 29 #include "common.h"
30 #include "avcodec.h" 30 #include "avcodec.h"
31 #include "dsputil.h" 31 #include "dsputil.h"
32
33 #ifndef INT64_MAX
34 #define INT64_MAX 9223372036854775807LL
35 #endif
36 32
37 #define VLC_BITS 11 33 #define VLC_BITS 11
38 34
39 typedef enum Predictor{ 35 typedef enum Predictor{
40 LEFT= 0, 36 LEFT= 0,