| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chromecast/media/cma/pipeline/av_pipeline_impl.h" | 5 #include "chromecast/media/cma/pipeline/av_pipeline_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
| 10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| 11 #include "chromecast/media/base/decrypt_context.h" | 11 #include "chromecast/media/base/decrypt_context.h" |
| 12 #include "chromecast/media/cdm/browser_cdm_cast.h" | 12 #include "chromecast/media/cdm/browser_cdm_cast.h" |
| 13 #include "chromecast/media/cma/backend/media_clock_device.h" | 13 #include "chromecast/media/cma/backend/media_clock_device.h" |
| 14 #include "chromecast/media/cma/backend/media_component_device.h" | 14 #include "chromecast/media/cma/backend/media_component_device.h" |
| 15 #include "chromecast/media/cma/base/buffering_frame_provider.h" | 15 #include "chromecast/media/cma/base/buffering_frame_provider.h" |
| 16 #include "chromecast/media/cma/base/buffering_state.h" | 16 #include "chromecast/media/cma/base/buffering_state.h" |
| 17 #include "chromecast/media/cma/base/cma_logging.h" | 17 #include "chromecast/media/cma/base/cma_logging.h" |
| 18 #include "chromecast/media/cma/base/coded_frame_provider.h" | 18 #include "chromecast/media/cma/base/coded_frame_provider.h" |
| 19 #include "chromecast/media/cma/base/decoder_buffer_base.h" | 19 #include "chromecast/media/cma/base/decoder_buffer_base.h" |
| 20 #include "chromecast/media/cma/pipeline/decrypt_util.h" | 20 #include "chromecast/media/cma/pipeline/decrypt_util.h" |
| 21 #include "media/base/audio_decoder_config.h" | 21 #include "media/base/audio_decoder_config.h" |
| 22 #include "media/base/bind_to_current_loop.h" | |
| 23 #include "media/base/decrypt_config.h" | 22 #include "media/base/decrypt_config.h" |
| 24 | 23 |
| 25 namespace chromecast { | 24 namespace chromecast { |
| 26 namespace media { | 25 namespace media { |
| 27 | 26 |
| 28 namespace { | 27 namespace { |
| 29 | 28 |
| 30 const int kNoCallbackId = -1; | 29 const int kNoCallbackId = -1; |
| 31 | 30 |
| 32 } // namespace | 31 } // namespace |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 } | 377 } |
| 379 } | 378 } |
| 380 | 379 |
| 381 // The frame is playable: remove it from the list of non playable frames. | 380 // The frame is playable: remove it from the list of non playable frames. |
| 382 non_playable_frames_.pop_front(); | 381 non_playable_frames_.pop_front(); |
| 383 } | 382 } |
| 384 } | 383 } |
| 385 | 384 |
| 386 } // namespace media | 385 } // namespace media |
| 387 } // namespace chromecast | 386 } // namespace chromecast |
| OLD | NEW |