diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-10-15 22:11:45 +0200 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-10-15 22:11:45 +0200 |
commit | 0f53dcaa8cae2d37e886fff0d7a44ed6e679aeb4 (patch) | |
tree | 2e5b0d44f15508054a6469d50cf367f4e6b0fede /src/video_dec | |
parent | b258a7d9c8f71669df3273127c076e722573f707 (diff) | |
download | xine-lib-0f53dcaa8cae2d37e886fff0d7a44ed6e679aeb4.tar.gz xine-lib-0f53dcaa8cae2d37e886fff0d7a44ed6e679aeb4.tar.bz2 |
Disable strict-aliasing where it caused compiler warnings
Diffstat (limited to 'src/video_dec')
-rw-r--r-- | src/video_dec/libvdpau/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_dec/libvdpau/Makefile.am b/src/video_dec/libvdpau/Makefile.am index 320bfce04..89821fca9 100644 --- a/src/video_dec/libvdpau/Makefile.am +++ b/src/video_dec/libvdpau/Makefile.am @@ -20,17 +20,17 @@ endif xineplug_LTLIBRARIES = $(vdpau_h264_module) $(vdpau_mpeg12_module) $(vdpau_vc1_module) $(vdpau_mpeg4_module) xineplug_decode_vdpau_h264_la_SOURCES = nal.c dpb.c cpb.c h264_parser.c vdpau_h264.c -xineplug_decode_vdpau_h264_la_CFLAGS = $(AM_CFLAGS) $(VDPAU_CFLAGS) +xineplug_decode_vdpau_h264_la_CFLAGS = $(AM_CFLAGS) $(VDPAU_CFLAGS) -fno-strict-aliasing xineplug_decode_vdpau_h264_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) -lm xineplug_decode_vdpau_mpeg12_la_SOURCES = vdpau_mpeg12.c -xineplug_decode_vdpau_mpeg12_la_CFLAGS = $(AM_CFLAGS) +xineplug_decode_vdpau_mpeg12_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing xineplug_decode_vdpau_mpeg12_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) xineplug_decode_vdpau_vc1_la_SOURCES = vdpau_vc1.c -xineplug_decode_vdpau_vc1_la_CFLAGS = $(AM_CFLAGS) +xineplug_decode_vdpau_vc1_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing xineplug_decode_vdpau_vc1_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) xineplug_decode_vdpau_mpeg4_la_SOURCES = vdpau_mpeg4.c -xineplug_decode_vdpau_mpeg4_la_CFLAGS = $(AM_CFLAGS) +xineplug_decode_vdpau_mpeg4_la_CFLAGS = $(AM_CFLAGS) -fno-strict-aliasing xineplug_decode_vdpau_mpeg4_la_LIBADD = $(XINE_LIB) $(DYNAMIC_LD_LIBS) |