comparison svq1_vlc.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
comparison
equal deleted inserted replaced
7759:892ca48b7d76 7760:c4a4495715dd
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef FFMPEG_SVQ1_VLC_H 21 #ifndef AVCODEC_SVQ1_VLC_H
22 #define FFMPEG_SVQ1_VLC_H 22 #define AVCODEC_SVQ1_VLC_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 25
26 /* values in this table range from 0..3; adjust retrieved value by +0 */ 26 /* values in this table range from 0..3; adjust retrieved value by +0 */
27 const uint8_t ff_svq1_block_type_vlc[4][2] = { 27 const uint8_t ff_svq1_block_type_vlc[4][2] = {
278 { 0xB, 22 }, { 0xA, 22 }, { 0x9, 22 }, { 0x8, 22 }, 278 { 0xB, 22 }, { 0xA, 22 }, { 0x9, 22 }, { 0x8, 22 },
279 { 0x7, 22 }, { 0x6, 22 }, { 0x5, 22 }, { 0x4, 22 }, 279 { 0x7, 22 }, { 0x6, 22 }, { 0x5, 22 }, { 0x4, 22 },
280 { 0x3, 22 }, { 0x2, 22 }, { 0x1, 22 }, { 0x0, 22 } 280 { 0x3, 22 }, { 0x2, 22 }, { 0x1, 22 }, { 0x0, 22 }
281 }; 281 };
282 282
283 #endif /* FFMPEG_SVQ1_VLC_H */ 283 #endif /* AVCODEC_SVQ1_VLC_H */