You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
601 B
32 lines
601 B
7 months ago
|
/*
|
||
|
* Copyright (c) Hisilicon Technologies Co., Ltd. 2019-2021. All rights reserved.
|
||
|
* Description: ATV IAPI interface
|
||
|
* Author: Hisilicon
|
||
|
* Created: 2019-12-07
|
||
|
*/
|
||
|
|
||
|
#ifndef __IAPI_ATV_H__
|
||
|
#define __IAPI_ATV_H__
|
||
|
|
||
|
#include "uapi_frontend.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#if __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#define ATV_RF_MIN 44000 /* Khz */
|
||
|
#define ATV_RF_MAX 870000 /* Khz */
|
||
|
|
||
|
td_s32 atv_connect(td_u32 tuner_id, const uapi_frontend_connect_para *connect_para);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#if __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif
|
||
|
|