diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2007-08-11 23:58:10 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-08-11 23:58:10 +0000 |
commit | e56397800e6028441cd58a868fd5880a574fcfd4 (patch) | |
tree | e7d4ade593c32f47d89f7b8fb733d6734c4d5464 | |
parent | 88e2d5882be9c5a103090c113676950c3c25125b (diff) | |
download | ffmpeg-e56397800e6028441cd58a868fd5880a574fcfd4.tar.gz |
Ensure av_tree_insert() is defined before using it.
Patch by Carl Eugen Hoyos cehoyos _at_ ag.or.at
Originally committed as revision 10083 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/nut.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 4b41a05f33..e329a510d1 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -20,6 +20,7 @@ */ #include "nut.h" +#include "tree.h" unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){ return av_crc(av_crc04C11DB7, checksum, buf, len); |