| OLD | NEW |
| 1 // Copyright (c) 2011 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 CONTENT_GPU_OMX_VIDEO_DECODE_ACCELERATOR_H_ | 5 #ifndef CONTENT_GPU_OMX_VIDEO_DECODE_ACCELERATOR_H_ |
| 6 #define CONTENT_GPU_OMX_VIDEO_DECODE_ACCELERATOR_H_ | 6 #define CONTENT_GPU_OMX_VIDEO_DECODE_ACCELERATOR_H_ |
| 7 | 7 |
| 8 #include <dlfcn.h> | 8 #include <dlfcn.h> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <queue> | 10 #include <queue> |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 OMX_PTR event_data); | 156 OMX_PTR event_data); |
| 157 static OMX_ERRORTYPE EmptyBufferCallback(OMX_HANDLETYPE component, | 157 static OMX_ERRORTYPE EmptyBufferCallback(OMX_HANDLETYPE component, |
| 158 OMX_PTR priv_data, | 158 OMX_PTR priv_data, |
| 159 OMX_BUFFERHEADERTYPE* buffer); | 159 OMX_BUFFERHEADERTYPE* buffer); |
| 160 static OMX_ERRORTYPE FillBufferCallback(OMX_HANDLETYPE component, | 160 static OMX_ERRORTYPE FillBufferCallback(OMX_HANDLETYPE component, |
| 161 OMX_PTR priv_data, | 161 OMX_PTR priv_data, |
| 162 OMX_BUFFERHEADERTYPE* buffer); | 162 OMX_BUFFERHEADERTYPE* buffer); |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 #endif // CONTENT_GPU_OMX_VIDEO_DECODE_ACCELERATOR_H_ | 165 #endif // CONTENT_GPU_OMX_VIDEO_DECODE_ACCELERATOR_H_ |
| OLD | NEW |