diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-04-20 14:41:55 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-04-20 14:41:55 +0000 |
commit | e1ae1642cb25e041448733843931f5faf559bb37 (patch) | |
tree | 7d796482fd1ab22795caa1557cdee890a98f6f15 /libavformat/dvenc.c | |
parent | 4311ff776b4f887ceb526a9b611f627bbb527c80 (diff) | |
download | ffmpeg-e1ae1642cb25e041448733843931f5faf559bb37.tar.gz |
Add missing internal.h #include for brktimegm(), fixes the warning:
libavformat/dvenc.c:82: warning: implicit declaration of function ‘brktimegm’
Originally committed as revision 22920 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index 617980903e..0176ac9767 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -29,7 +29,9 @@ */ #include <time.h> #include <stdarg.h> + #include "avformat.h" +#include "internal.h" #include "libavcodec/dvdata.h" #include "dv.h" #include "libavutil/fifo.h" |