comparison nut.c @ 2376:a67b89ba136d libavformat

Ensure av_tree_insert() is defined before using it. Patch by Carl Eugen Hoyos cehoyos _at_ ag.or.at
author aurel
date Sat, 11 Aug 2007 23:58:10 +0000
parents a9dc7596498a
children 153d6efc05b8
comparison
equal deleted inserted replaced
2375:14828c79f290 2376:a67b89ba136d
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 #include "nut.h" 22 #include "nut.h"
23 #include "tree.h"
23 24
24 unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){ 25 unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){
25 return av_crc(av_crc04C11DB7, checksum, buf, len); 26 return av_crc(av_crc04C11DB7, checksum, buf, len);
26 } 27 }
27 28