1*437bfbebSnyanmisaka /* 2*437bfbebSnyanmisaka * Copyright 2015 Rockchip Electronics Co. LTD 3*437bfbebSnyanmisaka * 4*437bfbebSnyanmisaka * Licensed under the Apache License, Version 2.0 (the "License"); 5*437bfbebSnyanmisaka * you may not use this file except in compliance with the License. 6*437bfbebSnyanmisaka * You may obtain a copy of the License at 7*437bfbebSnyanmisaka * 8*437bfbebSnyanmisaka * http://www.apache.org/licenses/LICENSE-2.0 9*437bfbebSnyanmisaka * 10*437bfbebSnyanmisaka * Unless required by applicable law or agreed to in writing, software 11*437bfbebSnyanmisaka * distributed under the License is distributed on an "AS IS" BASIS, 12*437bfbebSnyanmisaka * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*437bfbebSnyanmisaka * See the License for the specific language governing permissions and 14*437bfbebSnyanmisaka * limitations under the License. 15*437bfbebSnyanmisaka */ 16*437bfbebSnyanmisaka 17*437bfbebSnyanmisaka #ifndef __HAL_AVSD_PLUS_H__ 18*437bfbebSnyanmisaka #define __HAL_AVSD_PLUS_H__ 19*437bfbebSnyanmisaka 20*437bfbebSnyanmisaka #ifdef __cplusplus 21*437bfbebSnyanmisaka extern "C" { 22*437bfbebSnyanmisaka #endif 23*437bfbebSnyanmisaka 24*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_init (void *decoder, MppHalCfg *cfg); 25*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_deinit (void *decoder); 26*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_gen_regs(void *decoder, HalTaskInfo *task); 27*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_start (void *decoder, HalTaskInfo *task); 28*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_wait (void *decoder, HalTaskInfo *task); 29*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_reset (void *decoder); 30*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_flush (void *decoder); 31*437bfbebSnyanmisaka MPP_RET hal_avsd_plus_control (void *decoder, MpiCmd cmd_type, void *param); 32*437bfbebSnyanmisaka 33*437bfbebSnyanmisaka #ifdef __cplusplus 34*437bfbebSnyanmisaka } 35*437bfbebSnyanmisaka #endif 36*437bfbebSnyanmisaka 37*437bfbebSnyanmisaka #endif /*__HAL_AVSD_PLUS_H__*/ 38