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

Unified Diff: chromecast/media/cma/backend/alsa/audio_filter_interface.h

Issue 2771143002: Implement runtime audio post-processing pipeline. See go/cast_audio.json (Closed)
Patch Set: Suffix governor with _1.0 Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chromecast/media/cma/backend/alsa/audio_filter_interface.h
diff --git a/chromecast/media/cma/backend/alsa/audio_filter_interface.h b/chromecast/media/cma/backend/alsa/audio_filter_interface.h
deleted file mode 100644
index a4e6ddf0359b3a3b14ff37fed7469197d8cf90e7..0000000000000000000000000000000000000000
--- a/chromecast/media/cma/backend/alsa/audio_filter_interface.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROMECAST_MEDIA_CMA_BACKEND_ALSA_AUDIO_FILTER_INTERFACE_H_
-#define CHROMECAST_MEDIA_CMA_BACKEND_ALSA_AUDIO_FILTER_INTERFACE_H_
-
-#include <stdint.h>
-
-#include "media/base/sample_format.h"
-
-namespace chromecast {
-namespace media {
-
-class AudioFilterInterface {
- public:
- virtual ~AudioFilterInterface() = default;
- virtual bool SetSampleRateAndFormat(int sample_rate,
- ::media::SampleFormat sample_format) = 0;
-
- // Process data frames. Must be interleaved. |data| will be overwritten.
- virtual bool ProcessInterleaved(uint8_t* data, int frames, float volume) = 0;
-};
-
-} // namespace media
-} // namespace chromecast
-
-#endif // CHROMECAST_MEDIA_CMA_BACKEND_ALSA_AUDIO_FILTER_INTERFACE_H_
« no previous file with comments | « chromecast/media/cma/backend/alsa/audio_filter_factory_default.cc ('k') | chromecast/media/cma/backend/alsa/filter_group.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698