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

Side by Side Diff: media/media.gyp

Issue 10701049: Add MultiChannelResampler wrapper for SincResampler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial Commit! Created 8 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 'base/media_export.h', 172 'base/media_export.h',
173 'base/media_log.cc', 173 'base/media_log.cc',
174 'base/media_log.h', 174 'base/media_log.h',
175 'base/media_log_event.h', 175 'base/media_log_event.h',
176 'base/media_posix.cc', 176 'base/media_posix.cc',
177 'base/media_switches.cc', 177 'base/media_switches.cc',
178 'base/media_switches.h', 178 'base/media_switches.h',
179 'base/media_win.cc', 179 'base/media_win.cc',
180 'base/message_loop_factory.cc', 180 'base/message_loop_factory.cc',
181 'base/message_loop_factory.h', 181 'base/message_loop_factory.h',
182 'base/multi_channel_resampler.cc',
183 'base/multi_channel_resampler.h',
182 'base/pipeline.cc', 184 'base/pipeline.cc',
183 'base/pipeline.h', 185 'base/pipeline.h',
184 'base/pipeline_status.cc', 186 'base/pipeline_status.cc',
185 'base/pipeline_status.h', 187 'base/pipeline_status.h',
186 'base/ranges.cc', 188 'base/ranges.cc',
187 'base/ranges.h', 189 'base/ranges.h',
188 'base/seekable_buffer.cc', 190 'base/seekable_buffer.cc',
189 'base/seekable_buffer.h', 191 'base/seekable_buffer.h',
190 'base/sinc_resampler.cc', 192 'base/sinc_resampler.cc',
191 'base/sinc_resampler.h', 193 'base/sinc_resampler.h',
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 'base/buffers_unittest.cc', 672 'base/buffers_unittest.cc',
671 'base/clock_unittest.cc', 673 'base/clock_unittest.cc',
672 'base/composite_filter_unittest.cc', 674 'base/composite_filter_unittest.cc',
673 'base/data_buffer_unittest.cc', 675 'base/data_buffer_unittest.cc',
674 'base/decoder_buffer_unittest.cc', 676 'base/decoder_buffer_unittest.cc',
675 'base/djb2_unittest.cc', 677 'base/djb2_unittest.cc',
676 'base/fake_audio_render_callback.cc', 678 'base/fake_audio_render_callback.cc',
677 'base/fake_audio_render_callback.h', 679 'base/fake_audio_render_callback.h',
678 'base/filter_collection_unittest.cc', 680 'base/filter_collection_unittest.cc',
679 'base/h264_bitstream_converter_unittest.cc', 681 'base/h264_bitstream_converter_unittest.cc',
682 'base/multi_channel_resampler_unittest.cc',
680 'base/pipeline_unittest.cc', 683 'base/pipeline_unittest.cc',
681 'base/ranges_unittest.cc', 684 'base/ranges_unittest.cc',
682 'base/run_all_unittests.cc', 685 'base/run_all_unittests.cc',
683 'base/seekable_buffer_unittest.cc', 686 'base/seekable_buffer_unittest.cc',
684 'base/sinc_resampler_unittest.cc', 687 'base/sinc_resampler_unittest.cc',
685 'base/state_matrix_unittest.cc', 688 'base/state_matrix_unittest.cc',
686 'base/test_data_util.cc', 689 'base/test_data_util.cc',
687 'base/test_data_util.h', 690 'base/test_data_util.h',
688 'base/video_frame_unittest.cc', 691 'base/video_frame_unittest.cc',
689 'base/video_util_unittest.cc', 692 'base/video_util_unittest.cc',
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 1102 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
1100 ], 1103 ],
1101 'sources': [ 1104 'sources': [
1102 'tools/media_bench/media_bench.cc', 1105 'tools/media_bench/media_bench.cc',
1103 ], 1106 ],
1104 }, 1107 },
1105 ], 1108 ],
1106 }] 1109 }]
1107 ], 1110 ],
1108 } 1111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698