[App banners] Add RAPPOR support
[chromium-blink-merge.git] / media / base / audio_decoder_config.h
blob9b2fe96855dba536bc7564cd993f57fdcb970cb4
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
3 // found in the LICENSE file.
5 #ifndef MEDIA_BASE_AUDIO_DECODER_CONFIG_H_
6 #define MEDIA_BASE_AUDIO_DECODER_CONFIG_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "base/time/time.h"
13 #include "media/base/channel_layout.h"
14 #include "media/base/media_export.h"
15 #include "media/base/sample_format.h"
17 namespace media {
19 enum AudioCodec {
20 // These values are histogrammed over time; do not change their ordinal
21 // values. When deleting a codec replace it with a dummy value; when adding a
22 // codec, do so at the bottom before kAudioCodecMax, and update the value of
23 // kAudioCodecMax to equal the new codec.
24 kUnknownAudioCodec = 0,
25 kCodecAAC = 1,
26 kCodecMP3 = 2,
27 kCodecPCM = 3,
28 kCodecVorbis = 4,
29 kCodecFLAC = 5,
30 kCodecAMR_NB = 6,
31 kCodecAMR_WB = 7,
32 kCodecPCM_MULAW = 8,
33 kCodecGSM_MS = 9,
34 kCodecPCM_S16BE = 10,
35 kCodecPCM_S24BE = 11,
36 kCodecOpus = 12,
37 // kCodecEAC3 = 13,
38 kCodecPCM_ALAW = 14,
39 kCodecALAC = 15,
40 // DO NOT ADD RANDOM AUDIO CODECS!
42 // The only acceptable time to add a new codec is if there is production code
43 // that uses said codec in the same CL.
45 // Must always be equal to the largest entry ever logged.
46 kAudioCodecMax = kCodecALAC,
49 // TODO(dalecurtis): FFmpeg API uses |bytes_per_channel| instead of
50 // |bits_per_channel|, we should switch over since bits are generally confusing
51 // to work with.
52 class MEDIA_EXPORT AudioDecoderConfig {
53 public:
54 // Constructs an uninitialized object. Clients should call Initialize() with
55 // appropriate values before using.
56 AudioDecoderConfig();
58 // Constructs an initialized object. It is acceptable to pass in NULL for
59 // |extra_data|, otherwise the memory is copied.
60 AudioDecoderConfig(AudioCodec codec, SampleFormat sample_format,
61 ChannelLayout channel_layout, int samples_per_second,
62 const uint8* extra_data, size_t extra_data_size,
63 bool is_encrypted);
65 ~AudioDecoderConfig();
67 // Resets the internal state of this object. |codec_delay| is in frames.
68 void Initialize(AudioCodec codec, SampleFormat sample_format,
69 ChannelLayout channel_layout, int samples_per_second,
70 const uint8* extra_data, size_t extra_data_size,
71 bool is_encrypted, bool record_stats,
72 base::TimeDelta seek_preroll,
73 int codec_delay);
75 // Returns true if this object has appropriate configuration values, false
76 // otherwise.
77 bool IsValidConfig() const;
79 // Returns true if all fields in |config| match this config.
80 // Note: The contents of |extra_data_| are compared not the raw pointers.
81 bool Matches(const AudioDecoderConfig& config) const;
83 // Returns a human-readable string describing |*this|. For debugging & test
84 // output only.
85 std::string AsHumanReadableString() const;
87 std::string GetHumanReadableCodecName() const;
89 AudioCodec codec() const { return codec_; }
90 int bits_per_channel() const { return bytes_per_channel_ * 8; }
91 int bytes_per_channel() const { return bytes_per_channel_; }
92 ChannelLayout channel_layout() const { return channel_layout_; }
93 int samples_per_second() const { return samples_per_second_; }
94 SampleFormat sample_format() const { return sample_format_; }
95 int bytes_per_frame() const { return bytes_per_frame_; }
96 base::TimeDelta seek_preroll() const { return seek_preroll_; }
97 int codec_delay() const { return codec_delay_; }
99 // Optional byte data required to initialize audio decoders such as Vorbis
100 // codebooks.
101 const uint8* extra_data() const {
102 return extra_data_.empty() ? NULL : &extra_data_[0];
104 size_t extra_data_size() const { return extra_data_.size(); }
106 // Whether the audio stream is potentially encrypted.
107 // Note that in a potentially encrypted audio stream, individual buffers
108 // can be encrypted or not encrypted.
109 bool is_encrypted() const { return is_encrypted_; }
111 private:
112 AudioCodec codec_;
113 SampleFormat sample_format_;
114 int bytes_per_channel_;
115 ChannelLayout channel_layout_;
116 int samples_per_second_;
117 int bytes_per_frame_;
118 std::vector<uint8> extra_data_;
119 bool is_encrypted_;
121 // |seek_preroll_| is the duration of the data that the decoder must decode
122 // before the decoded data is valid.
123 base::TimeDelta seek_preroll_;
125 // |codec_delay_| is the number of frames the decoder should discard before
126 // returning decoded data. This value can include both decoder delay as well
127 // as padding added during encoding.
128 int codec_delay_;
130 // Not using DISALLOW_COPY_AND_ASSIGN here intentionally to allow the compiler
131 // generated copy constructor and assignment operator. Since the extra data is
132 // typically small, the performance impact is minimal.
135 } // namespace media
137 #endif // MEDIA_BASE_AUDIO_DECODER_CONFIG_H_