You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
4 years ago
|
/*
|
||
|
* img_internal.h - imgconvert internal use header
|
||
|
* Written by Andrew Church <achurch@achurch.org>
|
||
|
*
|
||
|
* This file is part of transcode, a video stream processing tool.
|
||
|
* transcode is free software, distributable under the terms of the GNU
|
||
|
* General Public License (version 2 or later). See the file COPYING
|
||
|
* for details.
|
||
|
*/
|
||
|
|
||
|
#ifndef ACLIB_IMG_INTERNAL_H
|
||
|
#define ACLIB_IMG_INTERNAL_H
|
||
|
|
||
|
/* Type of a conversion function */
|
||
|
typedef int (*ConversionFunc)(uint8_t **src, uint8_t **dest,
|
||
|
int width, int height);
|
||
|
|
||
|
/* Function to register a conversion */
|
||
|
extern int register_conversion(ImageFormat srcfmt, ImageFormat destfmt,
|
||
|
ConversionFunc function);
|
||
|
|
||
|
/* Initialization routines */
|
||
|
extern int ac_imgconvert_init(int accel);
|
||
|
extern int ac_imgconvert_init_yuv_planar(int accel);
|
||
|
extern int ac_imgconvert_init_yuv_packed(int accel);
|
||
|
extern int ac_imgconvert_init_yuv_mixed(int accel);
|
||
|
extern int ac_imgconvert_init_yuv_rgb(int accel);
|
||
|
extern int ac_imgconvert_init_rgb_packed(int accel);
|
||
|
|
||
|
#endif /* ACLIB_IMG_INTERNAL_H */
|
||
|
|
||
|
/*
|
||
|
* Local variables:
|
||
|
* c-file-style: "stroustrup"
|
||
|
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
|
||
|
* indent-tabs-mode: nil
|
||
|
* End:
|
||
|
*
|
||
|
* vim: expandtab shiftwidth=4:
|
||
|
*/
|