comparison svq1enc_cb.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 1d83e9c34641
children e9d9d946f213
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
22 /** 22 /**
23 * @file svq1enc_cb.h 23 * @file svq1enc_cb.h
24 * svq1 code books. 24 * svq1 code books.
25 */ 25 */
26 26
27 #ifndef FFMPEG_SVQ1ENC_CB_H 27 #ifndef AVCODEC_SVQ1ENC_CB_H
28 #define FFMPEG_SVQ1ENC_CB_H 28 #define AVCODEC_SVQ1ENC_CB_H
29 29
30 #include <stdint.h> 30 #include <stdint.h>
31 31
32 static const int8_t svq1_inter_codebook_sum[4][16*6] = { 32 static const int8_t svq1_inter_codebook_sum[4][16*6] = {
33 { 33 {
91 4, 1, -1, 2, -2, 4, 0, 0, 0, 4, 2, 0, -2, -2, 2, -4, 91 4, 1, -1, 2, -2, 4, 0, 0, 0, 4, 2, 0, -2, -2, 2, -4,
92 -1, 5, -2, -2, -3, 2, -3, -1, 3, -3, 0, 4, 3, 0, 1, -2, 92 -1, 5, -2, -2, -3, 2, -3, -1, 3, -3, 0, 4, 3, 0, 1, -2,
93 } 93 }
94 }; 94 };
95 95
96 #endif /* FFMPEG_SVQ1ENC_CB_H */ 96 #endif /* AVCODEC_SVQ1ENC_CB_H */