Home | History | Annotate | Download | only in videocodec

Lines Matching defs:handler

76     OMXHANDLER handler = FindHandler(nIndex, true);
77 if (handler == NULL) {
78 LOGE("ComponentGetParameter: No handler for index %d", nIndex);
83 return (*handler)(this, pComponentParameterStructure);
90 OMXHANDLER handler = FindHandler(nIndex, false);
91 if (handler == NULL) {
92 LOGE("ComponentSetParameter: No handler for index %d", nIndex);
97 return (*handler)(this, pComponentParameterStructure);
104 OMXHANDLER handler = FindHandler(nIndex, true);
105 if (handler == NULL) {
106 LOGE("ComponentGetConfig: No handler for index %d", nIndex);
111 return (*handler)(this, pComponentConfigStructure);
120 OMXHANDLER handler = FindHandler(nIndex, false);
121 if (handler == NULL) {
122 LOGE("ComponentSetConfig: No handler for index %d", nIndex);
128 ret = (*handler)(this, pComponentConfigStructure);