123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include "config.h"
- #include "libavutil/attributes.h"
- #include "libswscale/swscale.h"
- #include "libswscale/swscale_internal.h"
- #include "libavutil/arm/cpu.h"
- void ff_hscale_8_to_15_neon(SwsInternal *c, int16_t *dst, int dstW,
- const uint8_t *src, const int16_t *filter,
- const int32_t *filterPos, int filterSize);
- void ff_yuv2planeX_8_neon(const int16_t *filter, int filterSize,
- const int16_t **src, uint8_t *dest, int dstW,
- const uint8_t *dither, int offset);
- av_cold void ff_sws_init_swscale_arm(SwsInternal *c)
- {
- int cpu_flags = av_get_cpu_flags();
- if (have_neon(cpu_flags)) {
- if (c->srcBpc == 8 && c->dstBpc <= 14 &&
- (c->hLumFilterSize % 8) == 0 &&
- (c->hChrFilterSize % 8) == 0)
- {
- c->hyScale = c->hcScale = ff_hscale_8_to_15_neon;
- }
- if (c->dstBpc == 8) {
- c->yuv2planeX = ff_yuv2planeX_8_neon;
- }
- }
- }
|