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

Side by Side Diff: webrtc/modules/audio_coding/audio_coding.gypi

Issue 2326003002: Moved codec-specific audio packet splitting into decoders. (Closed)
Patch Set: Fixed types in packet splitting (size_t vs. uint32_t) Created 4 years, 3 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 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'acm2/call_statistics.cc', 179 'acm2/call_statistics.cc',
180 'acm2/call_statistics.h', 180 'acm2/call_statistics.h',
181 'acm2/codec_manager.cc', 181 'acm2/codec_manager.cc',
182 'acm2/codec_manager.h', 182 'acm2/codec_manager.h',
183 'acm2/initial_delay_manager.cc', 183 'acm2/initial_delay_manager.cc',
184 'acm2/initial_delay_manager.h', 184 'acm2/initial_delay_manager.h',
185 'include/audio_coding_module.h', 185 'include/audio_coding_module.h',
186 'include/audio_coding_module_typedefs.h', 186 'include/audio_coding_module_typedefs.h',
187 ], 187 ],
188 }, 188 },
189 {
190 'target_name': 'legacy_encoded_audio_frame',
191 'type': 'static_library',
192 'dependencies': [
193 '<(webrtc_root)/common.gyp:webrtc_common',
194 'audio_decoder_interface',
195 ],
196 'include_dirs': [
197 '<(webrtc_root)',
198 ],
199 'direct_dependent_settings': {
200 'include_dirs': [
201 '<(webrtc_root)',
202 ],
203 },
204 'sources': [
205 'codecs/legacy_encoded_audio_frame.cc',
206 'codecs/legacy_encoded_audio_frame.h',
207 ],
208 },
189 ], 209 ],
190 'conditions': [ 210 'conditions': [
191 ['include_opus==1', { 211 ['include_opus==1', {
192 'includes': ['codecs/opus/opus.gypi',], 212 'includes': ['codecs/opus/opus.gypi',],
193 }], 213 }],
194 ], 214 ],
195 } 215 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/modules/audio_coding/codecs/audio_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698