1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Use proper "" quotes for local header #includes

This commit is contained in:
Diego Biurrun 2013-02-01 10:27:45 +01:00
parent 4eef2ed707
commit 6c1a7d07eb
3 changed files with 3 additions and 3 deletions

View File

@ -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);

View File

@ -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"

View File

@ -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"