Browse Source

video_chroma: fixed include-guards

* renamed include-guards that were making use of reserved identifiers

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
pull/42/head
Filip Roséen 11 years ago
committed by Jean-Baptiste Kempf
parent
commit
d1a248bf86
  1. 4
      modules/video_chroma/copy.h
  2. 6
      modules/video_chroma/dxgi_fmt.h

4
modules/video_chroma/copy.h

@ -21,8 +21,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _VLC_VIDEOCHROMA_COPY_H
#define _VLC_VIDEOCHROMA_COPY_H 1
#ifndef VLC_VIDEOCHROMA_COPY_H_
#define VLC_VIDEOCHROMA_COPY_H_
typedef struct {
# ifdef CAN_COMPILE_SSE2

6
modules/video_chroma/dxgi_fmt.h

@ -20,8 +20,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef _VLC_VIDEOCHROMA_DXGI_H
#define _VLC_VIDEOCHROMA_DXGI_H 1
#ifndef VLC_VIDEOCHROMA_DXGI_FMT_H_
#define VLC_VIDEOCHROMA_DXGI_FMT_H_
#include <dxgiformat.h>
@ -40,4 +40,4 @@ typedef struct
extern const char *DxgiFormatToStr(DXGI_FORMAT format);
extern const d3d_format_t *GetRenderFormatList(void);
#endif /* _VLC_VIDEOCHROMA_DXGI_H */
#endif /* include-guard */

Loading…
Cancel
Save