| Index: media/filters/opus_audio_decoder.h
|
| diff --git a/media/filters/opus_audio_decoder.h b/media/filters/opus_audio_decoder.h
|
| index 50ba0690eb37ecde901cfe7245d4b5f6a4c6e388..c8740a4eb7fd352f6609c4528b4920da1b82021c 100644
|
| --- a/media/filters/opus_audio_decoder.h
|
| +++ b/media/filters/opus_audio_decoder.h
|
| @@ -10,6 +10,7 @@
|
| #include "base/time/time.h"
|
| #include "media/base/audio_decoder.h"
|
| #include "media/base/demuxer_stream.h"
|
| +#include "media/base/sample_format.h"
|
|
|
| struct OpusMSDecoder;
|
|
|
| @@ -65,6 +66,7 @@ class MEDIA_EXPORT OpusAudioDecoder : public AudioDecoder {
|
| int bits_per_channel_;
|
| ChannelLayout channel_layout_;
|
| int samples_per_second_;
|
| + SampleFormat sample_format_;
|
|
|
| // Used for computing output timestamps.
|
| scoped_ptr<AudioTimestampHelper> output_timestamp_helper_;
|
| @@ -87,9 +89,6 @@ class MEDIA_EXPORT OpusAudioDecoder : public AudioDecoder {
|
| // from the CodecDelay value in the container.
|
| base::TimeDelta timestamp_offset_;
|
|
|
| - // Buffer for output from libopus.
|
| - scoped_ptr<int16[]> output_buffer_;
|
| -
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(OpusAudioDecoder);
|
| };
|
|
|
|
|