Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at master 17 lines 399 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2016 MediaTek Inc. 4 * Author: Ming Hsiu Tsai <minghsiu.tsai@mediatek.com> 5 * Rick Chang <rick.chang@mediatek.com> 6 */ 7 8#ifndef _MTK_JPEG_PARSE_H 9#define _MTK_JPEG_PARSE_H 10 11#include "mtk_jpeg_dec_hw.h" 12 13bool mtk_jpeg_parse(struct mtk_jpeg_dec_param *param, u8 *src_addr_va, 14 u32 src_size); 15 16#endif /* _MTK_JPEG_PARSE_H */ 17