]> git.sesse.net Git - vlc/blob - modules/video_filter/libswscale_nokia770/arm_jit_swscale.h
Use var_InheritString for --decklink-video-connection.
[vlc] / modules / video_filter / libswscale_nokia770 / arm_jit_swscale.h
1 /*
2  * Fast JIT powered scaler for ARM
3  *
4  * Copyright (C) 2007 Siarhei Siamashka <ssvb@users.sourceforge.net>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License
8  * version 2.1 as published by the Free Software Foundation.
9  *
10  * This library is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18  * 02110-1301 USA
19  */
20
21 #ifndef ARM_JIT_SWSCALE_H
22 #define ARM_JIT_SWSCALE_H
23
24 #include <stdint.h>
25
26 struct SwsContextArmJit;
27
28 struct SwsContextArmJit *sws_arm_jit_create_omapfb_yuv422_scaler(int source_w, int source_h, int target_w, int target_h, int quality);
29 struct SwsContextArmJit *sws_arm_jit_create_omapfb_yuv420_scaler(int source_w, int source_h, int target_w, int target_h, int quality);
30 struct SwsContextArmJit *sws_arm_jit_create_omapfb_yuv420_scaler_armv6(int source_w, int source_h, int target_w, int target_h, int quality);
31
32 int sws_arm_jit_scale(struct SwsContextArmJit *context, uint8_t* src[], int srcStride[], int y, int h, uint8_t* dst[], int dstStride[]);
33
34 void sws_arm_jit_free(struct SwsContextArmJit *context);
35
36 #endif