1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun * Copyright (c) 2019 Rockchip Corporation
3*4882a593Smuzhiyun *
4*4882a593Smuzhiyun * Licensed under the Apache License, Version 2.0 (the "License");
5*4882a593Smuzhiyun * you may not use this file except in compliance with the License.
6*4882a593Smuzhiyun * You may obtain a copy of the License at
7*4882a593Smuzhiyun *
8*4882a593Smuzhiyun * http://www.apache.org/licenses/LICENSE-2.0
9*4882a593Smuzhiyun *
10*4882a593Smuzhiyun * Unless required by applicable law or agreed to in writing, software
11*4882a593Smuzhiyun * distributed under the License is distributed on an "AS IS" BASIS,
12*4882a593Smuzhiyun * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*4882a593Smuzhiyun * See the License for the specific language governing permissions and
14*4882a593Smuzhiyun * limitations under the License.
15*4882a593Smuzhiyun *
16*4882a593Smuzhiyun */
17*4882a593Smuzhiyun
18*4882a593Smuzhiyun #include "Isp20StatsBuffer.h"
19*4882a593Smuzhiyun
20*4882a593Smuzhiyun namespace RkCam {
21*4882a593Smuzhiyun
Isp20StatsBuffer(SmartPtr<V4l2Buffer> buf,SmartPtr<V4l2Device> & device,SmartPtr<BaseSensorHw> sensor,ICamHw * camHw,SmartPtr<RkAiqAfInfoProxy> AfParams,SmartPtr<RkAiqIrisParamsProxy> IrisParams)22*4882a593Smuzhiyun Isp20StatsBuffer::Isp20StatsBuffer(SmartPtr<V4l2Buffer> buf,
23*4882a593Smuzhiyun SmartPtr<V4l2Device> &device,
24*4882a593Smuzhiyun SmartPtr<BaseSensorHw> sensor,
25*4882a593Smuzhiyun ICamHw *camHw,
26*4882a593Smuzhiyun SmartPtr<RkAiqAfInfoProxy> AfParams,
27*4882a593Smuzhiyun SmartPtr<RkAiqIrisParamsProxy> IrisParams)
28*4882a593Smuzhiyun : V4l2BufferProxy(buf, device)
29*4882a593Smuzhiyun {
30*4882a593Smuzhiyun ENTER_CAMHW_FUNCTION();
31*4882a593Smuzhiyun mSensor = sensor;
32*4882a593Smuzhiyun mCamHw = camHw;
33*4882a593Smuzhiyun _afParams = AfParams;
34*4882a593Smuzhiyun _irisParams = IrisParams;
35*4882a593Smuzhiyun EXIT_CAMHW_FUNCTION();
36*4882a593Smuzhiyun }
37*4882a593Smuzhiyun
SofEventBuffer(SmartPtr<SofEventData> & buf,SmartPtr<V4l2Device> & device)38*4882a593Smuzhiyun SofEventBuffer::SofEventBuffer(SmartPtr<SofEventData> &buf,
39*4882a593Smuzhiyun SmartPtr<V4l2Device> &device)
40*4882a593Smuzhiyun : BufferProxy (buf)
41*4882a593Smuzhiyun {
42*4882a593Smuzhiyun ENTER_CAMHW_FUNCTION();
43*4882a593Smuzhiyun //to do
44*4882a593Smuzhiyun //_sofParams = new
45*4882a593Smuzhiyun //_sofInfo = new RKAiqSofInfo_t();
46*4882a593Smuzhiyun //_sofInfo->timestamp = _timestamp = timestamp;
47*4882a593Smuzhiyun //_sofInfo->frameid = _frameid = frameid;
48*4882a593Smuzhiyun EXIT_CAMHW_FUNCTION();
49*4882a593Smuzhiyun }
50*4882a593Smuzhiyun
51*4882a593Smuzhiyun SmartPtr<SofEventData>
get_data()52*4882a593Smuzhiyun SofEventBuffer::get_data()
53*4882a593Smuzhiyun {
54*4882a593Smuzhiyun SmartPtr<BufferData> buf = get_buffer_data ();
55*4882a593Smuzhiyun return buf.dynamic_cast_ptr<SofEventData>();
56*4882a593Smuzhiyun }
57*4882a593Smuzhiyun
58*4882a593Smuzhiyun } //namspace RkCam
59