diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 09:48:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 09:48:49 +0000 |
commit | 22700471a98e9da990325d00d84d6ab69a6e1229 (patch) | |
tree | 713a9ce1056daa840117cff552df4429665ac45b | |
parent | f38c6c6cab6177f944d740d8825f11fe381c5814 (diff) | |
download | ffmpeg-22700471a98e9da990325d00d84d6ab69a6e1229.tar.gz |
dsputil.h is not a system header, use "" when #including it.
Originally committed as revision 13092 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/pngenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pngenc.c b/libavcodec/pngenc.c index 2ee40d1105..1ac9f311b8 100644 --- a/libavcodec/pngenc.c +++ b/libavcodec/pngenc.c @@ -20,8 +20,8 @@ */ #include "avcodec.h" #include "bytestream.h" +#include "dsputil.h" #include "png.h" -#include <dsputil.h> /* TODO: * - add 2, 4 and 16 bit depth support |