comparison golomb.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
26 * @brief 26 * @brief
27 * exp golomb vlc stuff 27 * exp golomb vlc stuff
28 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi 28 * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
29 */ 29 */
30 30
31 #ifndef AVCODEC_GOLOMB_H
32 #define AVCODEC_GOLOMB_H
33
31 #include <stdint.h> 34 #include <stdint.h>
32 #include "bitstream.h" 35 #include "bitstream.h"
33 36
34 #define INVALID_VLC 0x80000000 37 #define INVALID_VLC 0x80000000
35 38
478 v = -2*i-1; 481 v = -2*i-1;
479 v ^= (v>>31); 482 v ^= (v>>31);
480 483
481 set_ur_golomb_jpegls(pb, v, k, limit, esc_len); 484 set_ur_golomb_jpegls(pb, v, k, limit, esc_len);
482 } 485 }
486
487 #endif