162306a36Sopenharmony_ci/* 262306a36Sopenharmony_ci * Fast C2P (Chunky-to-Planar) Conversion 362306a36Sopenharmony_ci * 462306a36Sopenharmony_ci * Copyright (C) 2003-2008 Geert Uytterhoeven 562306a36Sopenharmony_ci * 662306a36Sopenharmony_ci * This file is subject to the terms and conditions of the GNU General Public 762306a36Sopenharmony_ci * License. See the file COPYING in the main directory of this archive 862306a36Sopenharmony_ci * for more details. 962306a36Sopenharmony_ci */ 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_ci#include <linux/types.h> 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ciextern void c2p_planar(void *dst, const void *src, u32 dx, u32 dy, u32 width, 1462306a36Sopenharmony_ci u32 height, u32 dst_nextline, u32 dst_nextplane, 1562306a36Sopenharmony_ci u32 src_nextline, u32 bpp); 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_ciextern void c2p_iplan2(void *dst, const void *src, u32 dx, u32 dy, u32 width, 1862306a36Sopenharmony_ci u32 height, u32 dst_nextline, u32 src_nextline, 1962306a36Sopenharmony_ci u32 bpp); 20