comparison bitstream.h @ 7760:c4a4495715dd libavcodec

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents 4604ce2ea3ad
children eebc7209c47f
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
21 /** 21 /**
22 * @file bitstream.h 22 * @file bitstream.h
23 * bitstream api header. 23 * bitstream api header.
24 */ 24 */
25 25
26 #ifndef FFMPEG_BITSTREAM_H 26 #ifndef AVCODEC_BITSTREAM_H
27 #define FFMPEG_BITSTREAM_H 27 #define AVCODEC_BITSTREAM_H
28 28
29 #include <stdint.h> 29 #include <stdint.h>
30 #include <stdlib.h> 30 #include <stdlib.h>
31 #include <assert.h> 31 #include <assert.h>
32 #include "libavutil/bswap.h" 32 #include "libavutil/bswap.h"
952 return 0; 952 return 0;
953 else 953 else
954 return 2 - get_bits1(gb); 954 return 2 - get_bits1(gb);
955 } 955 }
956 956
957 #endif /* FFMPEG_BITSTREAM_H */ 957 #endif /* AVCODEC_BITSTREAM_H */