30 lines
496 B
C
Executable File
30 lines
496 B
C
Executable File
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* uvc-gadget encode process API
|
|
*
|
|
* Copyright (C) 2023 Rockchip Electronics Co., Ltd.
|
|
*
|
|
* Author: Bin Yang <yangbin@rock-chips.com>
|
|
*/
|
|
|
|
#ifndef __UVC_ENC_H__
|
|
#define __UVC_ENC_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef WITH_MPP_ENCODE
|
|
void uvc_gadget_register_encode(struct uvc_source *src);
|
|
#else
|
|
static void uvc_gadget_register_encode(struct uvc_source *src)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __UVC_ENC_H__ */
|