arm_jit_swscale.h

Go to the documentation of this file.
00001 /*
00002  * Fast JIT powered scaler for ARM
00003  *
00004  * Copyright (C) 2007 Siarhei Siamashka <ssvb@users.sourceforge.net>
00005  *
00006  * This library is free software; you can redistribute it and/or
00007  * modify it under the terms of the GNU Lesser General Public License
00008  * version 2.1 as published by the Free Software Foundation.
00009  *
00010  * This library is distributed in the hope that it will be useful, but
00011  * WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00013  * Lesser General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU Lesser General Public
00016  * License along with this library; if not, write to the Free Software
00017  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
00018  * 02110-1301 USA
00019  */
00020 
00021 #ifndef ARM_JIT_SWSCALE_H
00022 #define ARM_JIT_SWSCALE_H
00023 
00024 #include <stdint.h>
00025 
00026 struct SwsContextArmJit;
00027 
00028 struct SwsContextArmJit *sws_arm_jit_create_omapfb_yuv422_scaler(int source_w, int source_h, int target_w, int target_h, int quality);
00029 struct SwsContextArmJit *sws_arm_jit_create_omapfb_yuv420_scaler(int source_w, int source_h, int target_w, int target_h, int quality);
00030 struct SwsContextArmJit *sws_arm_jit_create_omapfb_yuv420_scaler_armv6(int source_w, int source_h, int target_w, int target_h, int quality);
00031 
00032 int sws_arm_jit_scale(struct SwsContextArmJit *context, uint8_t* src[], int srcStride[], int y, int h, uint8_t* dst[], int dstStride[]);
00033 
00034 void sws_arm_jit_free(struct SwsContextArmJit *context);
00035 
00036 #endif

Generated on Tue May 25 08:05:00 2010 for VLC by  doxygen 1.5.6