[Release version 0.10.48] Change some global function/variable names to avoid invalid...
[platform/core/multimedia/libmm-camcorder.git] / src / include / mm_camcorder_resource.h
1 /*
2  * libmm-camcorder
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Heechul Jeon <heechul.jeon@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef __MM_CAMCORDER_RESOURCE_H__
23 #define __MM_CAMCORDER_RESOURCE_H__
24
25 #include <murphy/plugins/resource-native/libmurphy-resource/resource-api.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 typedef enum {
32         MM_CAMCORDER_RESOURCE_TYPE_CAMERA,
33         MM_CAMCORDER_RESOURCE_TYPE_VIDEO_OVERLAY,
34         MM_CAMCORDER_RESOURCE_MAX
35 } MMCamcorderResourceType;
36
37 typedef struct {
38         mrp_mainloop_t *mloop;
39         mrp_res_context_t *context;
40         mrp_res_resource_set_t *rset;
41         bool is_connected;
42         void *user_data;
43 } MMCamcorderResourceManager;
44
45 int _mmcamcorder_resource_manager_init(MMCamcorderResourceManager *resource_manager, void *user_data);
46 int _mmcamcorder_resource_manager_prepare(MMCamcorderResourceManager *resource_manager, MMCamcorderResourceType resource_type);
47 int _mmcamcorder_resource_manager_acquire(MMCamcorderResourceManager *resource_manager);
48 int _mmcamcorder_resource_manager_release(MMCamcorderResourceManager *resource_manager);
49 int _mmcamcorder_resource_manager_unprepare(MMCamcorderResourceManager *resource_manager);
50 int _mmcamcorder_resource_manager_deinit(MMCamcorderResourceManager *resource_manager);
51
52 #ifdef __cplusplus
53 }
54 #endif
55
56 #endif /* __MM_PLAYER_RESOURCE_H__ */