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

Unified Diff: media/base/audio_decoder_config.h

Issue 7796033: Replace AudioDecoderConfig with simple accessors on AudioDecoder. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: rebase Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/audio_parameters_unittest.cc ('k') | media/base/filters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/audio_decoder_config.h
diff --git a/media/base/audio_decoder_config.h b/media/base/audio_decoder_config.h
deleted file mode 100644
index e2c848d03d56ec4b898119966a2fc3530553c145..0000000000000000000000000000000000000000
--- a/media/base/audio_decoder_config.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2011 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 MEDIA_BASE_AUDIO_DECODER_CONFIG_H_
-#define MEDIA_BASE_AUDIO_DECODER_CONFIG_H_
-
-#include "media/base/channel_layout.h"
-
-namespace media {
-
-struct AudioDecoderConfig {
- AudioDecoderConfig(int bits, ChannelLayout layout, int rate)
- : bits_per_channel(bits),
- channel_layout(layout),
- sample_rate(rate) {
- }
-
- int bits_per_channel;
- ChannelLayout channel_layout;
- int sample_rate;
-};
-
-} // namespace media
-
-#endif // MEDIA_BASE_AUDIO_DECODER_CONFIG_H_
« no previous file with comments | « media/audio/audio_parameters_unittest.cc ('k') | media/base/filters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698