Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: webrtc/voice_engine/coder.cc

Issue 2622493002: Move FilePlayer and FileRecorder to Voice Engine (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
11 #include "webrtc/voice_engine/coder.h"
12
11 #include "webrtc/common_types.h" 13 #include "webrtc/common_types.h"
12 #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h" 14 #include "webrtc/modules/audio_coding/codecs/audio_format_conversion.h"
13 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h" 15 #include "webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h"
14 #include "webrtc/modules/include/module_common_types.h" 16 #include "webrtc/modules/include/module_common_types.h"
15 #include "webrtc/modules/utility/source/coder.h"
16 17
17 namespace webrtc { 18 namespace webrtc {
18 namespace { 19 namespace {
19 AudioCodingModule::Config GetAcmConfig(uint32_t id) { 20 AudioCodingModule::Config GetAcmConfig(uint32_t id) {
20 AudioCodingModule::Config config; 21 AudioCodingModule::Config config;
21 // This class does not handle muted output. 22 // This class does not handle muted output.
22 config.neteq_config.enable_muted_state = false; 23 config.neteq_config.enable_muted_state = false;
23 config.id = id; 24 config.id = id;
24 config.decoder_factory = CreateBuiltinAudioDecoderFactory(); 25 config.decoder_factory = CreateBuiltinAudioDecoderFactory();
25 return config; 26 return config;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 uint32_t /* time_stamp */, 108 uint32_t /* time_stamp */,
108 const uint8_t* payload_data, 109 const uint8_t* payload_data,
109 size_t payload_size, 110 size_t payload_size,
110 const RTPFragmentationHeader* /* fragmentation*/) { 111 const RTPFragmentationHeader* /* fragmentation*/) {
111 memcpy(encoded_data_, payload_data, sizeof(uint8_t) * payload_size); 112 memcpy(encoded_data_, payload_data, sizeof(uint8_t) * payload_size);
112 encoded_length_in_bytes_ = payload_size; 113 encoded_length_in_bytes_ = payload_size;
113 return 0; 114 return 0;
114 } 115 }
115 116
116 } // namespace webrtc 117 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698