comparison svq1.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 057c243a4e3b
children 847bcb16028a
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
30 * Sorenson Vector Quantizer #1 (SVQ1) video codec. 30 * Sorenson Vector Quantizer #1 (SVQ1) video codec.
31 * For more information of the SVQ1 algorithm, visit: 31 * For more information of the SVQ1 algorithm, visit:
32 * http://www.pcisys.net/~melanson/codecs/ 32 * http://www.pcisys.net/~melanson/codecs/
33 */ 33 */
34 34
35 #ifndef FFMPEG_SVQ1_H 35 #ifndef AVCODEC_SVQ1_H
36 #define FFMPEG_SVQ1_H 36 #define AVCODEC_SVQ1_H
37 37
38 #include <stdint.h> 38 #include <stdint.h>
39 39
40 #define SVQ1_BLOCK_SKIP 0 40 #define SVQ1_BLOCK_SKIP 0
41 #define SVQ1_BLOCK_INTER 1 41 #define SVQ1_BLOCK_INTER 1
56 extern const uint16_t ff_svq1_intra_mean_vlc[256][2]; 56 extern const uint16_t ff_svq1_intra_mean_vlc[256][2];
57 extern const uint16_t ff_svq1_inter_mean_vlc[512][2]; 57 extern const uint16_t ff_svq1_inter_mean_vlc[512][2];
58 58
59 extern const svq1_frame_size_t ff_svq1_frame_size_table[8]; 59 extern const svq1_frame_size_t ff_svq1_frame_size_table[8];
60 60
61 #endif /* FFMPEG_SVQ1_H */ 61 #endif /* AVCODEC_SVQ1_H */