diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-01 10:27:45 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-02-01 12:51:15 +0100 |
commit | 6c1a7d07eb41b4cf36e48ebb560fecd9504fd968 (patch) | |
tree | 7f07a49b57bb08c46375831f2e55b9b5a328342a | |
parent | 4eef2ed707444fd1fac2bd25cefae912a179762f (diff) | |
download | ffmpeg-6c1a7d07eb41b4cf36e48ebb560fecd9504fd968.tar.gz |
Use proper "" quotes for local header #includes
-rw-r--r-- | libavcodec/arm/videodsp_init_armv5te.c | 2 | ||||
-rw-r--r-- | libavcodec/kbdwin.c | 2 | ||||
-rw-r--r-- | libavformat/rtp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/arm/videodsp_init_armv5te.c b/libavcodec/arm/videodsp_init_armv5te.c index a7b8b23119..5830f4b8cc 100644 --- a/libavcodec/arm/videodsp_init_armv5te.c +++ b/libavcodec/arm/videodsp_init_armv5te.c @@ -19,7 +19,7 @@ */ #include "libavutil/arm/cpu.h" -#include <libavcodec/videodsp.h> +#include "libavcodec/videodsp.h" #include "videodsp_arm.h" void ff_prefetch_arm(uint8_t *mem, ptrdiff_t stride, int h); diff --git a/libavcodec/kbdwin.c b/libavcodec/kbdwin.c index 3b590b38ef..1b7313d1dc 100644 --- a/libavcodec/kbdwin.c +++ b/libavcodec/kbdwin.c @@ -17,7 +17,7 @@ */ #include <assert.h> -#include <libavutil/mathematics.h> +#include "libavutil/mathematics.h" #include "libavutil/attributes.h" #include "kbdwin.h" diff --git a/libavformat/rtp.c b/libavformat/rtp.c index e827c2e0ab..0a3c411f51 100644 --- a/libavformat/rtp.c +++ b/libavformat/rtp.c @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <libavutil/opt.h> +#include "libavutil/opt.h" #include "avformat.h" #include "rtp.h" |