| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 # | |
| 5 # Functions from OpenMAX IL used in Chromium code. | |
| 6 | |
| 7 OMX_ERRORTYPE OMX_Init(void); | |
| 8 OMX_ERRORTYPE OMX_Deinit(void); | |
| 9 OMX_ERRORTYPE OMX_GetHandle(OMX_HANDLETYPE* pHandle, OMX_STRING cComponentName,
OMX_PTR pAppData, OMX_CALLBACKTYPE* pCallBacks); | |
| 10 OMX_ERRORTYPE OMX_FreeHandle(OMX_HANDLETYPE hComponent); | |
| 11 OMX_ERRORTYPE OMX_GetComponentsOfRole (OMX_STRING role, OMX_U32* pNumComps, OMX_
U8** compNames); | |
| OLD | NEW |