| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_GPU_MEDIA_FAKE_GL_VIDEO_DECODE_ENGINE_H_ | 5 #ifndef CONTENT_GPU_MEDIA_FAKE_GL_VIDEO_DECODE_ENGINE_H_ |
| 6 #define CHROME_GPU_MEDIA_FAKE_GL_VIDEO_DECODE_ENGINE_H_ | 6 #define CONTENT_GPU_MEDIA_FAKE_GL_VIDEO_DECODE_ENGINE_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
| 12 #include "media/base/pipeline.h" | 12 #include "media/base/pipeline.h" |
| 13 #include "media/video/video_decode_engine.h" | 13 #include "media/video/video_decode_engine.h" |
| 14 | 14 |
| 15 namespace media { | 15 namespace media { |
| 16 class VideoDecodeContext; | 16 class VideoDecodeContext; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // These are the video frames that are waiting for input buffer to generate | 58 // These are the video frames that are waiting for input buffer to generate |
| 59 // fake pattern in them. | 59 // fake pattern in them. |
| 60 std::queue<scoped_refptr<media::VideoFrame> > pending_frames_; | 60 std::queue<scoped_refptr<media::VideoFrame> > pending_frames_; |
| 61 | 61 |
| 62 // Dummy statistics. | 62 // Dummy statistics. |
| 63 media::PipelineStatistics dummy_stats_; | 63 media::PipelineStatistics dummy_stats_; |
| 64 | 64 |
| 65 DISALLOW_COPY_AND_ASSIGN(FakeGlVideoDecodeEngine); | 65 DISALLOW_COPY_AND_ASSIGN(FakeGlVideoDecodeEngine); |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 #endif // CHROME_GPU_MEDIA_FAKE_GL_VIDEO_DECODE_ENGINE_H_ | 68 #endif // CONTENT_GPU_MEDIA_FAKE_GL_VIDEO_DECODE_ENGINE_H_ |
| OLD | NEW |