1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * 3*4882a593Smuzhiyun * Copyright 2015 Rockchip Electronics Co. LTD 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * Licensed under the Apache License, Version 2.0 (the "License"); 6*4882a593Smuzhiyun * you may not use this file except in compliance with the License. 7*4882a593Smuzhiyun * You may obtain a copy of the License at 8*4882a593Smuzhiyun * 9*4882a593Smuzhiyun * http://www.apache.org/licenses/LICENSE-2.0 10*4882a593Smuzhiyun * 11*4882a593Smuzhiyun * Unless required by applicable law or agreed to in writing, software 12*4882a593Smuzhiyun * distributed under the License is distributed on an "AS IS" BASIS, 13*4882a593Smuzhiyun * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14*4882a593Smuzhiyun * See the License for the specific language governing permissions and 15*4882a593Smuzhiyun * limitations under the License. 16*4882a593Smuzhiyun */ 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun 19*4882a593Smuzhiyun #ifndef __HAL_JPEGD_API_H__ 20*4882a593Smuzhiyun #define __HAL_JPEGD_API_H__ 21*4882a593Smuzhiyun 22*4882a593Smuzhiyun #include "rk_type.h" 23*4882a593Smuzhiyun #include "mpp_err.h" 24*4882a593Smuzhiyun #include "mpp_hal.h" 25*4882a593Smuzhiyun 26*4882a593Smuzhiyun 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun #ifdef __cplusplus 29*4882a593Smuzhiyun extern "C" { 30*4882a593Smuzhiyun #endif 31*4882a593Smuzhiyun 32*4882a593Smuzhiyun extern const MppHalApi hal_api_jpegd; 33*4882a593Smuzhiyun 34*4882a593Smuzhiyun RK_S32 hal_jpegd_init(void *hal, MppHalCfg *cfg); 35*4882a593Smuzhiyun RK_S32 hal_jpegd_gen_regs(void *hal, HalTaskInfo *syn); 36*4882a593Smuzhiyun RK_S32 hal_jpegd_deinit(void *hal); 37*4882a593Smuzhiyun MPP_RET hal_jpegd_start(void *hal, HalTaskInfo *task); 38*4882a593Smuzhiyun MPP_RET hal_jpegd_wait(void *hal, HalTaskInfo *task); 39*4882a593Smuzhiyun MPP_RET hal_jpegd_reset(void *hal); 40*4882a593Smuzhiyun MPP_RET hal_jpegd_flush(void *hal); 41*4882a593Smuzhiyun MPP_RET hal_jpegd_control(void *hal, MpiCmd cmd_type, void *param); 42*4882a593Smuzhiyun 43*4882a593Smuzhiyun #ifdef __cplusplus 44*4882a593Smuzhiyun } 45*4882a593Smuzhiyun #endif 46*4882a593Smuzhiyun 47*4882a593Smuzhiyun #endif /*__HAL_JPEGD_API_H__*/ 48