Commit e1ae1642 authored by Diego Biurrun's avatar Diego Biurrun

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
parent 4311ff77
...@@ -29,7 +29,9 @@ ...@@ -29,7 +29,9 @@
*/ */
#include <time.h> #include <time.h>
#include <stdarg.h> #include <stdarg.h>
#include "avformat.h" #include "avformat.h"
#include "internal.h"
#include "libavcodec/dvdata.h" #include "libavcodec/dvdata.h"
#include "dv.h" #include "dv.h"
#include "libavutil/fifo.h" #include "libavutil/fifo.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment