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 "content/common/gpu/media/dxva_video_decode_accelerator.h" | 5 #include "content/common/gpu/media/dxva_video_decode_accelerator.h" |
6 | 6 |
7 #if !defined(OS_WIN) | 7 #if !defined(OS_WIN) |
8 #error This file should only be built on Windows. | 8 #error This file should only be built on Windows. |
9 #endif // !defined(OS_WIN) | 9 #endif // !defined(OS_WIN) |
10 | 10 |
(...skipping 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 } | 1234 } |
1235 } | 1235 } |
1236 | 1236 |
1237 void DXVAVideoDecodeAccelerator::NotifyPictureReady( | 1237 void DXVAVideoDecodeAccelerator::NotifyPictureReady( |
1238 int picture_buffer_id, | 1238 int picture_buffer_id, |
1239 int input_buffer_id, | 1239 int input_buffer_id, |
1240 const gfx::Rect& picture_buffer_size) { | 1240 const gfx::Rect& picture_buffer_size) { |
1241 DCHECK(main_thread_task_runner_->BelongsToCurrentThread()); | 1241 DCHECK(main_thread_task_runner_->BelongsToCurrentThread()); |
1242 // This task could execute after the decoder has been torn down. | 1242 // This task could execute after the decoder has been torn down. |
1243 if (GetState() != kUninitialized && client_) { | 1243 if (GetState() != kUninitialized && client_) { |
1244 media::Picture picture(picture_buffer_id, | 1244 media::Picture picture(picture_buffer_id, input_buffer_id, |
1245 input_buffer_id, | 1245 picture_buffer_size, false); |
1246 picture_buffer_size); | |
1247 client_->PictureReady(picture); | 1246 client_->PictureReady(picture); |
1248 } | 1247 } |
1249 } | 1248 } |
1250 | 1249 |
1251 void DXVAVideoDecodeAccelerator::NotifyInputBuffersDropped() { | 1250 void DXVAVideoDecodeAccelerator::NotifyInputBuffersDropped() { |
1252 DCHECK(main_thread_task_runner_->BelongsToCurrentThread()); | 1251 DCHECK(main_thread_task_runner_->BelongsToCurrentThread()); |
1253 if (!client_) | 1252 if (!client_) |
1254 return; | 1253 return; |
1255 | 1254 |
1256 for (PendingInputs::iterator it = pending_input_buffers_.begin(); | 1255 for (PendingInputs::iterator it = pending_input_buffers_.begin(); |
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1624 FROM_HERE, | 1623 FROM_HERE, |
1625 base::Bind(&DXVAVideoDecodeAccelerator::CopySurfaceComplete, | 1624 base::Bind(&DXVAVideoDecodeAccelerator::CopySurfaceComplete, |
1626 weak_this_factory_.GetWeakPtr(), | 1625 weak_this_factory_.GetWeakPtr(), |
1627 src_surface, | 1626 src_surface, |
1628 dest_surface, | 1627 dest_surface, |
1629 picture_buffer_id, | 1628 picture_buffer_id, |
1630 input_buffer_id)); | 1629 input_buffer_id)); |
1631 } | 1630 } |
1632 | 1631 |
1633 } // namespace content | 1632 } // namespace content |
OLD | NEW |