mirror of
https://github.com/mpv-player/mpv
synced 2025-01-16 22:37:28 +01:00
Use quotes instead of angular brackets for local includes.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26374 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
0ce6d08a83
commit
6ae33bc013
@ -1,6 +1,6 @@
|
||||
#include <math.h>
|
||||
#include <string.h>
|
||||
#include <af.h>
|
||||
#include "af.h"
|
||||
|
||||
/* Convert to gain value from dB. Returns AF_OK if of and AF_ERROR if
|
||||
fail */
|
||||
|
@ -16,7 +16,7 @@
|
||||
/* Size of floating point type used in routines */
|
||||
#define _ftype_t float
|
||||
|
||||
#include <window.h>
|
||||
#include <filter.h>
|
||||
#include "window.h"
|
||||
#include "filter.h"
|
||||
|
||||
#endif /* MPLAYER_DSP_H */
|
||||
|
@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
#if !defined MPLAYER_DSP_H
|
||||
# error "Never use <filter.h> directly; include <dsp.h> instead"
|
||||
# error "Never use \"filter.h\" directly; include \"dsp.h\" instead"
|
||||
#endif
|
||||
|
||||
#ifndef MPLAYER_FILTER_H
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
#if !defined MPLAYER_DSP_H
|
||||
# error "Never use <window.h> directly; include <dsp.h> instead"
|
||||
# error "Never use \"window.h\" directly; include \"dsp.h\" instead"
|
||||
#endif
|
||||
|
||||
#ifndef MPLAYER_WINDOW_H
|
||||
|
Loading…
Reference in New Issue
Block a user