mirror of
https://github.com/opencv/opencv.git
synced 2024-12-12 07:09:12 +08:00
e765c9f9c8
3rdparty: update libpng 1.6.43 #25580 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
66 lines
2.0 KiB
C
66 lines
2.0 KiB
C
/* loongarch_lsx_init.c - LSX optimized filter functions
|
|
*
|
|
* Copyright (c) 2021 Loongson Technology Corporation Limited
|
|
* All rights reserved.
|
|
* Contributed by Jin Bo <jinbo@loongson.cn>
|
|
*
|
|
* This code is released under the libpng license.
|
|
* For conditions of distribution and use, see the disclaimer
|
|
* and license in png.h
|
|
*/
|
|
|
|
#include "../pngpriv.h"
|
|
|
|
#ifdef PNG_READ_SUPPORTED
|
|
#if PNG_LOONGARCH_LSX_IMPLEMENTATION == 1
|
|
|
|
#include <sys/auxv.h>
|
|
|
|
#define LA_HWCAP_LSX (1<<4)
|
|
static int png_has_lsx(void)
|
|
{
|
|
int flags = 0;
|
|
int flag = (int)getauxval(AT_HWCAP);
|
|
|
|
if (flag & LA_HWCAP_LSX)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
png_init_filter_functions_lsx(png_structp pp, unsigned int bpp)
|
|
{
|
|
/* IMPORTANT: any new external functions used here must be declared using
|
|
* PNG_INTERNAL_FUNCTION in ../pngpriv.h. This is required so that the
|
|
* 'prefix' option to configure works:
|
|
*
|
|
* ./configure --with-libpng-prefix=foobar_
|
|
*
|
|
* Verify you have got this right by running the above command, doing a build
|
|
* and examining pngprefix.h; it must contain a #define for every external
|
|
* function you add. (Notice that this happens automatically for the
|
|
* initialization function.)
|
|
*/
|
|
|
|
if (png_has_lsx())
|
|
{
|
|
pp->read_filter[PNG_FILTER_VALUE_UP-1] = png_read_filter_row_up_lsx;
|
|
if (bpp == 3)
|
|
{
|
|
pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_lsx;
|
|
pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_lsx;
|
|
pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = png_read_filter_row_paeth3_lsx;
|
|
}
|
|
else if (bpp == 4)
|
|
{
|
|
pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub4_lsx;
|
|
pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg4_lsx;
|
|
pp->read_filter[PNG_FILTER_VALUE_PAETH-1] = png_read_filter_row_paeth4_lsx;
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* PNG_LOONGARCH_LSX_IMPLEMENTATION == 1 */
|
|
#endif /* PNG_READ_SUPPORTED */
|