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

Side by Side Diff: chromecast/media/cma/backend/alsa/audio_filter_factory_default.cc

Issue 2771143002: Implement runtime audio post-processing pipeline. See go/cast_audio.json (Closed)
Patch Set: Suffix governor with _1.0 Created 3 years, 8 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chromecast/media/cma/backend/alsa/audio_filter_factory.h"
6
7 // An AudioFilterFactory that just returns nullptrs
8
9 namespace chromecast {
10 namespace media {
11
12 std::unique_ptr<AudioFilterInterface> AudioFilterFactory::MakeAudioFilter(
13 AudioFilterFactory::FilterType filter_type) {
14 return nullptr;
15 }
16
17 } // namespace media
18 } // namespace chromecast
OLDNEW
« no previous file with comments | « chromecast/media/cma/backend/alsa/audio_filter_factory.h ('k') | chromecast/media/cma/backend/alsa/audio_filter_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698