swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: d70ac829b7f42d7ef4f879635c6a772b0b4ed0a2 authored by Linus Torvalds on 20 June 2008, 23:19:44 UTC
Linux 2.6.26-rc7
Tip revision: d70ac82
c2p.h
/*
 *  Fast C2P (Chunky-to-Planar) Conversion
 *
 *  Copyright (C) 2003 Geert Uytterhoeven
 *
 *  This file is subject to the terms and conditions of the GNU General Public
 *  License. See the file COPYING in the main directory of this archive
 *  for more details.
 */

#include <linux/types.h>

extern void c2p(u8 *dst, const u8 *src, u32 dx, u32 dy, u32 width, u32 height,
		u32 dst_nextline, u32 dst_nextplane, u32 src_nextline,
		u32 bpp);

back to top