Home | History | Annotate | Download | only in common

Lines Matching refs:hComp

85 qc_omx_component_init(OMX_IN OMX_HANDLETYPE hComp, OMX_IN OMX_STRING componentName)
88 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
89 DEBUG_PRINT("OMXCORE: qc_omx_component_init %x\n",(unsigned)hComp);
107 qc_omx_component_get_version(OMX_IN OMX_HANDLETYPE hComp,
114 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
115 DEBUG_PRINT("OMXCORE: qc_omx_component_get_version %x, %s , %x\n",(unsigned)hComp,componentName,(unsigned)componentVersion);
118 eRet = pThis->get_component_version(hComp,componentName,componentVersion,specVersion,componentUUID);
124 qc_omx_component_send_command(OMX_IN OMX_HANDLETYPE hComp,
130 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
131 DEBUG_PRINT("OMXCORE: qc_omx_component_send_command %x, %d , %d\n",(unsigned)hComp,(unsigned)cmd,(unsigned)param1);
135 eRet = pThis->send_command(hComp,cmd,param1,cmdData);
141 qc_omx_component_get_parameter(OMX_IN OMX_HANDLETYPE hComp,
146 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
147 DEBUG_PRINT("OMXCORE: qc_omx_component_get_parameter %x, %x , %d\n",(unsigned)hComp,(unsigned)paramData,paramIndex);
151 eRet = pThis->get_parameter(hComp,paramIndex,paramData);
157 qc_omx_component_set_parameter(OMX_IN OMX_HANDLETYPE hComp,
162 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
163 DEBUG_PRINT("OMXCORE: qc_omx_component_set_parameter %x, %x , %d\n",(unsigned)hComp,(unsigned)paramData,paramIndex);
167 eRet = pThis->set_parameter(hComp,paramIndex,paramData);
173 qc_omx_component_get_config(OMX_IN OMX_HANDLETYPE hComp,
178 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
179 DEBUG_PRINT("OMXCORE: qc_omx_component_get_config %x\n",(unsigned)hComp);
183 eRet = pThis->get_config(hComp,
191 qc_omx_component_set_config(OMX_IN OMX_HANDLETYPE hComp,
196 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
197 DEBUG_PRINT("OMXCORE: qc_omx_component_set_config %x\n",(unsigned)hComp);
201 eRet = pThis->set_config(hComp,
209 qc_omx_component_get_extension_index(OMX_IN OMX_HANDLETYPE hComp,
214 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
217 eRet = pThis->get_extension_index(hComp,paramName,indexType);
223 qc_omx_component_get_state(OMX_IN OMX_HANDLETYPE hComp,
227 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
228 DEBUG_PRINT("OMXCORE: qc_omx_component_get_state %x\n",(unsigned)hComp);
232 eRet = pThis->get_state(hComp,state);
238 qc_omx_component_tunnel_request(OMX_IN OMX_HANDLETYPE hComp,
249 qc_omx_component_use_buffer(OMX_IN OMX_HANDLETYPE hComp,
257 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
258 DEBUG_PRINT("OMXCORE: qc_omx_component_use_buffer %x\n",(unsigned)hComp);
262 eRet = pThis->use_buffer(hComp,
275 qc_omx_component_allocate_buffer(OMX_IN OMX_HANDLETYPE hComp,
283 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
284 DEBUG_PRINT("OMXCORE: qc_omx_component_allocate_buffer %x, %x , %d\n",(unsigned)hComp,(unsigned)bufferHdr,(unsigned)port);
288 eRet = pThis->allocate_buffer(hComp,bufferHdr,port,appData,bytes);
294 qc_omx_component_free_buffer(OMX_IN OMX_HANDLETYPE hComp,
300 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
301 DEBUG_PRINT("OMXCORE: qc_omx_component_free_buffer[%d] %x, %x\n", (unsigned)port, (unsigned)hComp, (unsigned)buffer);
305 eRet = pThis->free_buffer(hComp,port,buffer);
311 qc_omx_component_empty_this_buffer(OMX_IN OMX_HANDLETYPE hComp,
315 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
316 DEBUG_PRINT("OMXCORE: qc_omx_component_empty_this_buffer %x, %x\n",(unsigned)hComp,(unsigned)buffer);
320 eRet = pThis->empty_this_buffer(hComp,buffer);
326 qc_omx_component_fill_this_buffer(OMX_IN OMX_HANDLETYPE hComp,
330 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
331 DEBUG_PRINT("OMXCORE: qc_omx_component_fill_this_buffer %x, %x\n",(unsigned)hComp,(unsigned)buffer);
334 eRet = pThis->fill_this_buffer(hComp,buffer);
340 qc_omx_component_set_callbacks(OMX_IN OMX_HANDLETYPE hComp,
345 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
346 DEBUG_PRINT("OMXCORE: qc_omx_component_set_callbacks %x, %x , %x\n",(unsigned)hComp,(unsigned)callbacks,(unsigned)appData);
350 eRet = pThis->set_callbacks(hComp,callbacks,appData);
356 qc_omx_component_deinit(OMX_IN OMX_HANDLETYPE hComp)
359 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
360 DEBUG_PRINT("OMXCORE: qc_omx_component_deinit %x\n",(unsigned)hComp);
366 pThis->get_state(hComp,&state);
368 eRet = pThis->component_deinit(hComp);
371 ((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate = NULL;
377 qc_omx_component_use_EGL_image(OMX_IN OMX_HANDLETYPE hComp,
384 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
385 DEBUG_PRINT("OMXCORE: qc_omx_component_use_EGL_image %x, %x , %d\n",(unsigned)hComp,(unsigned)bufferHdr,(unsigned)port);
388 eRet = pThis->use_EGL_image(hComp,bufferHdr,port,appData,eglImage);
394 qc_omx_component_role_enum(OMX_IN OMX_HANDLETYPE hComp,
399 qc_omx_component *pThis = (hComp)? (qc_omx_component *)(((OMX_COMPONENTTYPE *)hComp)->pComponentPrivate):NULL;
400 DEBUG_PRINT("OMXCORE: qc_omx_component_role_enum %x, %x , %d\n",(unsigned)hComp,(unsigned)role,(unsigned)index);
404 eRet = pThis->component_role_enum(hComp,role,index);