This CL is in preparation to move the AudioFrame into webrtc/api. The AudioFrame is a POD type used for representing 10ms of audio. It appears as a parameter and return value of interfaces being migrated to webrtc/api, in particular AudioMixer. Here, methods operator+=, operator>>=, Mute are moved into a new target webrtc/audio/utility/audio_frame_operations, and dependencies are changed to use the new versions. The old AudioFrame methods are marked deprecated. The audio frame utilities in webrtc/modules/utility:audio_frame_operations are also moved to the new location. TBR=kjellander@webrtc.org BUG=webrtc:6548 NOPRESUBMIT=True Review-Url: https://codereview.webrtc.org/2424173003 Cr-Commit-Position: refs/heads/master@{#15413}
17 lines
458 B
Python
17 lines
458 B
Python
include_rules = [
|
|
"+webrtc/audio/utility/audio_frame_operations.h",
|
|
"+webrtc/base",
|
|
"+webrtc/call",
|
|
"+webrtc/common_audio",
|
|
"+webrtc/modules/audio_coding",
|
|
"+webrtc/modules/audio_conference_mixer",
|
|
"+webrtc/modules/audio_device",
|
|
"+webrtc/modules/audio_processing",
|
|
"+webrtc/modules/media_file",
|
|
"+webrtc/modules/pacing",
|
|
"+webrtc/modules/rtp_rtcp",
|
|
"+webrtc/modules/utility",
|
|
"+webrtc/system_wrappers",
|
|
"+webrtc/voice_engine",
|
|
]
|