Mercurial > libavcodec.hg
comparison dcahuff.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 |
|---|---|
| 18 * You should have received a copy of the GNU Lesser General Public | 18 * You should have received a copy of the GNU Lesser General Public |
| 19 * License along with FFmpeg; if not, write to the Free Software | 19 * License along with FFmpeg; if not, write to the Free Software |
| 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef AVCODEC_DCAHUFF_H | |
| 24 #define AVCODEC_DCAHUFF_H | |
| 25 | |
| 23 #include <stdint.h> | 26 #include <stdint.h> |
| 24 #include <stdlib.h> | 27 #include <stdlib.h> |
| 25 | 28 |
| 26 #define TMODE_COUNT 4 | 29 #define TMODE_COUNT 4 |
| 27 static const uint8_t tmode_vlc_bits[TMODE_COUNT] = { 3, 3, 3, 2 }; | 30 static const uint8_t tmode_vlc_bits[TMODE_COUNT] = { 3, 3, 3, 2 }; |
| 1067 { bitalloc_65_bits_a, bitalloc_65_bits_b, bitalloc_65_bits_c, bitalloc_65_bits_d, | 1070 { bitalloc_65_bits_a, bitalloc_65_bits_b, bitalloc_65_bits_c, bitalloc_65_bits_d, |
| 1068 bitalloc_65_bits_e, bitalloc_65_bits_f, bitalloc_65_bits_g, NULL }, | 1071 bitalloc_65_bits_e, bitalloc_65_bits_f, bitalloc_65_bits_g, NULL }, |
| 1069 { bitalloc_129_bits_a, bitalloc_129_bits_b, bitalloc_129_bits_c, bitalloc_129_bits_d, | 1072 { bitalloc_129_bits_a, bitalloc_129_bits_b, bitalloc_129_bits_c, bitalloc_129_bits_d, |
| 1070 bitalloc_129_bits_e, bitalloc_129_bits_f, bitalloc_129_bits_g, NULL } | 1073 bitalloc_129_bits_e, bitalloc_129_bits_f, bitalloc_129_bits_g, NULL } |
| 1071 }; | 1074 }; |
| 1075 | |
| 1076 #endif |
