| 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/vpx_video_decoder.h" | 5 #include "media/filters/vpx_video_decoder.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 DCHECK(task_runner_->BelongsToCurrentThread()); | 271 DCHECK(task_runner_->BelongsToCurrentThread()); |
| 272 CloseDecoder(); | 272 CloseDecoder(); |
| 273 } | 273 } |
| 274 | 274 |
| 275 std::string VpxVideoDecoder::GetDisplayName() const { | 275 std::string VpxVideoDecoder::GetDisplayName() const { |
| 276 return "VpxVideoDecoder"; | 276 return "VpxVideoDecoder"; |
| 277 } | 277 } |
| 278 | 278 |
| 279 void VpxVideoDecoder::Initialize(const VideoDecoderConfig& config, | 279 void VpxVideoDecoder::Initialize(const VideoDecoderConfig& config, |
| 280 bool low_delay, | 280 bool low_delay, |
| 281 const SetCdmReadyCB& /* set_cdm_ready_cb */, | |
| 282 const InitCB& init_cb, | 281 const InitCB& init_cb, |
| 283 const OutputCB& output_cb) { | 282 const OutputCB& output_cb) { |
| 284 DCHECK(task_runner_->BelongsToCurrentThread()); | 283 DCHECK(task_runner_->BelongsToCurrentThread()); |
| 285 DCHECK(config.IsValidConfig()); | 284 DCHECK(config.IsValidConfig()); |
| 286 DCHECK(decode_cb_.is_null()); | 285 DCHECK(decode_cb_.is_null()); |
| 287 | 286 |
| 288 InitCB bound_init_cb = BindToCurrentLoop(init_cb); | 287 InitCB bound_init_cb = BindToCurrentLoop(init_cb); |
| 289 | 288 |
| 290 if (config.is_encrypted() || !ConfigureDecoder(config)) { | 289 if (config.is_encrypted() || !ConfigureDecoder(config)) { |
| 291 bound_init_cb.Run(false); | 290 bound_init_cb.Run(false); |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 vpx_image->stride[VPX_PLANE_Y], vpx_image->d_h, video_frame->get()); | 612 vpx_image->stride[VPX_PLANE_Y], vpx_image->d_h, video_frame->get()); |
| 614 return; | 613 return; |
| 615 } | 614 } |
| 616 CopyAPlane(vpx_image_alpha->planes[VPX_PLANE_Y], | 615 CopyAPlane(vpx_image_alpha->planes[VPX_PLANE_Y], |
| 617 vpx_image_alpha->stride[VPX_PLANE_Y], | 616 vpx_image_alpha->stride[VPX_PLANE_Y], |
| 618 vpx_image_alpha->d_h, | 617 vpx_image_alpha->d_h, |
| 619 video_frame->get()); | 618 video_frame->get()); |
| 620 } | 619 } |
| 621 | 620 |
| 622 } // namespace media | 621 } // namespace media |
| OLD | NEW |