swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: d8c3291c73b958243b33f8509d4507e76dafd055 authored by Linus Torvalds on 11 May 2006, 23:31:53 UTC
Linux v2.6.17-rc4
Tip revision: d8c3291
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