| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_FILTERS_FFMPEG_AUDIO_DECODER_H_ | 5 #ifndef MEDIA_FILTERS_FFMPEG_AUDIO_DECODER_H_ |
| 6 #define MEDIA_FILTERS_FFMPEG_AUDIO_DECODER_H_ | 6 #define MEDIA_FILTERS_FFMPEG_AUDIO_DECODER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "media/base/audio_decoder.h" | 12 #include "media/base/audio_decoder.h" |
| 13 | 13 |
| 14 struct AVCodecContext; | 14 struct AVCodecContext; |
| 15 struct AVFrame; |
| 15 | 16 |
| 16 namespace media { | 17 namespace media { |
| 17 | 18 |
| 18 class DataBuffer; | 19 class DataBuffer; |
| 19 class DecoderBuffer; | 20 class DecoderBuffer; |
| 20 | 21 |
| 21 class MEDIA_EXPORT FFmpegAudioDecoder : public AudioDecoder { | 22 class MEDIA_EXPORT FFmpegAudioDecoder : public AudioDecoder { |
| 22 public: | 23 public: |
| 23 FFmpegAudioDecoder(const base::Callback<MessageLoop*()>& message_loop_cb); | 24 FFmpegAudioDecoder(const base::Callback<MessageLoop*()>& message_loop_cb); |
| 24 | 25 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 StatisticsCB statistics_cb_; | 68 StatisticsCB statistics_cb_; |
| 68 AVCodecContext* codec_context_; | 69 AVCodecContext* codec_context_; |
| 69 | 70 |
| 70 // Decoded audio format. | 71 // Decoded audio format. |
| 71 int bits_per_channel_; | 72 int bits_per_channel_; |
| 72 ChannelLayout channel_layout_; | 73 ChannelLayout channel_layout_; |
| 73 int samples_per_second_; | 74 int samples_per_second_; |
| 74 | 75 |
| 75 base::TimeDelta estimated_next_timestamp_; | 76 base::TimeDelta estimated_next_timestamp_; |
| 76 | 77 |
| 77 // Holds decoded audio. As required by FFmpeg, input/output buffers should | 78 // Holds decoded audio. |
| 78 // be allocated with suitable padding and alignment. av_malloc() provides | 79 AVFrame* av_frame_; |
| 79 // us that guarantee. | |
| 80 const int decoded_audio_size_; | |
| 81 uint8* decoded_audio_; // Allocated via av_malloc(). | |
| 82 | 80 |
| 83 ReadCB read_cb_; | 81 ReadCB read_cb_; |
| 84 | 82 |
| 85 DISALLOW_IMPLICIT_CONSTRUCTORS(FFmpegAudioDecoder); | 83 DISALLOW_IMPLICIT_CONSTRUCTORS(FFmpegAudioDecoder); |
| 86 }; | 84 }; |
| 87 | 85 |
| 88 } // namespace media | 86 } // namespace media |
| 89 | 87 |
| 90 #endif // MEDIA_FILTERS_FFMPEG_AUDIO_DECODER_H_ | 88 #endif // MEDIA_FILTERS_FFMPEG_AUDIO_DECODER_H_ |
| OLD | NEW |