comparison rangecoder.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 4394344397d8
children 3fd46e281bd8
comparison
equal deleted inserted replaced
5162:4394344397d8 5163:9ecbfc0c82bf
22 22
23 /** 23 /**
24 * @file rangecoder.h 24 * @file rangecoder.h
25 * Range coder. 25 * Range coder.
26 */ 26 */
27
28 #ifndef AVCODEC_RANGECODER_H
29 #define AVCODEC_RANGECODER_H
27 30
28 #include <stdint.h> 31 #include <stdint.h>
29 #include <assert.h> 32 #include <assert.h>
30 #include "common.h" 33 #include "common.h"
31 34
134 137
135 return one_mask&1; 138 return one_mask&1;
136 #endif 139 #endif
137 } 140 }
138 141
142 #endif