| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "webrtc/base/base64.h" | 22 #include "webrtc/base/base64.h" |
| 23 #include "webrtc/base/byteorder.h" | 23 #include "webrtc/base/byteorder.h" |
| 24 #include "webrtc/base/common.h" | 24 #include "webrtc/base/common.h" |
| 25 #include "webrtc/base/helpers.h" | 25 #include "webrtc/base/helpers.h" |
| 26 #include "webrtc/base/logging.h" | 26 #include "webrtc/base/logging.h" |
| 27 #include "webrtc/base/stringencode.h" | 27 #include "webrtc/base/stringencode.h" |
| 28 #include "webrtc/base/stringutils.h" | 28 #include "webrtc/base/stringutils.h" |
| 29 #include "webrtc/base/trace_event.h" | 29 #include "webrtc/base/trace_event.h" |
| 30 #include "webrtc/call/rtc_event_log.h" | 30 #include "webrtc/call/rtc_event_log.h" |
| 31 #include "webrtc/common.h" | 31 #include "webrtc/common.h" |
| 32 #include "webrtc/media/base/audioframe.h" | |
| 33 #include "webrtc/media/base/audiosource.h" | 32 #include "webrtc/media/base/audiosource.h" |
| 34 #include "webrtc/media/base/mediaconstants.h" | 33 #include "webrtc/media/base/mediaconstants.h" |
| 35 #include "webrtc/media/base/streamparams.h" | 34 #include "webrtc/media/base/streamparams.h" |
| 36 #include "webrtc/media/engine/webrtcmediaengine.h" | 35 #include "webrtc/media/engine/webrtcmediaengine.h" |
| 37 #include "webrtc/media/engine/webrtcvoe.h" | 36 #include "webrtc/media/engine/webrtcvoe.h" |
| 38 #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" | 37 #include "webrtc/modules/audio_coding/acm2/rent_a_codec.h" |
| 39 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 38 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
| 40 #include "webrtc/system_wrappers/include/field_trial.h" | 39 #include "webrtc/system_wrappers/include/field_trial.h" |
| 41 #include "webrtc/system_wrappers/include/trace.h" | 40 #include "webrtc/system_wrappers/include/trace.h" |
| 42 | 41 |
| (...skipping 2513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2556 } | 2555 } |
| 2557 } else { | 2556 } else { |
| 2558 LOG(LS_INFO) << "Stopping playout for channel #" << channel; | 2557 LOG(LS_INFO) << "Stopping playout for channel #" << channel; |
| 2559 engine()->voe()->base()->StopPlayout(channel); | 2558 engine()->voe()->base()->StopPlayout(channel); |
| 2560 } | 2559 } |
| 2561 return true; | 2560 return true; |
| 2562 } | 2561 } |
| 2563 } // namespace cricket | 2562 } // namespace cricket |
| 2564 | 2563 |
| 2565 #endif // HAVE_WEBRTC_VOICE | 2564 #endif // HAVE_WEBRTC_VOICE |
| OLD | NEW |