dvb.media_addon: Let C++ use C99 math features.

- This get rids of the complain "'UINT64_C' was not declared in this scope" and
  allows us to remove the (now superflous) declaration of UINT64_C.
- No functional change intended.
This commit is contained in:
Colin Günther 2014-08-20 12:01:09 +02:00
parent 75bd62e868
commit 740ede8c95
2 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,7 @@ UseHeaders [ FDirName $(ffmpegHeaders) libavcodec ] ;
UseHeaders [ FDirName $(ffmpegHeaders) libavformat ] ;
UseHeaders [ FDirName $(ffmpegHeaders) libavutil ] ;
SubDirC++Flags -D__STDC_CONSTANT_MACROS -Wno-deprecated-declarations ;
Addon dvb.media_addon :
DVBCard.cpp

View File

@ -27,7 +27,6 @@
#include <stdio.h>
#include "MediaFormat.h"
#define UINT64_C(c) (c ## ULL)
extern "C" {
#include "avcodec.h"