| 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_GPU_VIDEO_DECODER_H_ | 5 #ifndef MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ |
| 6 #define MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ | 6 #define MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ |
| 7 | 7 |
| 8 #include <deque> | |
| 9 #include <list> | 8 #include <list> |
| 10 #include <map> | 9 #include <map> |
| 11 #include <utility> | 10 #include <utility> |
| 11 #include <vector> |
| 12 | 12 |
| 13 #include "media/base/pipeline_status.h" | 13 #include "media/base/pipeline_status.h" |
| 14 #include "media/base/demuxer_stream.h" | 14 #include "media/base/demuxer_stream.h" |
| 15 #include "media/base/video_decoder.h" | 15 #include "media/base/video_decoder.h" |
| 16 #include "media/video/video_decode_accelerator.h" | 16 #include "media/video/video_decode_accelerator.h" |
| 17 | 17 |
| 18 class MessageLoop; | 18 class MessageLoop; |
| 19 template <class T> class scoped_refptr; | 19 template <class T> class scoped_refptr; |
| 20 namespace base { | 20 namespace base { |
| 21 class MessageLoopProxy; | 21 class MessageLoopProxy; |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 // Indicates decoding error occurred. | 217 // Indicates decoding error occurred. |
| 218 bool error_occured_; | 218 bool error_occured_; |
| 219 | 219 |
| 220 DISALLOW_COPY_AND_ASSIGN(GpuVideoDecoder); | 220 DISALLOW_COPY_AND_ASSIGN(GpuVideoDecoder); |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 } // namespace media | 223 } // namespace media |
| 224 | 224 |
| 225 #endif // MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ | 225 #endif // MEDIA_FILTERS_GPU_VIDEO_DECODER_H_ |
| OLD | NEW |