comparison nut.h @ 2172:92f61ed53965 libavformat

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 3804e39efbfd
children f6021da48f21
comparison
equal deleted inserted replaced
2171:a6d6b2b19341 2172:92f61ed53965
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 * 20 *
21 */ 21 */
22
23 #ifndef AVFORMAT_NUT_H
24 #define AVFORMAT_NUT_H
22 25
23 //#include <limits.h> 26 //#include <limits.h>
24 #include "avformat.h" 27 #include "avformat.h"
25 #include "crc.h" 28 #include "crc.h"
26 //#include "mpegaudio.h" 29 //#include "mpegaudio.h"
93 96
94 //FIXME move to a common spot, like crc.c/h 97 //FIXME move to a common spot, like crc.c/h
95 static unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){ 98 static unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){
96 return av_crc(av_crc04C11DB7, checksum, buf, len); 99 return av_crc(av_crc04C11DB7, checksum, buf, len);
97 } 100 }
101
102 #endif