123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988 |
- /*
- * Copyright 2013 The LibYuv Project Authors. All rights reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
- #ifndef INCLUDE_LIBYUV_SCALE_ROW_H_
- #define INCLUDE_LIBYUV_SCALE_ROW_H_
- #include "libyuv/basic_types.h"
- #include "libyuv/scale.h"
- #ifdef __cplusplus
- namespace libyuv {
- extern "C" {
- #endif
- #if defined(__pnacl__) || defined(__CLR_VER) || \
- (defined(__i386__) && !defined(__SSE__) && !defined(__clang__))
- #define LIBYUV_DISABLE_X86
- #endif
- // MemorySanitizer does not support assembly code yet. http://crbug.com/344505
- #if defined(__has_feature)
- #if __has_feature(memory_sanitizer)
- #define LIBYUV_DISABLE_X86
- #endif
- #endif
- // GCC >= 4.7.0 required for AVX2.
- #if defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__))
- #if (__GNUC__ > 4) || (__GNUC__ == 4 && (__GNUC_MINOR__ >= 7))
- #define GCC_HAS_AVX2 1
- #endif // GNUC >= 4.7
- #endif // __GNUC__
- // clang >= 3.4.0 required for AVX2.
- #if defined(__clang__) && (defined(__x86_64__) || defined(__i386__))
- #if (__clang_major__ > 3) || (__clang_major__ == 3 && (__clang_minor__ >= 4))
- #define CLANG_HAS_AVX2 1
- #endif // clang >= 3.4
- #endif // __clang__
- // Visual C 2012 required for AVX2.
- #if defined(_M_IX86) && !defined(__clang__) && defined(_MSC_VER) && \
- _MSC_VER >= 1700
- #define VISUALC_HAS_AVX2 1
- #endif // VisualStudio >= 2012
- // The following are available on all x86 platforms:
- #if !defined(LIBYUV_DISABLE_X86) && \
- (defined(_M_IX86) || defined(__x86_64__) || defined(__i386__))
- #define HAS_FIXEDDIV1_X86
- #define HAS_FIXEDDIV_X86
- #define HAS_SCALEARGBCOLS_SSE2
- #define HAS_SCALEARGBCOLSUP2_SSE2
- #define HAS_SCALEARGBFILTERCOLS_SSSE3
- #define HAS_SCALEARGBROWDOWN2_SSE2
- #define HAS_SCALEARGBROWDOWNEVEN_SSE2
- #define HAS_SCALECOLSUP2_SSE2
- #define HAS_SCALEFILTERCOLS_SSSE3
- #define HAS_SCALEROWDOWN2_SSSE3
- #define HAS_SCALEROWDOWN34_SSSE3
- #define HAS_SCALEROWDOWN38_SSSE3
- #define HAS_SCALEROWDOWN4_SSSE3
- #define HAS_SCALEADDROW_SSE2
- #endif
- // The following are available on all x86 platforms, but
- // require VS2012, clang 3.4 or gcc 4.7.
- // The code supports NaCL but requires a new compiler and validator.
- #if !defined(LIBYUV_DISABLE_X86) && \
- (defined(VISUALC_HAS_AVX2) || defined(CLANG_HAS_AVX2) || \
- defined(GCC_HAS_AVX2))
- #define HAS_SCALEADDROW_AVX2
- #define HAS_SCALEROWDOWN2_AVX2
- #define HAS_SCALEROWDOWN4_AVX2
- #endif
- // The following are available on Neon platforms:
- #if !defined(LIBYUV_DISABLE_NEON) && !defined(__native_client__) && \
- (defined(__ARM_NEON__) || defined(LIBYUV_NEON) || defined(__aarch64__))
- #define HAS_SCALEARGBCOLS_NEON
- #define HAS_SCALEARGBROWDOWN2_NEON
- #define HAS_SCALEARGBROWDOWNEVEN_NEON
- #define HAS_SCALEFILTERCOLS_NEON
- #define HAS_SCALEROWDOWN2_NEON
- #define HAS_SCALEROWDOWN34_NEON
- #define HAS_SCALEROWDOWN38_NEON
- #define HAS_SCALEROWDOWN4_NEON
- #define HAS_SCALEARGBFILTERCOLS_NEON
- #endif
- // The following are available on Mips platforms:
- #if !defined(LIBYUV_DISABLE_DSPR2) && !defined(__native_client__) && \
- defined(__mips__) && defined(__mips_dsp) && (__mips_dsp_rev >= 2)
- #define HAS_SCALEROWDOWN2_DSPR2
- #define HAS_SCALEROWDOWN4_DSPR2
- #define HAS_SCALEROWDOWN34_DSPR2
- #define HAS_SCALEROWDOWN38_DSPR2
- #define HAS_SCALEADDROW_DSPR2
- #endif
- #if !defined(LIBYUV_DISABLE_MSA) && defined(__mips_msa)
- #define HAS_SCALEADDROW_MSA
- #define HAS_SCALEARGBCOLS_MSA
- #define HAS_SCALEARGBFILTERCOLS_MSA
- #define HAS_SCALEARGBROWDOWN2_MSA
- #define HAS_SCALEARGBROWDOWNEVEN_MSA
- #define HAS_SCALEFILTERCOLS_MSA
- #define HAS_SCALEROWDOWN2_MSA
- #define HAS_SCALEROWDOWN34_MSA
- #define HAS_SCALEROWDOWN38_MSA
- #define HAS_SCALEROWDOWN4_MSA
- #endif
- // Scale ARGB vertically with bilinear interpolation.
- void ScalePlaneVertical(int src_height,
- int dst_width,
- int dst_height,
- int src_stride,
- int dst_stride,
- const uint8* src_argb,
- uint8* dst_argb,
- int x,
- int y,
- int dy,
- int bpp,
- enum FilterMode filtering);
- void ScalePlaneVertical_16(int src_height,
- int dst_width,
- int dst_height,
- int src_stride,
- int dst_stride,
- const uint16* src_argb,
- uint16* dst_argb,
- int x,
- int y,
- int dy,
- int wpp,
- enum FilterMode filtering);
- // Simplify the filtering based on scale factors.
- enum FilterMode ScaleFilterReduce(int src_width,
- int src_height,
- int dst_width,
- int dst_height,
- enum FilterMode filtering);
- // Divide num by div and return as 16.16 fixed point result.
- int FixedDiv_C(int num, int div);
- int FixedDiv_X86(int num, int div);
- // Divide num - 1 by div - 1 and return as 16.16 fixed point result.
- int FixedDiv1_C(int num, int div);
- int FixedDiv1_X86(int num, int div);
- #ifdef HAS_FIXEDDIV_X86
- #define FixedDiv FixedDiv_X86
- #define FixedDiv1 FixedDiv1_X86
- #else
- #define FixedDiv FixedDiv_C
- #define FixedDiv1 FixedDiv1_C
- #endif
- // Compute slope values for stepping.
- void ScaleSlope(int src_width,
- int src_height,
- int dst_width,
- int dst_height,
- enum FilterMode filtering,
- int* x,
- int* y,
- int* dx,
- int* dy);
- void ScaleRowDown2_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown2Linear_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Linear_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown2Box_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Box_Odd_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Box_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown4_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown4_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown4Box_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown4Box_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown34_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown34_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown34_0_Box_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* d,
- int dst_width);
- void ScaleRowDown34_0_Box_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* d,
- int dst_width);
- void ScaleRowDown34_1_Box_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* d,
- int dst_width);
- void ScaleRowDown34_1_Box_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* d,
- int dst_width);
- void ScaleCols_C(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleCols_16_C(uint16* dst_ptr,
- const uint16* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleColsUp2_C(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int,
- int);
- void ScaleColsUp2_16_C(uint16* dst_ptr,
- const uint16* src_ptr,
- int dst_width,
- int,
- int);
- void ScaleFilterCols_C(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleFilterCols_16_C(uint16* dst_ptr,
- const uint16* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleFilterCols64_C(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleFilterCols64_16_C(uint16* dst_ptr,
- const uint16* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleRowDown38_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown38_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst,
- int dst_width);
- void ScaleRowDown38_3_Box_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_3_Box_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst_ptr,
- int dst_width);
- void ScaleRowDown38_2_Box_C(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_2_Box_16_C(const uint16* src_ptr,
- ptrdiff_t src_stride,
- uint16* dst_ptr,
- int dst_width);
- void ScaleAddRow_C(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleAddRow_16_C(const uint16* src_ptr, uint32* dst_ptr, int src_width);
- void ScaleARGBRowDown2_C(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Linear_C(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_C(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_C(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_C(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBCols_C(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBCols64_C(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBColsUp2_C(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int,
- int);
- void ScaleARGBFilterCols_C(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBFilterCols64_C(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- // Specialized scalers for x86.
- void ScaleRowDown2_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Linear_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Box_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Linear_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Box_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4Box_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4Box_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_1_Box_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_0_Box_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_3_Box_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_2_Box_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Linear_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Box_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Box_Odd_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2_Any_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Linear_Any_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Box_Any_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2Box_Odd_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4Box_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4_Any_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4Box_Any_AVX2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_1_Box_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_0_Box_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_3_Box_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_2_Box_Any_SSSE3(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleAddRow_SSE2(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleAddRow_AVX2(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleAddRow_Any_SSE2(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleAddRow_Any_AVX2(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleFilterCols_SSSE3(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleColsUp2_SSE2(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- // ARGB Column functions
- void ScaleARGBCols_SSE2(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBFilterCols_SSSE3(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBColsUp2_SSE2(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBFilterCols_NEON(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBCols_NEON(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBFilterCols_Any_NEON(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBCols_Any_NEON(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBFilterCols_MSA(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBCols_MSA(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBFilterCols_Any_MSA(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- void ScaleARGBCols_Any_MSA(uint8* dst_argb,
- const uint8* src_argb,
- int dst_width,
- int x,
- int dx);
- // ARGB Row functions
- void ScaleARGBRowDown2_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Linear_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleARGBRowDown2Linear_NEON(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleARGBRowDown2_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Linear_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2_Any_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Linear_Any_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_Any_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleARGBRowDown2Linear_Any_NEON(const uint8* src_argb,
- ptrdiff_t src_stride,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleARGBRowDown2_Any_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Linear_Any_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDown2Box_Any_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_NEON(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_NEON(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- int32_t src_stepx,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_MSA(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_Any_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_Any_SSE2(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_Any_NEON(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_Any_NEON(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEven_Any_MSA(const uint8_t* src_argb,
- ptrdiff_t src_stride,
- int32_t src_stepx,
- uint8_t* dst_argb,
- int dst_width);
- void ScaleARGBRowDownEvenBox_Any_MSA(const uint8* src_argb,
- ptrdiff_t src_stride,
- int src_stepx,
- uint8* dst_argb,
- int dst_width);
- // ScaleRowDown2Box also used by planar functions
- // NEON downscalers with interpolation.
- // Note - not static due to reuse in convert for 444 to 420.
- void ScaleRowDown2_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Linear_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown4_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // Down scale from 4 to 3 pixels. Use the neon multilane read/write
- // to load up the every 4th pixel into a 4 different registers.
- // Point samples 32 pixels to 24 pixels.
- void ScaleRowDown34_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_0_Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_1_Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // 32 -> 12
- void ScaleRowDown38_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // 32x3 -> 12x1
- void ScaleRowDown38_3_Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // 32x2 -> 12x1
- void ScaleRowDown38_2_Box_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Linear_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Box_Odd_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown4_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown4Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_0_Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_1_Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // 32 -> 12
- void ScaleRowDown38_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // 32x3 -> 12x1
- void ScaleRowDown38_3_Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- // 32x2 -> 12x1
- void ScaleRowDown38_2_Box_Any_NEON(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleAddRow_NEON(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleAddRow_Any_NEON(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleFilterCols_NEON(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleFilterCols_Any_NEON(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleRowDown2_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown2Box_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown4_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown4Box_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown34_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown34_0_Box_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* d,
- int dst_width);
- void ScaleRowDown34_1_Box_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* d,
- int dst_width);
- void ScaleRowDown38_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst,
- int dst_width);
- void ScaleRowDown38_2_Box_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown38_3_Box_DSPR2(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleAddRow_DSPR2(const uint8* src_ptr, uint16* dst_ptr, int src_width);
- void ScaleAddRow_Any_DSPR2(const uint8* src_ptr,
- uint16* dst_ptr,
- int src_width);
- void ScaleRowDown2_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown2Linear_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown2Box_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown4_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown4Box_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown38_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown38_2_Box_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst_ptr,
- int dst_width);
- void ScaleRowDown38_3_Box_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst_ptr,
- int dst_width);
- void ScaleAddRow_MSA(const uint8_t* src_ptr, uint16_t* dst_ptr, int src_width);
- void ScaleFilterCols_MSA(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleRowDown34_MSA(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_0_Box_MSA(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_1_Box_MSA(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown2_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown2Linear_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown2Box_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown4_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown4Box_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown38_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst,
- int dst_width);
- void ScaleRowDown38_2_Box_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst_ptr,
- int dst_width);
- void ScaleRowDown38_3_Box_Any_MSA(const uint8_t* src_ptr,
- ptrdiff_t src_stride,
- uint8_t* dst_ptr,
- int dst_width);
- void ScaleAddRow_Any_MSA(const uint8_t* src_ptr,
- uint16_t* dst_ptr,
- int src_width);
- void ScaleFilterCols_Any_MSA(uint8* dst_ptr,
- const uint8* src_ptr,
- int dst_width,
- int x,
- int dx);
- void ScaleRowDown34_Any_MSA(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_0_Box_Any_MSA(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- void ScaleRowDown34_1_Box_Any_MSA(const uint8* src_ptr,
- ptrdiff_t src_stride,
- uint8* dst_ptr,
- int dst_width);
- #ifdef __cplusplus
- } // extern "C"
- } // namespace libyuv
- #endif
- #endif // INCLUDE_LIBYUV_SCALE_ROW_H_
|