Browse Source

Use proper "" quotes for local header #includes

tags/n1.2
Diego Biurrun 12 years ago
parent
commit
6c1a7d07eb
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavcodec/arm/videodsp_init_armv5te.c
  2. +1
    -1
      libavcodec/kbdwin.c
  3. +1
    -1
      libavformat/rtp.c

+ 1
- 1
libavcodec/arm/videodsp_init_armv5te.c View File

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


+ 1
- 1
libavcodec/kbdwin.c View File

@@ -17,7 +17,7 @@
*/

#include <assert.h>
#include <libavutil/mathematics.h>
#include "libavutil/mathematics.h"
#include "libavutil/attributes.h"
#include "kbdwin.h"



+ 1
- 1
libavformat/rtp.c View File

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


Loading…
Cancel
Save