diff options
Diffstat (limited to 'libhb/scale_kernel.h')
-rw-r--r-- | libhb/scale_kernel.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libhb/scale_kernel.h b/libhb/scale_kernel.h new file mode 100644 index 000000000..ce413382f --- /dev/null +++ b/libhb/scale_kernel.h @@ -0,0 +1,20 @@ +/* scale_kernel.h + + Copyright (c) 2003-2012 HandBrake Team + This file is part of the HandBrake source code + Homepage: <http://handbrake.fr/>. + It may be used under the terms of the GNU General Public License v2. + For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html + + Authors: Peng Gao <[email protected]> <http://www.multicorewareinc.com/> + Li Cao <[email protected]> <http://www.multicorewareinc.com/> + + + */ + +#ifndef _H_SCALE_KERNEL_H +#define _H_SCALE_KERNEL_H +#ifdef USE_OPENCL +void av_scale_frame(ScaleContext *c, void *dst, void *src, int *srcStride, int *dstStride, int *should_dither); +#endif +#endif |