diff -r 000000000000 -r 6474c204b198 media/libsoundtouch/src/moz.build --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media/libsoundtouch/src/moz.build Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,44 @@ +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +EXPORTS.soundtouch += [ + 'FIFOSamplePipe.h', + 'SoundTouch.h', + 'soundtouch_config.h', + 'STTypes.h', +] + +UNIFIED_SOURCES += [ + 'AAFilter.cpp', + 'cpu_detect_x86.cpp', + 'FIFOSampleBuffer.cpp', + 'FIRFilter.cpp', + 'InterpolateCubic.cpp', + 'InterpolateLinear.cpp', + 'InterpolateShannon.cpp', + 'RateTransposer.cpp', + 'SoundTouch.cpp', + 'TDStretch.cpp', +] + +if CONFIG['INTEL_ARCHITECTURE']: + if CONFIG['MOZ_SAMPLE_TYPE_FLOAT32']: + SOURCES += ['sse_optimized.cpp'] + SOURCES['sse_optimized.cpp'].flags += CONFIG['SSE2_FLAGS'] + else: + SOURCES += ['mmx_optimized.cpp'] + SOURCES['mmx_optimized.cpp'].flags += CONFIG['MMX_FLAGS'] + +MSVC_ENABLE_PGO = True +if CONFIG['GKMEDIAS_SHARED_LIBRARY']: + NO_VISIBILITY_FLAGS = True + +FINAL_LIBRARY = 'gkmedias' + +# Use abort() instead of exception in SoundTouch. +DEFINES['ST_NO_EXCEPTION_HANDLING'] = 1 + +DEFINES['BUILDING_SOUNDTOUCH'] = True