comparison crc_data.h @ 567:bd4052d9050c libavutil

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 40ef1f81f445
children
comparison
equal deleted inserted replaced
566:34198f8250cf 567:bd4052d9050c
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_CRC_DATA_H 21 #ifndef AVUTIL_CRC_DATA_H
22 #define FFMPEG_CRC_DATA_H 22 #define AVUTIL_CRC_DATA_H
23 23
24 #include "crc.h" 24 #include "crc.h"
25 25
26 static const AVCRC av_crc_table[AV_CRC_MAX][257] = { 26 static const AVCRC av_crc_table[AV_CRC_MAX][257] = {
27 [AV_CRC_8_ATM] = { 27 [AV_CRC_8_ATM] = {
208 0x54DE5729, 0x23D967BF, 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94, 208 0x54DE5729, 0x23D967BF, 0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,
209 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D, 0x00000001 209 0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D, 0x00000001
210 }, 210 },
211 }; 211 };
212 212
213 #endif /* FFMPEG_CRC_DATA_H */ 213 #endif /* AVUTIL_CRC_DATA_H */