diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-07 14:13:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-07 14:13:59 +0000 |
commit | c64bab0805f35ef11ea4b689c24a7ff64da4bffa (patch) | |
tree | 1f4ed383a2d0e9157ff4b11d4d3f9a580d140f86 | |
parent | 93cc10fa9c38b90015425f3f5cbe09117eff00e0 (diff) | |
download | ffmpeg-c64bab0805f35ef11ea4b689c24a7ff64da4bffa.tar.gz |
Fix linking: emms_c is a macro, #include the correct header file.
Originally committed as revision 9238 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/grab.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/grab.c b/libavformat/grab.c index 1abfbd60a4..3db37482fd 100644 --- a/libavformat/grab.c +++ b/libavformat/grab.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "avformat.h" +#include "dsputil.h" #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> |