Skip to content
Snippets Groups Projects
Commit 6c1a7d07 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Use proper "" quotes for local header #includes

parent 4eef2ed7
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
*/ */
#include "libavutil/arm/cpu.h" #include "libavutil/arm/cpu.h"
#include <libavcodec/videodsp.h> #include "libavcodec/videodsp.h"
#include "videodsp_arm.h" #include "videodsp_arm.h"
void ff_prefetch_arm(uint8_t *mem, ptrdiff_t stride, int h); void ff_prefetch_arm(uint8_t *mem, ptrdiff_t stride, int h);
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
*/ */
#include <assert.h> #include <assert.h>
#include <libavutil/mathematics.h> #include "libavutil/mathematics.h"
#include "libavutil/attributes.h" #include "libavutil/attributes.h"
#include "kbdwin.h" #include "kbdwin.h"
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <libavutil/opt.h> #include "libavutil/opt.h"
#include "avformat.h" #include "avformat.h"
#include "rtp.h" #include "rtp.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment