blob: c13323208d1796dec72b2b69b492be5894a4b8e5 [file] [log] [blame]
Andreas Huberb0caf942009-12-03 11:39:54 -08001/*
2 * Copyright (C) 2009 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 OMX_PV_CODECS_PLUGIN_H_
18
19#define OMX_PV_CODECS_PLUGIN_H_
20
21#include <media/stagefright/OMXPluginBase.h>
22
23namespace android {
24
25struct OMXPVCodecsPlugin : public OMXPluginBase {
26 OMXPVCodecsPlugin();
27 virtual ~OMXPVCodecsPlugin();
28
29 virtual OMX_ERRORTYPE makeComponentInstance(
30 const char *name,
31 const OMX_CALLBACKTYPE *callbacks,
32 OMX_PTR appData,
33 OMX_COMPONENTTYPE **component);
34
Andreas Huberfef64352009-12-04 12:52:40 -080035 virtual OMX_ERRORTYPE destroyComponentInstance(
36 OMX_COMPONENTTYPE *component);
37
Andreas Huberb0caf942009-12-03 11:39:54 -080038 virtual OMX_ERRORTYPE enumerateComponents(
39 OMX_STRING name,
40 size_t size,
41 OMX_U32 index);
42
Andreas Huberc7e91ee2009-12-15 15:22:08 -080043 virtual OMX_ERRORTYPE getRolesOfComponent(
44 const char *name,
45 Vector<String8> *roles);
46
Andreas Huberb0caf942009-12-03 11:39:54 -080047private:
48 OMXPVCodecsPlugin(const OMXPVCodecsPlugin &);
49 OMXPVCodecsPlugin &operator=(const OMXPVCodecsPlugin &);
50};
51
52} // namespace android
53
54#endif // OMX_PV_CODECS_PLUGIN_H_