diff options
Diffstat (limited to 'src/libffmpeg')
-rw-r--r-- | src/libffmpeg/libavcodec/wmadec.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libffmpeg/libavcodec/wmadec.c b/src/libffmpeg/libavcodec/wmadec.c index cf2db1494..11576b47a 100644 --- a/src/libffmpeg/libavcodec/wmadec.c +++ b/src/libffmpeg/libavcodec/wmadec.c @@ -31,6 +31,12 @@ * should be 4 extra bytes for v1 data and 6 extra bytes for v2 data. */ +/* xine: some glibc versions require _ISOC9X_SOURCE for + * prototyping lrintf(). failure to declare it will result + * in static noise being produced by wmadec.c. + */ +#define _ISOC9X_SOURCE 1 + #include "avcodec.h" #include "dsputil.h" |