Mercurial > libavcodec.hg
comparison svq1.h @ 5830:1d83e9c34641 libavcodec
Add FFMPEG_ prefix to all multiple inclusion guards.
author | diego |
---|---|
date | Wed, 17 Oct 2007 09:37:46 +0000 |
parents | eca08bfad00f |
children | 057c243a4e3b |
comparison
equal
deleted
inserted
replaced
5829:74db916a3715 | 5830:1d83e9c34641 |
---|---|
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 AVCODEC_SVQ1_H | 35 #ifndef FFMPEG_SVQ1_H |
36 #define AVCODEC_SVQ1_H | 36 #define FFMPEG_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 svq1_frame_size_t ff_svq1_frame_size_table[8]; | 59 extern svq1_frame_size_t ff_svq1_frame_size_table[8]; |
60 | 60 |
61 #endif /* AVCODEC_SVQ1_H */ | 61 #endif /* FFMPEG_SVQ1_H */ |