| 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 #include "media/filters/decrypting_audio_decoder.h" | 5 #include "media/filters/decrypting_audio_decoder.h" |
| 6 | 6 |
| 7 #include <cstdlib> | 7 #include <cstdlib> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/callback_helpers.h" | 10 #include "base/callback_helpers.h" |
| 11 #include "base/location.h" | 11 #include "base/location.h" |
| 12 #include "base/logging.h" |
| 12 #include "base/message_loop_proxy.h" | 13 #include "base/message_loop_proxy.h" |
| 13 #include "base/logging.h" | |
| 14 #include "media/base/audio_decoder_config.h" | 14 #include "media/base/audio_decoder_config.h" |
| 15 #include "media/base/bind_to_loop.h" | 15 #include "media/base/bind_to_loop.h" |
| 16 #include "media/base/buffers.h" | 16 #include "media/base/buffers.h" |
| 17 #include "media/base/data_buffer.h" | 17 #include "media/base/data_buffer.h" |
| 18 #include "media/base/decoder_buffer.h" | 18 #include "media/base/decoder_buffer.h" |
| 19 #include "media/base/decryptor.h" | 19 #include "media/base/decryptor.h" |
| 20 #include "media/base/demuxer_stream.h" | 20 #include "media/base/demuxer_stream.h" |
| 21 #include "media/base/pipeline.h" | 21 #include "media/base/pipeline.h" |
| 22 | 22 |
| 23 namespace media { | 23 namespace media { |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 | 452 |
| 453 base::TimeDelta DecryptingAudioDecoder::NumberOfSamplesToDuration( | 453 base::TimeDelta DecryptingAudioDecoder::NumberOfSamplesToDuration( |
| 454 int number_of_samples) const { | 454 int number_of_samples) const { |
| 455 DCHECK(samples_per_second_); | 455 DCHECK(samples_per_second_); |
| 456 return base::TimeDelta::FromMicroseconds(base::Time::kMicrosecondsPerSecond * | 456 return base::TimeDelta::FromMicroseconds(base::Time::kMicrosecondsPerSecond * |
| 457 number_of_samples / | 457 number_of_samples / |
| 458 samples_per_second_); | 458 samples_per_second_); |
| 459 } | 459 } |
| 460 | 460 |
| 461 } // namespace media | 461 } // namespace media |
| OLD | NEW |