Home | History | Annotate | Download | only in omx
      1 /*
      2  * Copyright (C) 2011 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef SOFT_OMX_PLUGIN_H_
     18 
     19 #define SOFT_OMX_PLUGIN_H_
     20 
     21 #include <media/stagefright/foundation/ABase.h>
     22 #include <OMXPluginBase.h>
     23 
     24 namespace android {
     25 
     26 struct SoftOMXPlugin : public OMXPluginBase {
     27     SoftOMXPlugin();
     28 
     29     virtual OMX_ERRORTYPE makeComponentInstance(
     30             const char *name,
     31             const OMX_CALLBACKTYPE *callbacks,
     32             OMX_PTR appData,
     33             OMX_COMPONENTTYPE **component);
     34 
     35     virtual OMX_ERRORTYPE destroyComponentInstance(
     36             OMX_COMPONENTTYPE *component);
     37 
     38     virtual OMX_ERRORTYPE enumerateComponents(
     39             OMX_STRING name,
     40             size_t size,
     41             OMX_U32 index);
     42 
     43     virtual OMX_ERRORTYPE getRolesOfComponent(
     44             const char *name,
     45             Vector<String8> *roles);
     46 
     47 private:
     48     DISALLOW_EVIL_CONSTRUCTORS(SoftOMXPlugin);
     49 };
     50 
     51 }  // namespace android
     52 
     53 #endif  // SOFT_OMX_PLUGIN_H_
     54