Tizen 2.0 Release
[framework/osp/media.git] / src / FMedia_CameraPreProcessUtil.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                        FMedia_CameraPreProcessUtil.h
20  * @brief                       This file contains the implementation of Camera's extened functions.
21  *
22  */
23
24 #include <FBaseSysLog.h>
25 #include <FMediaCamera.h>
26 #include "FMedia_CameraImpl.h"
27 #include "FMedia_CameraPreProcessUtil.h"
28
29 namespace Tizen { namespace Media
30 {
31 result
32 SetPreProcessingCallback(Tizen::Media::Camera &cam, _CameraPreprocessingCallback pPreProcessCbFunc, void* pPreProcessUserData)
33 {
34         Tizen::Media::_CameraImpl* pCamImpl = null;
35         SysLog(NID_MEDIA, "Enter.");
36
37         pCamImpl = _CameraImpl::GetInstance(&cam);
38         SysTryReturn(NID_MEDIA, pCamImpl != null, E_INVALID_ARG, E_INVALID_ARG, "[E_INVALID_ARG] Camera is not constructed.");
39
40         pCamImpl->SetPreprocessingCb(pPreProcessCbFunc, pPreProcessUserData);
41
42         return E_SUCCESS;
43 }
44
45 result
46 UnSetPreProcessingCallback(Tizen::Media::Camera &cam)
47 {
48         Tizen::Media::_CameraImpl* pCamImpl = null;
49         SysLog(NID_MEDIA, "Enter.");
50
51         pCamImpl = _CameraImpl::GetInstance(&cam);
52         SysTryReturn(NID_MEDIA, pCamImpl != null, E_INVALID_ARG, E_INVALID_ARG, "[E_INVALID_ARG] Camera is not constructed.");
53
54         pCamImpl->SetPreprocessingCb(null, null);
55
56         return E_SUCCESS;
57 }
58
59 }}   // Tizen::Media