Commit ee45d753 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

C++ <inttypes.h> inclusion fixes

parent bbb0de54
......@@ -30,6 +30,9 @@
# include "config.h"
#endif
#define __STDC_FORMAT_MACROS 1
#include <inttypes.h>
#include <vlc/vlc.h>
#include <vlc_input.h>
#include <vlc_access.h>
......
......@@ -31,6 +31,9 @@
# include "config.h"
#endif
#define __STDC_CONSTANT_MACROS 1
#include <inttypes.h>
#include <vlc/vlc.h>
#include <vlc_demux.h>
......
......@@ -30,6 +30,10 @@
# include "config.h"
#endif
#define __STDC_FORMAT_MACROS 1
#define __STDC_CONSTANT_MACROS 1
#include <inttypes.h>
#include <vlc/vlc.h>
#ifdef HAVE_TIME_H
......
......@@ -30,6 +30,9 @@
# include "config.h"
#endif
#define __STDC_CONSTANT_MACROS 1
#include <inttypes.h>
#include <vlc/vlc.h>
#include <vlc_aout.h>
#include <vlc_vout.h>
......
......@@ -12,6 +12,10 @@
#if defined(__LIBVLC__)
# include "config.h"
# define __STDC_CONSTANT_MACROS 1
# include <inttypes.h>
# include <vlc/vlc.h>
/* some things need to be changed if this code is used inside VideoLan Filter Module */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment