| 59 | } |
| 60 | |
| 61 | inline |
| 62 | bool OMX_Core::init() |
| 63 | { |
| 64 | LOG_VERBOSE(LOG_TAG, "Initializing OMXCore..."); |
| 65 | |
| 66 | bcm_host_init(); |
| 67 | if (OMX_Init() != OMX_ErrorNone) { |
| 68 | bcm_host_deinit(); |
| 69 | return false; |
| 70 | } |
| 71 | return true; |
| 72 | } |
| 73 | |
| 74 | inline |
| 75 | void OMX_Core::shutdown() |
nothing calls this directly
no outgoing calls
no test coverage detected