planar_functions.cc 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963
  1. /*
  2. * Copyright 2011 The LibYuv Project Authors. All rights reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #include "libyuv/planar_functions.h"
  11. #include <string.h> // for memset()
  12. #include "libyuv/cpu_id.h"
  13. #ifdef HAVE_JPEG
  14. #include "libyuv/mjpeg_decoder.h"
  15. #endif
  16. #include "libyuv/row.h"
  17. #include "libyuv/scale_row.h" // for ScaleRowDown2
  18. #ifdef __cplusplus
  19. namespace libyuv {
  20. extern "C" {
  21. #endif
  22. // Copy a plane of data
  23. LIBYUV_API
  24. void CopyPlane(const uint8_t* src_y,
  25. int src_stride_y,
  26. uint8_t* dst_y,
  27. int dst_stride_y,
  28. int width,
  29. int height) {
  30. int y;
  31. void (*CopyRow)(const uint8_t* src, uint8_t* dst, int width) = CopyRow_C;
  32. // Negative height means invert the image.
  33. if (height < 0) {
  34. height = -height;
  35. dst_y = dst_y + (height - 1) * dst_stride_y;
  36. dst_stride_y = -dst_stride_y;
  37. }
  38. // Coalesce rows.
  39. if (src_stride_y == width && dst_stride_y == width) {
  40. width *= height;
  41. height = 1;
  42. src_stride_y = dst_stride_y = 0;
  43. }
  44. // Nothing to do.
  45. if (src_y == dst_y && src_stride_y == dst_stride_y) {
  46. return;
  47. }
  48. #if defined(HAS_COPYROW_SSE2)
  49. if (TestCpuFlag(kCpuHasSSE2)) {
  50. CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2;
  51. }
  52. #endif
  53. #if defined(HAS_COPYROW_AVX)
  54. if (TestCpuFlag(kCpuHasAVX)) {
  55. CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX;
  56. }
  57. #endif
  58. #if defined(HAS_COPYROW_ERMS)
  59. if (TestCpuFlag(kCpuHasERMS)) {
  60. CopyRow = CopyRow_ERMS;
  61. }
  62. #endif
  63. #if defined(HAS_COPYROW_NEON)
  64. if (TestCpuFlag(kCpuHasNEON)) {
  65. CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON;
  66. }
  67. #endif
  68. // Copy plane
  69. for (y = 0; y < height; ++y) {
  70. CopyRow(src_y, dst_y, width);
  71. src_y += src_stride_y;
  72. dst_y += dst_stride_y;
  73. }
  74. }
  75. // TODO(fbarchard): Consider support for negative height.
  76. // TODO(fbarchard): Consider stride measured in bytes.
  77. LIBYUV_API
  78. void CopyPlane_16(const uint16_t* src_y,
  79. int src_stride_y,
  80. uint16_t* dst_y,
  81. int dst_stride_y,
  82. int width,
  83. int height) {
  84. int y;
  85. void (*CopyRow)(const uint16_t* src, uint16_t* dst, int width) = CopyRow_16_C;
  86. // Coalesce rows.
  87. if (src_stride_y == width && dst_stride_y == width) {
  88. width *= height;
  89. height = 1;
  90. src_stride_y = dst_stride_y = 0;
  91. }
  92. #if defined(HAS_COPYROW_16_SSE2)
  93. if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 32)) {
  94. CopyRow = CopyRow_16_SSE2;
  95. }
  96. #endif
  97. #if defined(HAS_COPYROW_16_ERMS)
  98. if (TestCpuFlag(kCpuHasERMS)) {
  99. CopyRow = CopyRow_16_ERMS;
  100. }
  101. #endif
  102. #if defined(HAS_COPYROW_16_NEON)
  103. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 32)) {
  104. CopyRow = CopyRow_16_NEON;
  105. }
  106. #endif
  107. // Copy plane
  108. for (y = 0; y < height; ++y) {
  109. CopyRow(src_y, dst_y, width);
  110. src_y += src_stride_y;
  111. dst_y += dst_stride_y;
  112. }
  113. }
  114. // Convert a plane of 16 bit data to 8 bit
  115. LIBYUV_API
  116. void Convert16To8Plane(const uint16_t* src_y,
  117. int src_stride_y,
  118. uint8_t* dst_y,
  119. int dst_stride_y,
  120. int scale, // 16384 for 10 bits
  121. int width,
  122. int height) {
  123. int y;
  124. void (*Convert16To8Row)(const uint16_t* src_y, uint8_t* dst_y, int scale,
  125. int width) = Convert16To8Row_C;
  126. // Negative height means invert the image.
  127. if (height < 0) {
  128. height = -height;
  129. dst_y = dst_y + (height - 1) * dst_stride_y;
  130. dst_stride_y = -dst_stride_y;
  131. }
  132. // Coalesce rows.
  133. if (src_stride_y == width && dst_stride_y == width) {
  134. width *= height;
  135. height = 1;
  136. src_stride_y = dst_stride_y = 0;
  137. }
  138. #if defined(HAS_CONVERT16TO8ROW_SSSE3)
  139. if (TestCpuFlag(kCpuHasSSSE3)) {
  140. Convert16To8Row = Convert16To8Row_Any_SSSE3;
  141. if (IS_ALIGNED(width, 16)) {
  142. Convert16To8Row = Convert16To8Row_SSSE3;
  143. }
  144. }
  145. #endif
  146. #if defined(HAS_CONVERT16TO8ROW_AVX2)
  147. if (TestCpuFlag(kCpuHasAVX2)) {
  148. Convert16To8Row = Convert16To8Row_Any_AVX2;
  149. if (IS_ALIGNED(width, 32)) {
  150. Convert16To8Row = Convert16To8Row_AVX2;
  151. }
  152. }
  153. #endif
  154. // Convert plane
  155. for (y = 0; y < height; ++y) {
  156. Convert16To8Row(src_y, dst_y, scale, width);
  157. src_y += src_stride_y;
  158. dst_y += dst_stride_y;
  159. }
  160. }
  161. // Convert a plane of 8 bit data to 16 bit
  162. LIBYUV_API
  163. void Convert8To16Plane(const uint8_t* src_y,
  164. int src_stride_y,
  165. uint16_t* dst_y,
  166. int dst_stride_y,
  167. int scale, // 16384 for 10 bits
  168. int width,
  169. int height) {
  170. int y;
  171. void (*Convert8To16Row)(const uint8_t* src_y, uint16_t* dst_y, int scale,
  172. int width) = Convert8To16Row_C;
  173. // Negative height means invert the image.
  174. if (height < 0) {
  175. height = -height;
  176. dst_y = dst_y + (height - 1) * dst_stride_y;
  177. dst_stride_y = -dst_stride_y;
  178. }
  179. // Coalesce rows.
  180. if (src_stride_y == width && dst_stride_y == width) {
  181. width *= height;
  182. height = 1;
  183. src_stride_y = dst_stride_y = 0;
  184. }
  185. #if defined(HAS_CONVERT8TO16ROW_SSE2)
  186. if (TestCpuFlag(kCpuHasSSE2)) {
  187. Convert8To16Row = Convert8To16Row_Any_SSE2;
  188. if (IS_ALIGNED(width, 16)) {
  189. Convert8To16Row = Convert8To16Row_SSE2;
  190. }
  191. }
  192. #endif
  193. #if defined(HAS_CONVERT8TO16ROW_AVX2)
  194. if (TestCpuFlag(kCpuHasAVX2)) {
  195. Convert8To16Row = Convert8To16Row_Any_AVX2;
  196. if (IS_ALIGNED(width, 32)) {
  197. Convert8To16Row = Convert8To16Row_AVX2;
  198. }
  199. }
  200. #endif
  201. // Convert plane
  202. for (y = 0; y < height; ++y) {
  203. Convert8To16Row(src_y, dst_y, scale, width);
  204. src_y += src_stride_y;
  205. dst_y += dst_stride_y;
  206. }
  207. }
  208. // Copy I422.
  209. LIBYUV_API
  210. int I422Copy(const uint8_t* src_y,
  211. int src_stride_y,
  212. const uint8_t* src_u,
  213. int src_stride_u,
  214. const uint8_t* src_v,
  215. int src_stride_v,
  216. uint8_t* dst_y,
  217. int dst_stride_y,
  218. uint8_t* dst_u,
  219. int dst_stride_u,
  220. uint8_t* dst_v,
  221. int dst_stride_v,
  222. int width,
  223. int height) {
  224. int halfwidth = (width + 1) >> 1;
  225. if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) {
  226. return -1;
  227. }
  228. // Negative height means invert the image.
  229. if (height < 0) {
  230. height = -height;
  231. src_y = src_y + (height - 1) * src_stride_y;
  232. src_u = src_u + (height - 1) * src_stride_u;
  233. src_v = src_v + (height - 1) * src_stride_v;
  234. src_stride_y = -src_stride_y;
  235. src_stride_u = -src_stride_u;
  236. src_stride_v = -src_stride_v;
  237. }
  238. if (dst_y) {
  239. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  240. }
  241. CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, height);
  242. CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, height);
  243. return 0;
  244. }
  245. // Copy I444.
  246. LIBYUV_API
  247. int I444Copy(const uint8_t* src_y,
  248. int src_stride_y,
  249. const uint8_t* src_u,
  250. int src_stride_u,
  251. const uint8_t* src_v,
  252. int src_stride_v,
  253. uint8_t* dst_y,
  254. int dst_stride_y,
  255. uint8_t* dst_u,
  256. int dst_stride_u,
  257. uint8_t* dst_v,
  258. int dst_stride_v,
  259. int width,
  260. int height) {
  261. if (!src_u || !src_v || !dst_u || !dst_v || width <= 0 || height == 0) {
  262. return -1;
  263. }
  264. // Negative height means invert the image.
  265. if (height < 0) {
  266. height = -height;
  267. src_y = src_y + (height - 1) * src_stride_y;
  268. src_u = src_u + (height - 1) * src_stride_u;
  269. src_v = src_v + (height - 1) * src_stride_v;
  270. src_stride_y = -src_stride_y;
  271. src_stride_u = -src_stride_u;
  272. src_stride_v = -src_stride_v;
  273. }
  274. if (dst_y) {
  275. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  276. }
  277. CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height);
  278. CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height);
  279. return 0;
  280. }
  281. // Copy I400.
  282. LIBYUV_API
  283. int I400ToI400(const uint8_t* src_y,
  284. int src_stride_y,
  285. uint8_t* dst_y,
  286. int dst_stride_y,
  287. int width,
  288. int height) {
  289. if (!src_y || !dst_y || width <= 0 || height == 0) {
  290. return -1;
  291. }
  292. // Negative height means invert the image.
  293. if (height < 0) {
  294. height = -height;
  295. src_y = src_y + (height - 1) * src_stride_y;
  296. src_stride_y = -src_stride_y;
  297. }
  298. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  299. return 0;
  300. }
  301. // Convert I420 to I400.
  302. LIBYUV_API
  303. int I420ToI400(const uint8_t* src_y,
  304. int src_stride_y,
  305. const uint8_t* src_u,
  306. int src_stride_u,
  307. const uint8_t* src_v,
  308. int src_stride_v,
  309. uint8_t* dst_y,
  310. int dst_stride_y,
  311. int width,
  312. int height) {
  313. (void)src_u;
  314. (void)src_stride_u;
  315. (void)src_v;
  316. (void)src_stride_v;
  317. if (!src_y || !dst_y || width <= 0 || height == 0) {
  318. return -1;
  319. }
  320. // Negative height means invert the image.
  321. if (height < 0) {
  322. height = -height;
  323. src_y = src_y + (height - 1) * src_stride_y;
  324. src_stride_y = -src_stride_y;
  325. }
  326. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  327. return 0;
  328. }
  329. // Support function for NV12 etc UV channels.
  330. // Width and height are plane sizes (typically half pixel width).
  331. LIBYUV_API
  332. void SplitUVPlane(const uint8_t* src_uv,
  333. int src_stride_uv,
  334. uint8_t* dst_u,
  335. int dst_stride_u,
  336. uint8_t* dst_v,
  337. int dst_stride_v,
  338. int width,
  339. int height) {
  340. int y;
  341. void (*SplitUVRow)(const uint8_t* src_uv, uint8_t* dst_u, uint8_t* dst_v,
  342. int width) = SplitUVRow_C;
  343. // Negative height means invert the image.
  344. if (height < 0) {
  345. height = -height;
  346. dst_u = dst_u + (height - 1) * dst_stride_u;
  347. dst_v = dst_v + (height - 1) * dst_stride_v;
  348. dst_stride_u = -dst_stride_u;
  349. dst_stride_v = -dst_stride_v;
  350. }
  351. // Coalesce rows.
  352. if (src_stride_uv == width * 2 && dst_stride_u == width &&
  353. dst_stride_v == width) {
  354. width *= height;
  355. height = 1;
  356. src_stride_uv = dst_stride_u = dst_stride_v = 0;
  357. }
  358. #if defined(HAS_SPLITUVROW_SSE2)
  359. if (TestCpuFlag(kCpuHasSSE2)) {
  360. SplitUVRow = SplitUVRow_Any_SSE2;
  361. if (IS_ALIGNED(width, 16)) {
  362. SplitUVRow = SplitUVRow_SSE2;
  363. }
  364. }
  365. #endif
  366. #if defined(HAS_SPLITUVROW_AVX2)
  367. if (TestCpuFlag(kCpuHasAVX2)) {
  368. SplitUVRow = SplitUVRow_Any_AVX2;
  369. if (IS_ALIGNED(width, 32)) {
  370. SplitUVRow = SplitUVRow_AVX2;
  371. }
  372. }
  373. #endif
  374. #if defined(HAS_SPLITUVROW_NEON)
  375. if (TestCpuFlag(kCpuHasNEON)) {
  376. SplitUVRow = SplitUVRow_Any_NEON;
  377. if (IS_ALIGNED(width, 16)) {
  378. SplitUVRow = SplitUVRow_NEON;
  379. }
  380. }
  381. #endif
  382. #if defined(HAS_SPLITUVROW_MSA)
  383. if (TestCpuFlag(kCpuHasMSA)) {
  384. SplitUVRow = SplitUVRow_Any_MSA;
  385. if (IS_ALIGNED(width, 32)) {
  386. SplitUVRow = SplitUVRow_MSA;
  387. }
  388. }
  389. #endif
  390. #if defined(HAS_SPLITUVROW_MMI)
  391. if (TestCpuFlag(kCpuHasMMI)) {
  392. SplitUVRow = SplitUVRow_Any_MMI;
  393. if (IS_ALIGNED(width, 8)) {
  394. SplitUVRow = SplitUVRow_MMI;
  395. }
  396. }
  397. #endif
  398. for (y = 0; y < height; ++y) {
  399. // Copy a row of UV.
  400. SplitUVRow(src_uv, dst_u, dst_v, width);
  401. dst_u += dst_stride_u;
  402. dst_v += dst_stride_v;
  403. src_uv += src_stride_uv;
  404. }
  405. }
  406. LIBYUV_API
  407. void MergeUVPlane(const uint8_t* src_u,
  408. int src_stride_u,
  409. const uint8_t* src_v,
  410. int src_stride_v,
  411. uint8_t* dst_uv,
  412. int dst_stride_uv,
  413. int width,
  414. int height) {
  415. int y;
  416. void (*MergeUVRow)(const uint8_t* src_u, const uint8_t* src_v,
  417. uint8_t* dst_uv, int width) = MergeUVRow_C;
  418. // Negative height means invert the image.
  419. if (height < 0) {
  420. height = -height;
  421. dst_uv = dst_uv + (height - 1) * dst_stride_uv;
  422. dst_stride_uv = -dst_stride_uv;
  423. }
  424. // Coalesce rows.
  425. if (src_stride_u == width && src_stride_v == width &&
  426. dst_stride_uv == width * 2) {
  427. width *= height;
  428. height = 1;
  429. src_stride_u = src_stride_v = dst_stride_uv = 0;
  430. }
  431. #if defined(HAS_MERGEUVROW_SSE2)
  432. if (TestCpuFlag(kCpuHasSSE2)) {
  433. MergeUVRow = MergeUVRow_Any_SSE2;
  434. if (IS_ALIGNED(width, 16)) {
  435. MergeUVRow = MergeUVRow_SSE2;
  436. }
  437. }
  438. #endif
  439. #if defined(HAS_MERGEUVROW_AVX2)
  440. if (TestCpuFlag(kCpuHasAVX2)) {
  441. MergeUVRow = MergeUVRow_Any_AVX2;
  442. if (IS_ALIGNED(width, 32)) {
  443. MergeUVRow = MergeUVRow_AVX2;
  444. }
  445. }
  446. #endif
  447. #if defined(HAS_MERGEUVROW_NEON)
  448. if (TestCpuFlag(kCpuHasNEON)) {
  449. MergeUVRow = MergeUVRow_Any_NEON;
  450. if (IS_ALIGNED(width, 16)) {
  451. MergeUVRow = MergeUVRow_NEON;
  452. }
  453. }
  454. #endif
  455. #if defined(HAS_MERGEUVROW_MSA)
  456. if (TestCpuFlag(kCpuHasMSA)) {
  457. MergeUVRow = MergeUVRow_Any_MSA;
  458. if (IS_ALIGNED(width, 16)) {
  459. MergeUVRow = MergeUVRow_MSA;
  460. }
  461. }
  462. #endif
  463. #if defined(HAS_MERGEUVROW_MMI)
  464. if (TestCpuFlag(kCpuHasMMI)) {
  465. MergeUVRow = MergeUVRow_Any_MMI;
  466. if (IS_ALIGNED(width, 8)) {
  467. MergeUVRow = MergeUVRow_MMI;
  468. }
  469. }
  470. #endif
  471. for (y = 0; y < height; ++y) {
  472. // Merge a row of U and V into a row of UV.
  473. MergeUVRow(src_u, src_v, dst_uv, width);
  474. src_u += src_stride_u;
  475. src_v += src_stride_v;
  476. dst_uv += dst_stride_uv;
  477. }
  478. }
  479. // Swap U and V channels in interleaved UV plane.
  480. LIBYUV_API
  481. void SwapUVPlane(const uint8_t* src_uv,
  482. int src_stride_uv,
  483. uint8_t* dst_vu,
  484. int dst_stride_vu,
  485. int width,
  486. int height) {
  487. int y;
  488. void (*SwapUVRow)(const uint8_t* src_uv, uint8_t* dst_vu, int width) =
  489. SwapUVRow_C;
  490. // Negative height means invert the image.
  491. if (height < 0) {
  492. height = -height;
  493. src_uv = src_uv + (height - 1) * src_stride_uv;
  494. src_stride_uv = -src_stride_uv;
  495. }
  496. // Coalesce rows.
  497. if (src_stride_uv == width * 2 && dst_stride_vu == width * 2) {
  498. width *= height;
  499. height = 1;
  500. src_stride_uv = dst_stride_vu = 0;
  501. }
  502. #if defined(HAS_SWAPUVROW_SSSE3)
  503. if (TestCpuFlag(kCpuHasSSSE3)) {
  504. SwapUVRow = SwapUVRow_Any_SSSE3;
  505. if (IS_ALIGNED(width, 16)) {
  506. SwapUVRow = SwapUVRow_SSSE3;
  507. }
  508. }
  509. #endif
  510. #if defined(HAS_SWAPUVROW_AVX2)
  511. if (TestCpuFlag(kCpuHasAVX2)) {
  512. SwapUVRow = SwapUVRow_Any_AVX2;
  513. if (IS_ALIGNED(width, 32)) {
  514. SwapUVRow = SwapUVRow_AVX2;
  515. }
  516. }
  517. #endif
  518. #if defined(HAS_SWAPUVROW_NEON)
  519. if (TestCpuFlag(kCpuHasNEON)) {
  520. SwapUVRow = SwapUVRow_Any_NEON;
  521. if (IS_ALIGNED(width, 16)) {
  522. SwapUVRow = SwapUVRow_NEON;
  523. }
  524. }
  525. #endif
  526. for (y = 0; y < height; ++y) {
  527. SwapUVRow(src_uv, dst_vu, width);
  528. src_uv += src_stride_uv;
  529. dst_vu += dst_stride_vu;
  530. }
  531. }
  532. // Convert NV21 to NV12.
  533. LIBYUV_API
  534. int NV21ToNV12(const uint8_t* src_y,
  535. int src_stride_y,
  536. const uint8_t* src_vu,
  537. int src_stride_vu,
  538. uint8_t* dst_y,
  539. int dst_stride_y,
  540. uint8_t* dst_uv,
  541. int dst_stride_uv,
  542. int width,
  543. int height) {
  544. int halfwidth = (width + 1) >> 1;
  545. int halfheight = (height + 1) >> 1;
  546. if (!src_vu || !dst_uv || width <= 0 || height == 0) {
  547. return -1;
  548. }
  549. if (dst_y) {
  550. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  551. }
  552. SwapUVPlane(src_vu, src_stride_vu, dst_uv, dst_stride_uv, halfwidth,
  553. halfheight);
  554. return 0;
  555. }
  556. // Support function for NV12 etc RGB channels.
  557. // Width and height are plane sizes (typically half pixel width).
  558. LIBYUV_API
  559. void SplitRGBPlane(const uint8_t* src_rgb,
  560. int src_stride_rgb,
  561. uint8_t* dst_r,
  562. int dst_stride_r,
  563. uint8_t* dst_g,
  564. int dst_stride_g,
  565. uint8_t* dst_b,
  566. int dst_stride_b,
  567. int width,
  568. int height) {
  569. int y;
  570. void (*SplitRGBRow)(const uint8_t* src_rgb, uint8_t* dst_r, uint8_t* dst_g,
  571. uint8_t* dst_b, int width) = SplitRGBRow_C;
  572. // Negative height means invert the image.
  573. if (height < 0) {
  574. height = -height;
  575. dst_r = dst_r + (height - 1) * dst_stride_r;
  576. dst_g = dst_g + (height - 1) * dst_stride_g;
  577. dst_b = dst_b + (height - 1) * dst_stride_b;
  578. dst_stride_r = -dst_stride_r;
  579. dst_stride_g = -dst_stride_g;
  580. dst_stride_b = -dst_stride_b;
  581. }
  582. // Coalesce rows.
  583. if (src_stride_rgb == width * 3 && dst_stride_r == width &&
  584. dst_stride_g == width && dst_stride_b == width) {
  585. width *= height;
  586. height = 1;
  587. src_stride_rgb = dst_stride_r = dst_stride_g = dst_stride_b = 0;
  588. }
  589. #if defined(HAS_SPLITRGBROW_SSSE3)
  590. if (TestCpuFlag(kCpuHasSSSE3)) {
  591. SplitRGBRow = SplitRGBRow_Any_SSSE3;
  592. if (IS_ALIGNED(width, 16)) {
  593. SplitRGBRow = SplitRGBRow_SSSE3;
  594. }
  595. }
  596. #endif
  597. #if defined(HAS_SPLITRGBROW_NEON)
  598. if (TestCpuFlag(kCpuHasNEON)) {
  599. SplitRGBRow = SplitRGBRow_Any_NEON;
  600. if (IS_ALIGNED(width, 16)) {
  601. SplitRGBRow = SplitRGBRow_NEON;
  602. }
  603. }
  604. #endif
  605. #if defined(HAS_SPLITRGBROW_MMI)
  606. if (TestCpuFlag(kCpuHasMMI)) {
  607. SplitRGBRow = SplitRGBRow_Any_MMI;
  608. if (IS_ALIGNED(width, 4)) {
  609. SplitRGBRow = SplitRGBRow_MMI;
  610. }
  611. }
  612. #endif
  613. for (y = 0; y < height; ++y) {
  614. // Copy a row of RGB.
  615. SplitRGBRow(src_rgb, dst_r, dst_g, dst_b, width);
  616. dst_r += dst_stride_r;
  617. dst_g += dst_stride_g;
  618. dst_b += dst_stride_b;
  619. src_rgb += src_stride_rgb;
  620. }
  621. }
  622. LIBYUV_API
  623. void MergeRGBPlane(const uint8_t* src_r,
  624. int src_stride_r,
  625. const uint8_t* src_g,
  626. int src_stride_g,
  627. const uint8_t* src_b,
  628. int src_stride_b,
  629. uint8_t* dst_rgb,
  630. int dst_stride_rgb,
  631. int width,
  632. int height) {
  633. int y;
  634. void (*MergeRGBRow)(const uint8_t* src_r, const uint8_t* src_g,
  635. const uint8_t* src_b, uint8_t* dst_rgb, int width) =
  636. MergeRGBRow_C;
  637. // Coalesce rows.
  638. // Negative height means invert the image.
  639. if (height < 0) {
  640. height = -height;
  641. dst_rgb = dst_rgb + (height - 1) * dst_stride_rgb;
  642. dst_stride_rgb = -dst_stride_rgb;
  643. }
  644. // Coalesce rows.
  645. if (src_stride_r == width && src_stride_g == width && src_stride_b == width &&
  646. dst_stride_rgb == width * 3) {
  647. width *= height;
  648. height = 1;
  649. src_stride_r = src_stride_g = src_stride_b = dst_stride_rgb = 0;
  650. }
  651. #if defined(HAS_MERGERGBROW_SSSE3)
  652. if (TestCpuFlag(kCpuHasSSSE3)) {
  653. MergeRGBRow = MergeRGBRow_Any_SSSE3;
  654. if (IS_ALIGNED(width, 16)) {
  655. MergeRGBRow = MergeRGBRow_SSSE3;
  656. }
  657. }
  658. #endif
  659. #if defined(HAS_MERGERGBROW_NEON)
  660. if (TestCpuFlag(kCpuHasNEON)) {
  661. MergeRGBRow = MergeRGBRow_Any_NEON;
  662. if (IS_ALIGNED(width, 16)) {
  663. MergeRGBRow = MergeRGBRow_NEON;
  664. }
  665. }
  666. #endif
  667. #if defined(HAS_MERGERGBROW_MMI)
  668. if (TestCpuFlag(kCpuHasMMI)) {
  669. MergeRGBRow = MergeRGBRow_Any_MMI;
  670. if (IS_ALIGNED(width, 8)) {
  671. MergeRGBRow = MergeRGBRow_MMI;
  672. }
  673. }
  674. #endif
  675. for (y = 0; y < height; ++y) {
  676. // Merge a row of U and V into a row of RGB.
  677. MergeRGBRow(src_r, src_g, src_b, dst_rgb, width);
  678. src_r += src_stride_r;
  679. src_g += src_stride_g;
  680. src_b += src_stride_b;
  681. dst_rgb += dst_stride_rgb;
  682. }
  683. }
  684. // Mirror a plane of data.
  685. void MirrorPlane(const uint8_t* src_y,
  686. int src_stride_y,
  687. uint8_t* dst_y,
  688. int dst_stride_y,
  689. int width,
  690. int height) {
  691. int y;
  692. void (*MirrorRow)(const uint8_t* src, uint8_t* dst, int width) = MirrorRow_C;
  693. // Negative height means invert the image.
  694. if (height < 0) {
  695. height = -height;
  696. src_y = src_y + (height - 1) * src_stride_y;
  697. src_stride_y = -src_stride_y;
  698. }
  699. #if defined(HAS_MIRRORROW_NEON)
  700. if (TestCpuFlag(kCpuHasNEON)) {
  701. MirrorRow = MirrorRow_Any_NEON;
  702. if (IS_ALIGNED(width, 16)) {
  703. MirrorRow = MirrorRow_NEON;
  704. }
  705. }
  706. #endif
  707. #if defined(HAS_MIRRORROW_SSSE3)
  708. if (TestCpuFlag(kCpuHasSSSE3)) {
  709. MirrorRow = MirrorRow_Any_SSSE3;
  710. if (IS_ALIGNED(width, 16)) {
  711. MirrorRow = MirrorRow_SSSE3;
  712. }
  713. }
  714. #endif
  715. #if defined(HAS_MIRRORROW_AVX2)
  716. if (TestCpuFlag(kCpuHasAVX2)) {
  717. MirrorRow = MirrorRow_Any_AVX2;
  718. if (IS_ALIGNED(width, 32)) {
  719. MirrorRow = MirrorRow_AVX2;
  720. }
  721. }
  722. #endif
  723. #if defined(HAS_MIRRORROW_MSA)
  724. if (TestCpuFlag(kCpuHasMSA)) {
  725. MirrorRow = MirrorRow_Any_MSA;
  726. if (IS_ALIGNED(width, 64)) {
  727. MirrorRow = MirrorRow_MSA;
  728. }
  729. }
  730. #endif
  731. #if defined(HAS_MIRRORROW_MMI)
  732. if (TestCpuFlag(kCpuHasMMI)) {
  733. MirrorRow = MirrorRow_Any_MMI;
  734. if (IS_ALIGNED(width, 8)) {
  735. MirrorRow = MirrorRow_MMI;
  736. }
  737. }
  738. #endif
  739. // Mirror plane
  740. for (y = 0; y < height; ++y) {
  741. MirrorRow(src_y, dst_y, width);
  742. src_y += src_stride_y;
  743. dst_y += dst_stride_y;
  744. }
  745. }
  746. // Convert YUY2 to I422.
  747. LIBYUV_API
  748. int YUY2ToI422(const uint8_t* src_yuy2,
  749. int src_stride_yuy2,
  750. uint8_t* dst_y,
  751. int dst_stride_y,
  752. uint8_t* dst_u,
  753. int dst_stride_u,
  754. uint8_t* dst_v,
  755. int dst_stride_v,
  756. int width,
  757. int height) {
  758. int y;
  759. void (*YUY2ToUV422Row)(const uint8_t* src_yuy2, uint8_t* dst_u,
  760. uint8_t* dst_v, int width) = YUY2ToUV422Row_C;
  761. void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) =
  762. YUY2ToYRow_C;
  763. if (!src_yuy2 || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
  764. return -1;
  765. }
  766. // Negative height means invert the image.
  767. if (height < 0) {
  768. height = -height;
  769. src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
  770. src_stride_yuy2 = -src_stride_yuy2;
  771. }
  772. // Coalesce rows.
  773. if (src_stride_yuy2 == width * 2 && dst_stride_y == width &&
  774. dst_stride_u * 2 == width && dst_stride_v * 2 == width &&
  775. width * height <= 32768) {
  776. width *= height;
  777. height = 1;
  778. src_stride_yuy2 = dst_stride_y = dst_stride_u = dst_stride_v = 0;
  779. }
  780. #if defined(HAS_YUY2TOYROW_SSE2)
  781. if (TestCpuFlag(kCpuHasSSE2)) {
  782. YUY2ToUV422Row = YUY2ToUV422Row_Any_SSE2;
  783. YUY2ToYRow = YUY2ToYRow_Any_SSE2;
  784. if (IS_ALIGNED(width, 16)) {
  785. YUY2ToUV422Row = YUY2ToUV422Row_SSE2;
  786. YUY2ToYRow = YUY2ToYRow_SSE2;
  787. }
  788. }
  789. #endif
  790. #if defined(HAS_YUY2TOYROW_AVX2)
  791. if (TestCpuFlag(kCpuHasAVX2)) {
  792. YUY2ToUV422Row = YUY2ToUV422Row_Any_AVX2;
  793. YUY2ToYRow = YUY2ToYRow_Any_AVX2;
  794. if (IS_ALIGNED(width, 32)) {
  795. YUY2ToUV422Row = YUY2ToUV422Row_AVX2;
  796. YUY2ToYRow = YUY2ToYRow_AVX2;
  797. }
  798. }
  799. #endif
  800. #if defined(HAS_YUY2TOYROW_NEON)
  801. if (TestCpuFlag(kCpuHasNEON)) {
  802. YUY2ToYRow = YUY2ToYRow_Any_NEON;
  803. YUY2ToUV422Row = YUY2ToUV422Row_Any_NEON;
  804. if (IS_ALIGNED(width, 16)) {
  805. YUY2ToYRow = YUY2ToYRow_NEON;
  806. YUY2ToUV422Row = YUY2ToUV422Row_NEON;
  807. }
  808. }
  809. #endif
  810. #if defined(HAS_YUY2TOYROW_MSA)
  811. if (TestCpuFlag(kCpuHasMSA)) {
  812. YUY2ToYRow = YUY2ToYRow_Any_MSA;
  813. YUY2ToUV422Row = YUY2ToUV422Row_Any_MSA;
  814. if (IS_ALIGNED(width, 32)) {
  815. YUY2ToYRow = YUY2ToYRow_MSA;
  816. YUY2ToUV422Row = YUY2ToUV422Row_MSA;
  817. }
  818. }
  819. #endif
  820. #if defined(HAS_YUY2TOYROW_MMI)
  821. if (TestCpuFlag(kCpuHasMMI)) {
  822. YUY2ToYRow = YUY2ToYRow_Any_MMI;
  823. YUY2ToUV422Row = YUY2ToUV422Row_Any_MMI;
  824. if (IS_ALIGNED(width, 8)) {
  825. YUY2ToYRow = YUY2ToYRow_MMI;
  826. YUY2ToUV422Row = YUY2ToUV422Row_MMI;
  827. }
  828. }
  829. #endif
  830. for (y = 0; y < height; ++y) {
  831. YUY2ToUV422Row(src_yuy2, dst_u, dst_v, width);
  832. YUY2ToYRow(src_yuy2, dst_y, width);
  833. src_yuy2 += src_stride_yuy2;
  834. dst_y += dst_stride_y;
  835. dst_u += dst_stride_u;
  836. dst_v += dst_stride_v;
  837. }
  838. return 0;
  839. }
  840. // Convert UYVY to I422.
  841. LIBYUV_API
  842. int UYVYToI422(const uint8_t* src_uyvy,
  843. int src_stride_uyvy,
  844. uint8_t* dst_y,
  845. int dst_stride_y,
  846. uint8_t* dst_u,
  847. int dst_stride_u,
  848. uint8_t* dst_v,
  849. int dst_stride_v,
  850. int width,
  851. int height) {
  852. int y;
  853. void (*UYVYToUV422Row)(const uint8_t* src_uyvy, uint8_t* dst_u,
  854. uint8_t* dst_v, int width) = UYVYToUV422Row_C;
  855. void (*UYVYToYRow)(const uint8_t* src_uyvy, uint8_t* dst_y, int width) =
  856. UYVYToYRow_C;
  857. if (!src_uyvy || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
  858. return -1;
  859. }
  860. // Negative height means invert the image.
  861. if (height < 0) {
  862. height = -height;
  863. src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
  864. src_stride_uyvy = -src_stride_uyvy;
  865. }
  866. // Coalesce rows.
  867. if (src_stride_uyvy == width * 2 && dst_stride_y == width &&
  868. dst_stride_u * 2 == width && dst_stride_v * 2 == width &&
  869. width * height <= 32768) {
  870. width *= height;
  871. height = 1;
  872. src_stride_uyvy = dst_stride_y = dst_stride_u = dst_stride_v = 0;
  873. }
  874. #if defined(HAS_UYVYTOYROW_SSE2)
  875. if (TestCpuFlag(kCpuHasSSE2)) {
  876. UYVYToUV422Row = UYVYToUV422Row_Any_SSE2;
  877. UYVYToYRow = UYVYToYRow_Any_SSE2;
  878. if (IS_ALIGNED(width, 16)) {
  879. UYVYToUV422Row = UYVYToUV422Row_SSE2;
  880. UYVYToYRow = UYVYToYRow_SSE2;
  881. }
  882. }
  883. #endif
  884. #if defined(HAS_UYVYTOYROW_AVX2)
  885. if (TestCpuFlag(kCpuHasAVX2)) {
  886. UYVYToUV422Row = UYVYToUV422Row_Any_AVX2;
  887. UYVYToYRow = UYVYToYRow_Any_AVX2;
  888. if (IS_ALIGNED(width, 32)) {
  889. UYVYToUV422Row = UYVYToUV422Row_AVX2;
  890. UYVYToYRow = UYVYToYRow_AVX2;
  891. }
  892. }
  893. #endif
  894. #if defined(HAS_UYVYTOYROW_NEON)
  895. if (TestCpuFlag(kCpuHasNEON)) {
  896. UYVYToYRow = UYVYToYRow_Any_NEON;
  897. UYVYToUV422Row = UYVYToUV422Row_Any_NEON;
  898. if (IS_ALIGNED(width, 16)) {
  899. UYVYToYRow = UYVYToYRow_NEON;
  900. UYVYToUV422Row = UYVYToUV422Row_NEON;
  901. }
  902. }
  903. #endif
  904. #if defined(HAS_UYVYTOYROW_MSA)
  905. if (TestCpuFlag(kCpuHasMSA)) {
  906. UYVYToYRow = UYVYToYRow_Any_MSA;
  907. UYVYToUV422Row = UYVYToUV422Row_Any_MSA;
  908. if (IS_ALIGNED(width, 32)) {
  909. UYVYToYRow = UYVYToYRow_MSA;
  910. UYVYToUV422Row = UYVYToUV422Row_MSA;
  911. }
  912. }
  913. #endif
  914. #if defined(HAS_UYVYTOYROW_MMI)
  915. if (TestCpuFlag(kCpuHasMMI)) {
  916. UYVYToYRow = UYVYToYRow_Any_MMI;
  917. UYVYToUV422Row = UYVYToUV422Row_Any_MMI;
  918. if (IS_ALIGNED(width, 16)) {
  919. UYVYToYRow = UYVYToYRow_MMI;
  920. UYVYToUV422Row = UYVYToUV422Row_MMI;
  921. }
  922. }
  923. #endif
  924. for (y = 0; y < height; ++y) {
  925. UYVYToUV422Row(src_uyvy, dst_u, dst_v, width);
  926. UYVYToYRow(src_uyvy, dst_y, width);
  927. src_uyvy += src_stride_uyvy;
  928. dst_y += dst_stride_y;
  929. dst_u += dst_stride_u;
  930. dst_v += dst_stride_v;
  931. }
  932. return 0;
  933. }
  934. // Convert YUY2 to Y.
  935. LIBYUV_API
  936. int YUY2ToY(const uint8_t* src_yuy2,
  937. int src_stride_yuy2,
  938. uint8_t* dst_y,
  939. int dst_stride_y,
  940. int width,
  941. int height) {
  942. int y;
  943. void (*YUY2ToYRow)(const uint8_t* src_yuy2, uint8_t* dst_y, int width) =
  944. YUY2ToYRow_C;
  945. if (!src_yuy2 || !dst_y || width <= 0 || height == 0) {
  946. return -1;
  947. }
  948. // Negative height means invert the image.
  949. if (height < 0) {
  950. height = -height;
  951. src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
  952. src_stride_yuy2 = -src_stride_yuy2;
  953. }
  954. // Coalesce rows.
  955. if (src_stride_yuy2 == width * 2 && dst_stride_y == width) {
  956. width *= height;
  957. height = 1;
  958. src_stride_yuy2 = dst_stride_y = 0;
  959. }
  960. #if defined(HAS_YUY2TOYROW_SSE2)
  961. if (TestCpuFlag(kCpuHasSSE2)) {
  962. YUY2ToYRow = YUY2ToYRow_Any_SSE2;
  963. if (IS_ALIGNED(width, 16)) {
  964. YUY2ToYRow = YUY2ToYRow_SSE2;
  965. }
  966. }
  967. #endif
  968. #if defined(HAS_YUY2TOYROW_AVX2)
  969. if (TestCpuFlag(kCpuHasAVX2)) {
  970. YUY2ToYRow = YUY2ToYRow_Any_AVX2;
  971. if (IS_ALIGNED(width, 32)) {
  972. YUY2ToYRow = YUY2ToYRow_AVX2;
  973. }
  974. }
  975. #endif
  976. #if defined(HAS_YUY2TOYROW_NEON)
  977. if (TestCpuFlag(kCpuHasNEON)) {
  978. YUY2ToYRow = YUY2ToYRow_Any_NEON;
  979. if (IS_ALIGNED(width, 16)) {
  980. YUY2ToYRow = YUY2ToYRow_NEON;
  981. }
  982. }
  983. #endif
  984. #if defined(HAS_YUY2TOYROW_MSA)
  985. if (TestCpuFlag(kCpuHasMSA)) {
  986. YUY2ToYRow = YUY2ToYRow_Any_MSA;
  987. if (IS_ALIGNED(width, 32)) {
  988. YUY2ToYRow = YUY2ToYRow_MSA;
  989. }
  990. }
  991. #endif
  992. #if defined(HAS_YUY2TOYROW_MMI)
  993. if (TestCpuFlag(kCpuHasMMI)) {
  994. YUY2ToYRow = YUY2ToYRow_Any_MMI;
  995. if (IS_ALIGNED(width, 8)) {
  996. YUY2ToYRow = YUY2ToYRow_MMI;
  997. }
  998. }
  999. #endif
  1000. for (y = 0; y < height; ++y) {
  1001. YUY2ToYRow(src_yuy2, dst_y, width);
  1002. src_yuy2 += src_stride_yuy2;
  1003. dst_y += dst_stride_y;
  1004. }
  1005. return 0;
  1006. }
  1007. // Mirror I400 with optional flipping
  1008. LIBYUV_API
  1009. int I400Mirror(const uint8_t* src_y,
  1010. int src_stride_y,
  1011. uint8_t* dst_y,
  1012. int dst_stride_y,
  1013. int width,
  1014. int height) {
  1015. if (!src_y || !dst_y || width <= 0 || height == 0) {
  1016. return -1;
  1017. }
  1018. // Negative height means invert the image.
  1019. if (height < 0) {
  1020. height = -height;
  1021. src_y = src_y + (height - 1) * src_stride_y;
  1022. src_stride_y = -src_stride_y;
  1023. }
  1024. MirrorPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  1025. return 0;
  1026. }
  1027. // Mirror I420 with optional flipping
  1028. LIBYUV_API
  1029. int I420Mirror(const uint8_t* src_y,
  1030. int src_stride_y,
  1031. const uint8_t* src_u,
  1032. int src_stride_u,
  1033. const uint8_t* src_v,
  1034. int src_stride_v,
  1035. uint8_t* dst_y,
  1036. int dst_stride_y,
  1037. uint8_t* dst_u,
  1038. int dst_stride_u,
  1039. uint8_t* dst_v,
  1040. int dst_stride_v,
  1041. int width,
  1042. int height) {
  1043. int halfwidth = (width + 1) >> 1;
  1044. int halfheight = (height + 1) >> 1;
  1045. if (!src_y || !src_u || !src_v || !dst_y || !dst_u || !dst_v || width <= 0 ||
  1046. height == 0) {
  1047. return -1;
  1048. }
  1049. // Negative height means invert the image.
  1050. if (height < 0) {
  1051. height = -height;
  1052. halfheight = (height + 1) >> 1;
  1053. src_y = src_y + (height - 1) * src_stride_y;
  1054. src_u = src_u + (halfheight - 1) * src_stride_u;
  1055. src_v = src_v + (halfheight - 1) * src_stride_v;
  1056. src_stride_y = -src_stride_y;
  1057. src_stride_u = -src_stride_u;
  1058. src_stride_v = -src_stride_v;
  1059. }
  1060. if (dst_y) {
  1061. MirrorPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  1062. }
  1063. MirrorPlane(src_u, src_stride_u, dst_u, dst_stride_u, halfwidth, halfheight);
  1064. MirrorPlane(src_v, src_stride_v, dst_v, dst_stride_v, halfwidth, halfheight);
  1065. return 0;
  1066. }
  1067. // ARGB mirror.
  1068. LIBYUV_API
  1069. int ARGBMirror(const uint8_t* src_argb,
  1070. int src_stride_argb,
  1071. uint8_t* dst_argb,
  1072. int dst_stride_argb,
  1073. int width,
  1074. int height) {
  1075. int y;
  1076. void (*ARGBMirrorRow)(const uint8_t* src, uint8_t* dst, int width) =
  1077. ARGBMirrorRow_C;
  1078. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  1079. return -1;
  1080. }
  1081. // Negative height means invert the image.
  1082. if (height < 0) {
  1083. height = -height;
  1084. src_argb = src_argb + (height - 1) * src_stride_argb;
  1085. src_stride_argb = -src_stride_argb;
  1086. }
  1087. #if defined(HAS_ARGBMIRRORROW_NEON)
  1088. if (TestCpuFlag(kCpuHasNEON)) {
  1089. ARGBMirrorRow = ARGBMirrorRow_Any_NEON;
  1090. if (IS_ALIGNED(width, 4)) {
  1091. ARGBMirrorRow = ARGBMirrorRow_NEON;
  1092. }
  1093. }
  1094. #endif
  1095. #if defined(HAS_ARGBMIRRORROW_SSE2)
  1096. if (TestCpuFlag(kCpuHasSSE2)) {
  1097. ARGBMirrorRow = ARGBMirrorRow_Any_SSE2;
  1098. if (IS_ALIGNED(width, 4)) {
  1099. ARGBMirrorRow = ARGBMirrorRow_SSE2;
  1100. }
  1101. }
  1102. #endif
  1103. #if defined(HAS_ARGBMIRRORROW_AVX2)
  1104. if (TestCpuFlag(kCpuHasAVX2)) {
  1105. ARGBMirrorRow = ARGBMirrorRow_Any_AVX2;
  1106. if (IS_ALIGNED(width, 8)) {
  1107. ARGBMirrorRow = ARGBMirrorRow_AVX2;
  1108. }
  1109. }
  1110. #endif
  1111. #if defined(HAS_ARGBMIRRORROW_MSA)
  1112. if (TestCpuFlag(kCpuHasMSA)) {
  1113. ARGBMirrorRow = ARGBMirrorRow_Any_MSA;
  1114. if (IS_ALIGNED(width, 16)) {
  1115. ARGBMirrorRow = ARGBMirrorRow_MSA;
  1116. }
  1117. }
  1118. #endif
  1119. #if defined(HAS_ARGBMIRRORROW_MMI)
  1120. if (TestCpuFlag(kCpuHasMMI)) {
  1121. ARGBMirrorRow = ARGBMirrorRow_Any_MMI;
  1122. if (IS_ALIGNED(width, 2)) {
  1123. ARGBMirrorRow = ARGBMirrorRow_MMI;
  1124. }
  1125. }
  1126. #endif
  1127. // Mirror plane
  1128. for (y = 0; y < height; ++y) {
  1129. ARGBMirrorRow(src_argb, dst_argb, width);
  1130. src_argb += src_stride_argb;
  1131. dst_argb += dst_stride_argb;
  1132. }
  1133. return 0;
  1134. }
  1135. // Get a blender that optimized for the CPU and pixel count.
  1136. // As there are 6 blenders to choose from, the caller should try to use
  1137. // the same blend function for all pixels if possible.
  1138. LIBYUV_API
  1139. ARGBBlendRow GetARGBBlend(void) {
  1140. void (*ARGBBlendRow)(const uint8_t* src_argb, const uint8_t* src_argb1,
  1141. uint8_t* dst_argb, int width) = ARGBBlendRow_C;
  1142. #if defined(HAS_ARGBBLENDROW_SSSE3)
  1143. if (TestCpuFlag(kCpuHasSSSE3)) {
  1144. ARGBBlendRow = ARGBBlendRow_SSSE3;
  1145. return ARGBBlendRow;
  1146. }
  1147. #endif
  1148. #if defined(HAS_ARGBBLENDROW_NEON)
  1149. if (TestCpuFlag(kCpuHasNEON)) {
  1150. ARGBBlendRow = ARGBBlendRow_NEON;
  1151. }
  1152. #endif
  1153. #if defined(HAS_ARGBBLENDROW_MSA)
  1154. if (TestCpuFlag(kCpuHasMSA)) {
  1155. ARGBBlendRow = ARGBBlendRow_MSA;
  1156. }
  1157. #endif
  1158. #if defined(HAS_ARGBBLENDROW_MMI)
  1159. if (TestCpuFlag(kCpuHasMMI)) {
  1160. ARGBBlendRow = ARGBBlendRow_MMI;
  1161. }
  1162. #endif
  1163. return ARGBBlendRow;
  1164. }
  1165. // Alpha Blend 2 ARGB images and store to destination.
  1166. LIBYUV_API
  1167. int ARGBBlend(const uint8_t* src_argb0,
  1168. int src_stride_argb0,
  1169. const uint8_t* src_argb1,
  1170. int src_stride_argb1,
  1171. uint8_t* dst_argb,
  1172. int dst_stride_argb,
  1173. int width,
  1174. int height) {
  1175. int y;
  1176. void (*ARGBBlendRow)(const uint8_t* src_argb, const uint8_t* src_argb1,
  1177. uint8_t* dst_argb, int width) = GetARGBBlend();
  1178. if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
  1179. return -1;
  1180. }
  1181. // Negative height means invert the image.
  1182. if (height < 0) {
  1183. height = -height;
  1184. dst_argb = dst_argb + (height - 1) * dst_stride_argb;
  1185. dst_stride_argb = -dst_stride_argb;
  1186. }
  1187. // Coalesce rows.
  1188. if (src_stride_argb0 == width * 4 && src_stride_argb1 == width * 4 &&
  1189. dst_stride_argb == width * 4) {
  1190. width *= height;
  1191. height = 1;
  1192. src_stride_argb0 = src_stride_argb1 = dst_stride_argb = 0;
  1193. }
  1194. for (y = 0; y < height; ++y) {
  1195. ARGBBlendRow(src_argb0, src_argb1, dst_argb, width);
  1196. src_argb0 += src_stride_argb0;
  1197. src_argb1 += src_stride_argb1;
  1198. dst_argb += dst_stride_argb;
  1199. }
  1200. return 0;
  1201. }
  1202. // Alpha Blend plane and store to destination.
  1203. LIBYUV_API
  1204. int BlendPlane(const uint8_t* src_y0,
  1205. int src_stride_y0,
  1206. const uint8_t* src_y1,
  1207. int src_stride_y1,
  1208. const uint8_t* alpha,
  1209. int alpha_stride,
  1210. uint8_t* dst_y,
  1211. int dst_stride_y,
  1212. int width,
  1213. int height) {
  1214. int y;
  1215. void (*BlendPlaneRow)(const uint8_t* src0, const uint8_t* src1,
  1216. const uint8_t* alpha, uint8_t* dst, int width) =
  1217. BlendPlaneRow_C;
  1218. if (!src_y0 || !src_y1 || !alpha || !dst_y || width <= 0 || height == 0) {
  1219. return -1;
  1220. }
  1221. // Negative height means invert the image.
  1222. if (height < 0) {
  1223. height = -height;
  1224. dst_y = dst_y + (height - 1) * dst_stride_y;
  1225. dst_stride_y = -dst_stride_y;
  1226. }
  1227. // Coalesce rows for Y plane.
  1228. if (src_stride_y0 == width && src_stride_y1 == width &&
  1229. alpha_stride == width && dst_stride_y == width) {
  1230. width *= height;
  1231. height = 1;
  1232. src_stride_y0 = src_stride_y1 = alpha_stride = dst_stride_y = 0;
  1233. }
  1234. #if defined(HAS_BLENDPLANEROW_SSSE3)
  1235. if (TestCpuFlag(kCpuHasSSSE3)) {
  1236. BlendPlaneRow = BlendPlaneRow_Any_SSSE3;
  1237. if (IS_ALIGNED(width, 8)) {
  1238. BlendPlaneRow = BlendPlaneRow_SSSE3;
  1239. }
  1240. }
  1241. #endif
  1242. #if defined(HAS_BLENDPLANEROW_AVX2)
  1243. if (TestCpuFlag(kCpuHasAVX2)) {
  1244. BlendPlaneRow = BlendPlaneRow_Any_AVX2;
  1245. if (IS_ALIGNED(width, 32)) {
  1246. BlendPlaneRow = BlendPlaneRow_AVX2;
  1247. }
  1248. }
  1249. #endif
  1250. #if defined(HAS_BLENDPLANEROW_MMI)
  1251. if (TestCpuFlag(kCpuHasMMI)) {
  1252. BlendPlaneRow = BlendPlaneRow_Any_MMI;
  1253. if (IS_ALIGNED(width, 8)) {
  1254. BlendPlaneRow = BlendPlaneRow_MMI;
  1255. }
  1256. }
  1257. #endif
  1258. for (y = 0; y < height; ++y) {
  1259. BlendPlaneRow(src_y0, src_y1, alpha, dst_y, width);
  1260. src_y0 += src_stride_y0;
  1261. src_y1 += src_stride_y1;
  1262. alpha += alpha_stride;
  1263. dst_y += dst_stride_y;
  1264. }
  1265. return 0;
  1266. }
  1267. #define MAXTWIDTH 2048
  1268. // Alpha Blend YUV images and store to destination.
  1269. LIBYUV_API
  1270. int I420Blend(const uint8_t* src_y0,
  1271. int src_stride_y0,
  1272. const uint8_t* src_u0,
  1273. int src_stride_u0,
  1274. const uint8_t* src_v0,
  1275. int src_stride_v0,
  1276. const uint8_t* src_y1,
  1277. int src_stride_y1,
  1278. const uint8_t* src_u1,
  1279. int src_stride_u1,
  1280. const uint8_t* src_v1,
  1281. int src_stride_v1,
  1282. const uint8_t* alpha,
  1283. int alpha_stride,
  1284. uint8_t* dst_y,
  1285. int dst_stride_y,
  1286. uint8_t* dst_u,
  1287. int dst_stride_u,
  1288. uint8_t* dst_v,
  1289. int dst_stride_v,
  1290. int width,
  1291. int height) {
  1292. int y;
  1293. // Half width/height for UV.
  1294. int halfwidth = (width + 1) >> 1;
  1295. void (*BlendPlaneRow)(const uint8_t* src0, const uint8_t* src1,
  1296. const uint8_t* alpha, uint8_t* dst, int width) =
  1297. BlendPlaneRow_C;
  1298. void (*ScaleRowDown2)(const uint8_t* src_ptr, ptrdiff_t src_stride,
  1299. uint8_t* dst_ptr, int dst_width) = ScaleRowDown2Box_C;
  1300. if (!src_y0 || !src_u0 || !src_v0 || !src_y1 || !src_u1 || !src_v1 ||
  1301. !alpha || !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
  1302. return -1;
  1303. }
  1304. // Negative height means invert the image.
  1305. if (height < 0) {
  1306. height = -height;
  1307. dst_y = dst_y + (height - 1) * dst_stride_y;
  1308. dst_stride_y = -dst_stride_y;
  1309. }
  1310. // Blend Y plane.
  1311. BlendPlane(src_y0, src_stride_y0, src_y1, src_stride_y1, alpha, alpha_stride,
  1312. dst_y, dst_stride_y, width, height);
  1313. #if defined(HAS_BLENDPLANEROW_SSSE3)
  1314. if (TestCpuFlag(kCpuHasSSSE3)) {
  1315. BlendPlaneRow = BlendPlaneRow_Any_SSSE3;
  1316. if (IS_ALIGNED(halfwidth, 8)) {
  1317. BlendPlaneRow = BlendPlaneRow_SSSE3;
  1318. }
  1319. }
  1320. #endif
  1321. #if defined(HAS_BLENDPLANEROW_AVX2)
  1322. if (TestCpuFlag(kCpuHasAVX2)) {
  1323. BlendPlaneRow = BlendPlaneRow_Any_AVX2;
  1324. if (IS_ALIGNED(halfwidth, 32)) {
  1325. BlendPlaneRow = BlendPlaneRow_AVX2;
  1326. }
  1327. }
  1328. #endif
  1329. #if defined(HAS_BLENDPLANEROW_MMI)
  1330. if (TestCpuFlag(kCpuHasMMI)) {
  1331. BlendPlaneRow = BlendPlaneRow_Any_MMI;
  1332. if (IS_ALIGNED(halfwidth, 8)) {
  1333. BlendPlaneRow = BlendPlaneRow_MMI;
  1334. }
  1335. }
  1336. #endif
  1337. if (!IS_ALIGNED(width, 2)) {
  1338. ScaleRowDown2 = ScaleRowDown2Box_Odd_C;
  1339. }
  1340. #if defined(HAS_SCALEROWDOWN2_NEON)
  1341. if (TestCpuFlag(kCpuHasNEON)) {
  1342. ScaleRowDown2 = ScaleRowDown2Box_Odd_NEON;
  1343. if (IS_ALIGNED(width, 2)) {
  1344. ScaleRowDown2 = ScaleRowDown2Box_Any_NEON;
  1345. if (IS_ALIGNED(halfwidth, 16)) {
  1346. ScaleRowDown2 = ScaleRowDown2Box_NEON;
  1347. }
  1348. }
  1349. }
  1350. #endif
  1351. #if defined(HAS_SCALEROWDOWN2_SSSE3)
  1352. if (TestCpuFlag(kCpuHasSSSE3)) {
  1353. ScaleRowDown2 = ScaleRowDown2Box_Odd_SSSE3;
  1354. if (IS_ALIGNED(width, 2)) {
  1355. ScaleRowDown2 = ScaleRowDown2Box_Any_SSSE3;
  1356. if (IS_ALIGNED(halfwidth, 16)) {
  1357. ScaleRowDown2 = ScaleRowDown2Box_SSSE3;
  1358. }
  1359. }
  1360. }
  1361. #endif
  1362. #if defined(HAS_SCALEROWDOWN2_AVX2)
  1363. if (TestCpuFlag(kCpuHasAVX2)) {
  1364. ScaleRowDown2 = ScaleRowDown2Box_Odd_AVX2;
  1365. if (IS_ALIGNED(width, 2)) {
  1366. ScaleRowDown2 = ScaleRowDown2Box_Any_AVX2;
  1367. if (IS_ALIGNED(halfwidth, 32)) {
  1368. ScaleRowDown2 = ScaleRowDown2Box_AVX2;
  1369. }
  1370. }
  1371. }
  1372. #endif
  1373. #if defined(HAS_SCALEROWDOWN2_MMI)
  1374. if (TestCpuFlag(kCpuHasMMI)) {
  1375. ScaleRowDown2 = ScaleRowDown2Box_Odd_MMI;
  1376. if (IS_ALIGNED(width, 2)) {
  1377. ScaleRowDown2 = ScaleRowDown2Box_Any_MMI;
  1378. if (IS_ALIGNED(halfwidth, 8)) {
  1379. ScaleRowDown2 = ScaleRowDown2Box_MMI;
  1380. }
  1381. }
  1382. }
  1383. #endif
  1384. // Row buffer for intermediate alpha pixels.
  1385. align_buffer_64(halfalpha, halfwidth);
  1386. for (y = 0; y < height; y += 2) {
  1387. // last row of odd height image use 1 row of alpha instead of 2.
  1388. if (y == (height - 1)) {
  1389. alpha_stride = 0;
  1390. }
  1391. // Subsample 2 rows of UV to half width and half height.
  1392. ScaleRowDown2(alpha, alpha_stride, halfalpha, halfwidth);
  1393. alpha += alpha_stride * 2;
  1394. BlendPlaneRow(src_u0, src_u1, halfalpha, dst_u, halfwidth);
  1395. BlendPlaneRow(src_v0, src_v1, halfalpha, dst_v, halfwidth);
  1396. src_u0 += src_stride_u0;
  1397. src_u1 += src_stride_u1;
  1398. dst_u += dst_stride_u;
  1399. src_v0 += src_stride_v0;
  1400. src_v1 += src_stride_v1;
  1401. dst_v += dst_stride_v;
  1402. }
  1403. free_aligned_buffer_64(halfalpha);
  1404. return 0;
  1405. }
  1406. // Multiply 2 ARGB images and store to destination.
  1407. LIBYUV_API
  1408. int ARGBMultiply(const uint8_t* src_argb0,
  1409. int src_stride_argb0,
  1410. const uint8_t* src_argb1,
  1411. int src_stride_argb1,
  1412. uint8_t* dst_argb,
  1413. int dst_stride_argb,
  1414. int width,
  1415. int height) {
  1416. int y;
  1417. void (*ARGBMultiplyRow)(const uint8_t* src0, const uint8_t* src1,
  1418. uint8_t* dst, int width) = ARGBMultiplyRow_C;
  1419. if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
  1420. return -1;
  1421. }
  1422. // Negative height means invert the image.
  1423. if (height < 0) {
  1424. height = -height;
  1425. dst_argb = dst_argb + (height - 1) * dst_stride_argb;
  1426. dst_stride_argb = -dst_stride_argb;
  1427. }
  1428. // Coalesce rows.
  1429. if (src_stride_argb0 == width * 4 && src_stride_argb1 == width * 4 &&
  1430. dst_stride_argb == width * 4) {
  1431. width *= height;
  1432. height = 1;
  1433. src_stride_argb0 = src_stride_argb1 = dst_stride_argb = 0;
  1434. }
  1435. #if defined(HAS_ARGBMULTIPLYROW_SSE2)
  1436. if (TestCpuFlag(kCpuHasSSE2)) {
  1437. ARGBMultiplyRow = ARGBMultiplyRow_Any_SSE2;
  1438. if (IS_ALIGNED(width, 4)) {
  1439. ARGBMultiplyRow = ARGBMultiplyRow_SSE2;
  1440. }
  1441. }
  1442. #endif
  1443. #if defined(HAS_ARGBMULTIPLYROW_AVX2)
  1444. if (TestCpuFlag(kCpuHasAVX2)) {
  1445. ARGBMultiplyRow = ARGBMultiplyRow_Any_AVX2;
  1446. if (IS_ALIGNED(width, 8)) {
  1447. ARGBMultiplyRow = ARGBMultiplyRow_AVX2;
  1448. }
  1449. }
  1450. #endif
  1451. #if defined(HAS_ARGBMULTIPLYROW_NEON)
  1452. if (TestCpuFlag(kCpuHasNEON)) {
  1453. ARGBMultiplyRow = ARGBMultiplyRow_Any_NEON;
  1454. if (IS_ALIGNED(width, 8)) {
  1455. ARGBMultiplyRow = ARGBMultiplyRow_NEON;
  1456. }
  1457. }
  1458. #endif
  1459. #if defined(HAS_ARGBMULTIPLYROW_MSA)
  1460. if (TestCpuFlag(kCpuHasMSA)) {
  1461. ARGBMultiplyRow = ARGBMultiplyRow_Any_MSA;
  1462. if (IS_ALIGNED(width, 4)) {
  1463. ARGBMultiplyRow = ARGBMultiplyRow_MSA;
  1464. }
  1465. }
  1466. #endif
  1467. #if defined(HAS_ARGBMULTIPLYROW_MMI)
  1468. if (TestCpuFlag(kCpuHasMMI)) {
  1469. ARGBMultiplyRow = ARGBMultiplyRow_Any_MMI;
  1470. if (IS_ALIGNED(width, 2)) {
  1471. ARGBMultiplyRow = ARGBMultiplyRow_MMI;
  1472. }
  1473. }
  1474. #endif
  1475. // Multiply plane
  1476. for (y = 0; y < height; ++y) {
  1477. ARGBMultiplyRow(src_argb0, src_argb1, dst_argb, width);
  1478. src_argb0 += src_stride_argb0;
  1479. src_argb1 += src_stride_argb1;
  1480. dst_argb += dst_stride_argb;
  1481. }
  1482. return 0;
  1483. }
  1484. // Add 2 ARGB images and store to destination.
  1485. LIBYUV_API
  1486. int ARGBAdd(const uint8_t* src_argb0,
  1487. int src_stride_argb0,
  1488. const uint8_t* src_argb1,
  1489. int src_stride_argb1,
  1490. uint8_t* dst_argb,
  1491. int dst_stride_argb,
  1492. int width,
  1493. int height) {
  1494. int y;
  1495. void (*ARGBAddRow)(const uint8_t* src0, const uint8_t* src1, uint8_t* dst,
  1496. int width) = ARGBAddRow_C;
  1497. if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
  1498. return -1;
  1499. }
  1500. // Negative height means invert the image.
  1501. if (height < 0) {
  1502. height = -height;
  1503. dst_argb = dst_argb + (height - 1) * dst_stride_argb;
  1504. dst_stride_argb = -dst_stride_argb;
  1505. }
  1506. // Coalesce rows.
  1507. if (src_stride_argb0 == width * 4 && src_stride_argb1 == width * 4 &&
  1508. dst_stride_argb == width * 4) {
  1509. width *= height;
  1510. height = 1;
  1511. src_stride_argb0 = src_stride_argb1 = dst_stride_argb = 0;
  1512. }
  1513. #if defined(HAS_ARGBADDROW_SSE2) && (defined(_MSC_VER) && !defined(__clang__))
  1514. if (TestCpuFlag(kCpuHasSSE2)) {
  1515. ARGBAddRow = ARGBAddRow_SSE2;
  1516. }
  1517. #endif
  1518. #if defined(HAS_ARGBADDROW_SSE2) && !(defined(_MSC_VER) && !defined(__clang__))
  1519. if (TestCpuFlag(kCpuHasSSE2)) {
  1520. ARGBAddRow = ARGBAddRow_Any_SSE2;
  1521. if (IS_ALIGNED(width, 4)) {
  1522. ARGBAddRow = ARGBAddRow_SSE2;
  1523. }
  1524. }
  1525. #endif
  1526. #if defined(HAS_ARGBADDROW_AVX2)
  1527. if (TestCpuFlag(kCpuHasAVX2)) {
  1528. ARGBAddRow = ARGBAddRow_Any_AVX2;
  1529. if (IS_ALIGNED(width, 8)) {
  1530. ARGBAddRow = ARGBAddRow_AVX2;
  1531. }
  1532. }
  1533. #endif
  1534. #if defined(HAS_ARGBADDROW_NEON)
  1535. if (TestCpuFlag(kCpuHasNEON)) {
  1536. ARGBAddRow = ARGBAddRow_Any_NEON;
  1537. if (IS_ALIGNED(width, 8)) {
  1538. ARGBAddRow = ARGBAddRow_NEON;
  1539. }
  1540. }
  1541. #endif
  1542. #if defined(HAS_ARGBADDROW_MSA)
  1543. if (TestCpuFlag(kCpuHasMSA)) {
  1544. ARGBAddRow = ARGBAddRow_Any_MSA;
  1545. if (IS_ALIGNED(width, 8)) {
  1546. ARGBAddRow = ARGBAddRow_MSA;
  1547. }
  1548. }
  1549. #endif
  1550. #if defined(HAS_ARGBADDROW_MMI)
  1551. if (TestCpuFlag(kCpuHasMMI)) {
  1552. ARGBAddRow = ARGBAddRow_Any_MMI;
  1553. if (IS_ALIGNED(width, 2)) {
  1554. ARGBAddRow = ARGBAddRow_MMI;
  1555. }
  1556. }
  1557. #endif
  1558. // Add plane
  1559. for (y = 0; y < height; ++y) {
  1560. ARGBAddRow(src_argb0, src_argb1, dst_argb, width);
  1561. src_argb0 += src_stride_argb0;
  1562. src_argb1 += src_stride_argb1;
  1563. dst_argb += dst_stride_argb;
  1564. }
  1565. return 0;
  1566. }
  1567. // Subtract 2 ARGB images and store to destination.
  1568. LIBYUV_API
  1569. int ARGBSubtract(const uint8_t* src_argb0,
  1570. int src_stride_argb0,
  1571. const uint8_t* src_argb1,
  1572. int src_stride_argb1,
  1573. uint8_t* dst_argb,
  1574. int dst_stride_argb,
  1575. int width,
  1576. int height) {
  1577. int y;
  1578. void (*ARGBSubtractRow)(const uint8_t* src0, const uint8_t* src1,
  1579. uint8_t* dst, int width) = ARGBSubtractRow_C;
  1580. if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
  1581. return -1;
  1582. }
  1583. // Negative height means invert the image.
  1584. if (height < 0) {
  1585. height = -height;
  1586. dst_argb = dst_argb + (height - 1) * dst_stride_argb;
  1587. dst_stride_argb = -dst_stride_argb;
  1588. }
  1589. // Coalesce rows.
  1590. if (src_stride_argb0 == width * 4 && src_stride_argb1 == width * 4 &&
  1591. dst_stride_argb == width * 4) {
  1592. width *= height;
  1593. height = 1;
  1594. src_stride_argb0 = src_stride_argb1 = dst_stride_argb = 0;
  1595. }
  1596. #if defined(HAS_ARGBSUBTRACTROW_SSE2)
  1597. if (TestCpuFlag(kCpuHasSSE2)) {
  1598. ARGBSubtractRow = ARGBSubtractRow_Any_SSE2;
  1599. if (IS_ALIGNED(width, 4)) {
  1600. ARGBSubtractRow = ARGBSubtractRow_SSE2;
  1601. }
  1602. }
  1603. #endif
  1604. #if defined(HAS_ARGBSUBTRACTROW_AVX2)
  1605. if (TestCpuFlag(kCpuHasAVX2)) {
  1606. ARGBSubtractRow = ARGBSubtractRow_Any_AVX2;
  1607. if (IS_ALIGNED(width, 8)) {
  1608. ARGBSubtractRow = ARGBSubtractRow_AVX2;
  1609. }
  1610. }
  1611. #endif
  1612. #if defined(HAS_ARGBSUBTRACTROW_NEON)
  1613. if (TestCpuFlag(kCpuHasNEON)) {
  1614. ARGBSubtractRow = ARGBSubtractRow_Any_NEON;
  1615. if (IS_ALIGNED(width, 8)) {
  1616. ARGBSubtractRow = ARGBSubtractRow_NEON;
  1617. }
  1618. }
  1619. #endif
  1620. #if defined(HAS_ARGBSUBTRACTROW_MSA)
  1621. if (TestCpuFlag(kCpuHasMSA)) {
  1622. ARGBSubtractRow = ARGBSubtractRow_Any_MSA;
  1623. if (IS_ALIGNED(width, 8)) {
  1624. ARGBSubtractRow = ARGBSubtractRow_MSA;
  1625. }
  1626. }
  1627. #endif
  1628. #if defined(HAS_ARGBSUBTRACTROW_MMI)
  1629. if (TestCpuFlag(kCpuHasMMI)) {
  1630. ARGBSubtractRow = ARGBSubtractRow_Any_MMI;
  1631. if (IS_ALIGNED(width, 2)) {
  1632. ARGBSubtractRow = ARGBSubtractRow_MMI;
  1633. }
  1634. }
  1635. #endif
  1636. // Subtract plane
  1637. for (y = 0; y < height; ++y) {
  1638. ARGBSubtractRow(src_argb0, src_argb1, dst_argb, width);
  1639. src_argb0 += src_stride_argb0;
  1640. src_argb1 += src_stride_argb1;
  1641. dst_argb += dst_stride_argb;
  1642. }
  1643. return 0;
  1644. }
  1645. // Convert I422 to RGBA with matrix
  1646. static int I422ToRGBAMatrix(const uint8_t* src_y,
  1647. int src_stride_y,
  1648. const uint8_t* src_u,
  1649. int src_stride_u,
  1650. const uint8_t* src_v,
  1651. int src_stride_v,
  1652. uint8_t* dst_rgba,
  1653. int dst_stride_rgba,
  1654. const struct YuvConstants* yuvconstants,
  1655. int width,
  1656. int height) {
  1657. int y;
  1658. void (*I422ToRGBARow)(const uint8_t* y_buf, const uint8_t* u_buf,
  1659. const uint8_t* v_buf, uint8_t* rgb_buf,
  1660. const struct YuvConstants* yuvconstants, int width) =
  1661. I422ToRGBARow_C;
  1662. if (!src_y || !src_u || !src_v || !dst_rgba || width <= 0 || height == 0) {
  1663. return -1;
  1664. }
  1665. // Negative height means invert the image.
  1666. if (height < 0) {
  1667. height = -height;
  1668. dst_rgba = dst_rgba + (height - 1) * dst_stride_rgba;
  1669. dst_stride_rgba = -dst_stride_rgba;
  1670. }
  1671. #if defined(HAS_I422TORGBAROW_SSSE3)
  1672. if (TestCpuFlag(kCpuHasSSSE3)) {
  1673. I422ToRGBARow = I422ToRGBARow_Any_SSSE3;
  1674. if (IS_ALIGNED(width, 8)) {
  1675. I422ToRGBARow = I422ToRGBARow_SSSE3;
  1676. }
  1677. }
  1678. #endif
  1679. #if defined(HAS_I422TORGBAROW_AVX2)
  1680. if (TestCpuFlag(kCpuHasAVX2)) {
  1681. I422ToRGBARow = I422ToRGBARow_Any_AVX2;
  1682. if (IS_ALIGNED(width, 16)) {
  1683. I422ToRGBARow = I422ToRGBARow_AVX2;
  1684. }
  1685. }
  1686. #endif
  1687. #if defined(HAS_I422TORGBAROW_NEON)
  1688. if (TestCpuFlag(kCpuHasNEON)) {
  1689. I422ToRGBARow = I422ToRGBARow_Any_NEON;
  1690. if (IS_ALIGNED(width, 8)) {
  1691. I422ToRGBARow = I422ToRGBARow_NEON;
  1692. }
  1693. }
  1694. #endif
  1695. #if defined(HAS_I422TORGBAROW_MSA)
  1696. if (TestCpuFlag(kCpuHasMSA)) {
  1697. I422ToRGBARow = I422ToRGBARow_Any_MSA;
  1698. if (IS_ALIGNED(width, 8)) {
  1699. I422ToRGBARow = I422ToRGBARow_MSA;
  1700. }
  1701. }
  1702. #endif
  1703. for (y = 0; y < height; ++y) {
  1704. I422ToRGBARow(src_y, src_u, src_v, dst_rgba, yuvconstants, width);
  1705. dst_rgba += dst_stride_rgba;
  1706. src_y += src_stride_y;
  1707. src_u += src_stride_u;
  1708. src_v += src_stride_v;
  1709. }
  1710. return 0;
  1711. }
  1712. // Convert I422 to RGBA.
  1713. LIBYUV_API
  1714. int I422ToRGBA(const uint8_t* src_y,
  1715. int src_stride_y,
  1716. const uint8_t* src_u,
  1717. int src_stride_u,
  1718. const uint8_t* src_v,
  1719. int src_stride_v,
  1720. uint8_t* dst_rgba,
  1721. int dst_stride_rgba,
  1722. int width,
  1723. int height) {
  1724. return I422ToRGBAMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v,
  1725. src_stride_v, dst_rgba, dst_stride_rgba,
  1726. &kYuvI601Constants, width, height);
  1727. }
  1728. // Convert I422 to BGRA.
  1729. LIBYUV_API
  1730. int I422ToBGRA(const uint8_t* src_y,
  1731. int src_stride_y,
  1732. const uint8_t* src_u,
  1733. int src_stride_u,
  1734. const uint8_t* src_v,
  1735. int src_stride_v,
  1736. uint8_t* dst_bgra,
  1737. int dst_stride_bgra,
  1738. int width,
  1739. int height) {
  1740. return I422ToRGBAMatrix(src_y, src_stride_y, src_v,
  1741. src_stride_v, // Swap U and V
  1742. src_u, src_stride_u, dst_bgra, dst_stride_bgra,
  1743. &kYvuI601Constants, // Use Yvu matrix
  1744. width, height);
  1745. }
  1746. // Convert NV12 to RGB565.
  1747. LIBYUV_API
  1748. int NV12ToRGB565(const uint8_t* src_y,
  1749. int src_stride_y,
  1750. const uint8_t* src_uv,
  1751. int src_stride_uv,
  1752. uint8_t* dst_rgb565,
  1753. int dst_stride_rgb565,
  1754. int width,
  1755. int height) {
  1756. int y;
  1757. void (*NV12ToRGB565Row)(
  1758. const uint8_t* y_buf, const uint8_t* uv_buf, uint8_t* rgb_buf,
  1759. const struct YuvConstants* yuvconstants, int width) = NV12ToRGB565Row_C;
  1760. if (!src_y || !src_uv || !dst_rgb565 || width <= 0 || height == 0) {
  1761. return -1;
  1762. }
  1763. // Negative height means invert the image.
  1764. if (height < 0) {
  1765. height = -height;
  1766. dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
  1767. dst_stride_rgb565 = -dst_stride_rgb565;
  1768. }
  1769. #if defined(HAS_NV12TORGB565ROW_SSSE3)
  1770. if (TestCpuFlag(kCpuHasSSSE3)) {
  1771. NV12ToRGB565Row = NV12ToRGB565Row_Any_SSSE3;
  1772. if (IS_ALIGNED(width, 8)) {
  1773. NV12ToRGB565Row = NV12ToRGB565Row_SSSE3;
  1774. }
  1775. }
  1776. #endif
  1777. #if defined(HAS_NV12TORGB565ROW_AVX2)
  1778. if (TestCpuFlag(kCpuHasAVX2)) {
  1779. NV12ToRGB565Row = NV12ToRGB565Row_Any_AVX2;
  1780. if (IS_ALIGNED(width, 16)) {
  1781. NV12ToRGB565Row = NV12ToRGB565Row_AVX2;
  1782. }
  1783. }
  1784. #endif
  1785. #if defined(HAS_NV12TORGB565ROW_NEON)
  1786. if (TestCpuFlag(kCpuHasNEON)) {
  1787. NV12ToRGB565Row = NV12ToRGB565Row_Any_NEON;
  1788. if (IS_ALIGNED(width, 8)) {
  1789. NV12ToRGB565Row = NV12ToRGB565Row_NEON;
  1790. }
  1791. }
  1792. #endif
  1793. #if defined(HAS_NV12TORGB565ROW_MSA)
  1794. if (TestCpuFlag(kCpuHasMSA)) {
  1795. NV12ToRGB565Row = NV12ToRGB565Row_Any_MSA;
  1796. if (IS_ALIGNED(width, 8)) {
  1797. NV12ToRGB565Row = NV12ToRGB565Row_MSA;
  1798. }
  1799. }
  1800. #endif
  1801. for (y = 0; y < height; ++y) {
  1802. NV12ToRGB565Row(src_y, src_uv, dst_rgb565, &kYuvI601Constants, width);
  1803. dst_rgb565 += dst_stride_rgb565;
  1804. src_y += src_stride_y;
  1805. if (y & 1) {
  1806. src_uv += src_stride_uv;
  1807. }
  1808. }
  1809. return 0;
  1810. }
  1811. // Convert RAW to RGB24.
  1812. LIBYUV_API
  1813. int RAWToRGB24(const uint8_t* src_raw,
  1814. int src_stride_raw,
  1815. uint8_t* dst_rgb24,
  1816. int dst_stride_rgb24,
  1817. int width,
  1818. int height) {
  1819. int y;
  1820. void (*RAWToRGB24Row)(const uint8_t* src_rgb, uint8_t* dst_rgb24, int width) =
  1821. RAWToRGB24Row_C;
  1822. if (!src_raw || !dst_rgb24 || width <= 0 || height == 0) {
  1823. return -1;
  1824. }
  1825. // Negative height means invert the image.
  1826. if (height < 0) {
  1827. height = -height;
  1828. src_raw = src_raw + (height - 1) * src_stride_raw;
  1829. src_stride_raw = -src_stride_raw;
  1830. }
  1831. // Coalesce rows.
  1832. if (src_stride_raw == width * 3 && dst_stride_rgb24 == width * 3) {
  1833. width *= height;
  1834. height = 1;
  1835. src_stride_raw = dst_stride_rgb24 = 0;
  1836. }
  1837. #if defined(HAS_RAWTORGB24ROW_SSSE3)
  1838. if (TestCpuFlag(kCpuHasSSSE3)) {
  1839. RAWToRGB24Row = RAWToRGB24Row_Any_SSSE3;
  1840. if (IS_ALIGNED(width, 8)) {
  1841. RAWToRGB24Row = RAWToRGB24Row_SSSE3;
  1842. }
  1843. }
  1844. #endif
  1845. #if defined(HAS_RAWTORGB24ROW_NEON)
  1846. if (TestCpuFlag(kCpuHasNEON)) {
  1847. RAWToRGB24Row = RAWToRGB24Row_Any_NEON;
  1848. if (IS_ALIGNED(width, 8)) {
  1849. RAWToRGB24Row = RAWToRGB24Row_NEON;
  1850. }
  1851. }
  1852. #endif
  1853. #if defined(HAS_RAWTORGB24ROW_MSA)
  1854. if (TestCpuFlag(kCpuHasMSA)) {
  1855. RAWToRGB24Row = RAWToRGB24Row_Any_MSA;
  1856. if (IS_ALIGNED(width, 16)) {
  1857. RAWToRGB24Row = RAWToRGB24Row_MSA;
  1858. }
  1859. }
  1860. #endif
  1861. #if defined(HAS_RAWTORGB24ROW_MMI)
  1862. if (TestCpuFlag(kCpuHasMMI)) {
  1863. RAWToRGB24Row = RAWToRGB24Row_Any_MMI;
  1864. if (IS_ALIGNED(width, 4)) {
  1865. RAWToRGB24Row = RAWToRGB24Row_MMI;
  1866. }
  1867. }
  1868. #endif
  1869. for (y = 0; y < height; ++y) {
  1870. RAWToRGB24Row(src_raw, dst_rgb24, width);
  1871. src_raw += src_stride_raw;
  1872. dst_rgb24 += dst_stride_rgb24;
  1873. }
  1874. return 0;
  1875. }
  1876. LIBYUV_API
  1877. void SetPlane(uint8_t* dst_y,
  1878. int dst_stride_y,
  1879. int width,
  1880. int height,
  1881. uint32_t value) {
  1882. int y;
  1883. void (*SetRow)(uint8_t * dst, uint8_t value, int width) = SetRow_C;
  1884. if (height < 0) {
  1885. height = -height;
  1886. dst_y = dst_y + (height - 1) * dst_stride_y;
  1887. dst_stride_y = -dst_stride_y;
  1888. }
  1889. // Coalesce rows.
  1890. if (dst_stride_y == width) {
  1891. width *= height;
  1892. height = 1;
  1893. dst_stride_y = 0;
  1894. }
  1895. #if defined(HAS_SETROW_NEON)
  1896. if (TestCpuFlag(kCpuHasNEON)) {
  1897. SetRow = SetRow_Any_NEON;
  1898. if (IS_ALIGNED(width, 16)) {
  1899. SetRow = SetRow_NEON;
  1900. }
  1901. }
  1902. #endif
  1903. #if defined(HAS_SETROW_X86)
  1904. if (TestCpuFlag(kCpuHasX86)) {
  1905. SetRow = SetRow_Any_X86;
  1906. if (IS_ALIGNED(width, 4)) {
  1907. SetRow = SetRow_X86;
  1908. }
  1909. }
  1910. #endif
  1911. #if defined(HAS_SETROW_ERMS)
  1912. if (TestCpuFlag(kCpuHasERMS)) {
  1913. SetRow = SetRow_ERMS;
  1914. }
  1915. #endif
  1916. #if defined(HAS_SETROW_MSA)
  1917. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 16)) {
  1918. SetRow = SetRow_MSA;
  1919. }
  1920. #endif
  1921. // Set plane
  1922. for (y = 0; y < height; ++y) {
  1923. SetRow(dst_y, value, width);
  1924. dst_y += dst_stride_y;
  1925. }
  1926. }
  1927. // Draw a rectangle into I420
  1928. LIBYUV_API
  1929. int I420Rect(uint8_t* dst_y,
  1930. int dst_stride_y,
  1931. uint8_t* dst_u,
  1932. int dst_stride_u,
  1933. uint8_t* dst_v,
  1934. int dst_stride_v,
  1935. int x,
  1936. int y,
  1937. int width,
  1938. int height,
  1939. int value_y,
  1940. int value_u,
  1941. int value_v) {
  1942. int halfwidth = (width + 1) >> 1;
  1943. int halfheight = (height + 1) >> 1;
  1944. uint8_t* start_y = dst_y + y * dst_stride_y + x;
  1945. uint8_t* start_u = dst_u + (y / 2) * dst_stride_u + (x / 2);
  1946. uint8_t* start_v = dst_v + (y / 2) * dst_stride_v + (x / 2);
  1947. if (!dst_y || !dst_u || !dst_v || width <= 0 || height == 0 || x < 0 ||
  1948. y < 0 || value_y < 0 || value_y > 255 || value_u < 0 || value_u > 255 ||
  1949. value_v < 0 || value_v > 255) {
  1950. return -1;
  1951. }
  1952. SetPlane(start_y, dst_stride_y, width, height, value_y);
  1953. SetPlane(start_u, dst_stride_u, halfwidth, halfheight, value_u);
  1954. SetPlane(start_v, dst_stride_v, halfwidth, halfheight, value_v);
  1955. return 0;
  1956. }
  1957. // Draw a rectangle into ARGB
  1958. LIBYUV_API
  1959. int ARGBRect(uint8_t* dst_argb,
  1960. int dst_stride_argb,
  1961. int dst_x,
  1962. int dst_y,
  1963. int width,
  1964. int height,
  1965. uint32_t value) {
  1966. int y;
  1967. void (*ARGBSetRow)(uint8_t * dst_argb, uint32_t value, int width) =
  1968. ARGBSetRow_C;
  1969. if (!dst_argb || width <= 0 || height == 0 || dst_x < 0 || dst_y < 0) {
  1970. return -1;
  1971. }
  1972. if (height < 0) {
  1973. height = -height;
  1974. dst_argb = dst_argb + (height - 1) * dst_stride_argb;
  1975. dst_stride_argb = -dst_stride_argb;
  1976. }
  1977. dst_argb += dst_y * dst_stride_argb + dst_x * 4;
  1978. // Coalesce rows.
  1979. if (dst_stride_argb == width * 4) {
  1980. width *= height;
  1981. height = 1;
  1982. dst_stride_argb = 0;
  1983. }
  1984. #if defined(HAS_ARGBSETROW_NEON)
  1985. if (TestCpuFlag(kCpuHasNEON)) {
  1986. ARGBSetRow = ARGBSetRow_Any_NEON;
  1987. if (IS_ALIGNED(width, 4)) {
  1988. ARGBSetRow = ARGBSetRow_NEON;
  1989. }
  1990. }
  1991. #endif
  1992. #if defined(HAS_ARGBSETROW_X86)
  1993. if (TestCpuFlag(kCpuHasX86)) {
  1994. ARGBSetRow = ARGBSetRow_X86;
  1995. }
  1996. #endif
  1997. #if defined(HAS_ARGBSETROW_MSA)
  1998. if (TestCpuFlag(kCpuHasMSA)) {
  1999. ARGBSetRow = ARGBSetRow_Any_MSA;
  2000. if (IS_ALIGNED(width, 4)) {
  2001. ARGBSetRow = ARGBSetRow_MSA;
  2002. }
  2003. }
  2004. #endif
  2005. // Set plane
  2006. for (y = 0; y < height; ++y) {
  2007. ARGBSetRow(dst_argb, value, width);
  2008. dst_argb += dst_stride_argb;
  2009. }
  2010. return 0;
  2011. }
  2012. // Convert unattentuated ARGB to preattenuated ARGB.
  2013. // An unattenutated ARGB alpha blend uses the formula
  2014. // p = a * f + (1 - a) * b
  2015. // where
  2016. // p is output pixel
  2017. // f is foreground pixel
  2018. // b is background pixel
  2019. // a is alpha value from foreground pixel
  2020. // An preattenutated ARGB alpha blend uses the formula
  2021. // p = f + (1 - a) * b
  2022. // where
  2023. // f is foreground pixel premultiplied by alpha
  2024. LIBYUV_API
  2025. int ARGBAttenuate(const uint8_t* src_argb,
  2026. int src_stride_argb,
  2027. uint8_t* dst_argb,
  2028. int dst_stride_argb,
  2029. int width,
  2030. int height) {
  2031. int y;
  2032. void (*ARGBAttenuateRow)(const uint8_t* src_argb, uint8_t* dst_argb,
  2033. int width) = ARGBAttenuateRow_C;
  2034. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  2035. return -1;
  2036. }
  2037. if (height < 0) {
  2038. height = -height;
  2039. src_argb = src_argb + (height - 1) * src_stride_argb;
  2040. src_stride_argb = -src_stride_argb;
  2041. }
  2042. // Coalesce rows.
  2043. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  2044. width *= height;
  2045. height = 1;
  2046. src_stride_argb = dst_stride_argb = 0;
  2047. }
  2048. #if defined(HAS_ARGBATTENUATEROW_SSSE3)
  2049. if (TestCpuFlag(kCpuHasSSSE3)) {
  2050. ARGBAttenuateRow = ARGBAttenuateRow_Any_SSSE3;
  2051. if (IS_ALIGNED(width, 4)) {
  2052. ARGBAttenuateRow = ARGBAttenuateRow_SSSE3;
  2053. }
  2054. }
  2055. #endif
  2056. #if defined(HAS_ARGBATTENUATEROW_AVX2)
  2057. if (TestCpuFlag(kCpuHasAVX2)) {
  2058. ARGBAttenuateRow = ARGBAttenuateRow_Any_AVX2;
  2059. if (IS_ALIGNED(width, 8)) {
  2060. ARGBAttenuateRow = ARGBAttenuateRow_AVX2;
  2061. }
  2062. }
  2063. #endif
  2064. #if defined(HAS_ARGBATTENUATEROW_NEON)
  2065. if (TestCpuFlag(kCpuHasNEON)) {
  2066. ARGBAttenuateRow = ARGBAttenuateRow_Any_NEON;
  2067. if (IS_ALIGNED(width, 8)) {
  2068. ARGBAttenuateRow = ARGBAttenuateRow_NEON;
  2069. }
  2070. }
  2071. #endif
  2072. #if defined(HAS_ARGBATTENUATEROW_MSA)
  2073. if (TestCpuFlag(kCpuHasMSA)) {
  2074. ARGBAttenuateRow = ARGBAttenuateRow_Any_MSA;
  2075. if (IS_ALIGNED(width, 8)) {
  2076. ARGBAttenuateRow = ARGBAttenuateRow_MSA;
  2077. }
  2078. }
  2079. #endif
  2080. #if defined(HAS_ARGBATTENUATEROW_MMI)
  2081. if (TestCpuFlag(kCpuHasMMI)) {
  2082. ARGBAttenuateRow = ARGBAttenuateRow_Any_MMI;
  2083. if (IS_ALIGNED(width, 2)) {
  2084. ARGBAttenuateRow = ARGBAttenuateRow_MMI;
  2085. }
  2086. }
  2087. #endif
  2088. for (y = 0; y < height; ++y) {
  2089. ARGBAttenuateRow(src_argb, dst_argb, width);
  2090. src_argb += src_stride_argb;
  2091. dst_argb += dst_stride_argb;
  2092. }
  2093. return 0;
  2094. }
  2095. // Convert preattentuated ARGB to unattenuated ARGB.
  2096. LIBYUV_API
  2097. int ARGBUnattenuate(const uint8_t* src_argb,
  2098. int src_stride_argb,
  2099. uint8_t* dst_argb,
  2100. int dst_stride_argb,
  2101. int width,
  2102. int height) {
  2103. int y;
  2104. void (*ARGBUnattenuateRow)(const uint8_t* src_argb, uint8_t* dst_argb,
  2105. int width) = ARGBUnattenuateRow_C;
  2106. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  2107. return -1;
  2108. }
  2109. if (height < 0) {
  2110. height = -height;
  2111. src_argb = src_argb + (height - 1) * src_stride_argb;
  2112. src_stride_argb = -src_stride_argb;
  2113. }
  2114. // Coalesce rows.
  2115. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  2116. width *= height;
  2117. height = 1;
  2118. src_stride_argb = dst_stride_argb = 0;
  2119. }
  2120. #if defined(HAS_ARGBUNATTENUATEROW_SSE2)
  2121. if (TestCpuFlag(kCpuHasSSE2)) {
  2122. ARGBUnattenuateRow = ARGBUnattenuateRow_Any_SSE2;
  2123. if (IS_ALIGNED(width, 4)) {
  2124. ARGBUnattenuateRow = ARGBUnattenuateRow_SSE2;
  2125. }
  2126. }
  2127. #endif
  2128. #if defined(HAS_ARGBUNATTENUATEROW_AVX2)
  2129. if (TestCpuFlag(kCpuHasAVX2)) {
  2130. ARGBUnattenuateRow = ARGBUnattenuateRow_Any_AVX2;
  2131. if (IS_ALIGNED(width, 8)) {
  2132. ARGBUnattenuateRow = ARGBUnattenuateRow_AVX2;
  2133. }
  2134. }
  2135. #endif
  2136. // TODO(fbarchard): Neon version.
  2137. for (y = 0; y < height; ++y) {
  2138. ARGBUnattenuateRow(src_argb, dst_argb, width);
  2139. src_argb += src_stride_argb;
  2140. dst_argb += dst_stride_argb;
  2141. }
  2142. return 0;
  2143. }
  2144. // Convert ARGB to Grayed ARGB.
  2145. LIBYUV_API
  2146. int ARGBGrayTo(const uint8_t* src_argb,
  2147. int src_stride_argb,
  2148. uint8_t* dst_argb,
  2149. int dst_stride_argb,
  2150. int width,
  2151. int height) {
  2152. int y;
  2153. void (*ARGBGrayRow)(const uint8_t* src_argb, uint8_t* dst_argb, int width) =
  2154. ARGBGrayRow_C;
  2155. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  2156. return -1;
  2157. }
  2158. if (height < 0) {
  2159. height = -height;
  2160. src_argb = src_argb + (height - 1) * src_stride_argb;
  2161. src_stride_argb = -src_stride_argb;
  2162. }
  2163. // Coalesce rows.
  2164. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  2165. width *= height;
  2166. height = 1;
  2167. src_stride_argb = dst_stride_argb = 0;
  2168. }
  2169. #if defined(HAS_ARGBGRAYROW_SSSE3)
  2170. if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 8)) {
  2171. ARGBGrayRow = ARGBGrayRow_SSSE3;
  2172. }
  2173. #endif
  2174. #if defined(HAS_ARGBGRAYROW_NEON)
  2175. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
  2176. ARGBGrayRow = ARGBGrayRow_NEON;
  2177. }
  2178. #endif
  2179. #if defined(HAS_ARGBGRAYROW_MSA)
  2180. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 8)) {
  2181. ARGBGrayRow = ARGBGrayRow_MSA;
  2182. }
  2183. #endif
  2184. #if defined(HAS_ARGBGRAYROW_MMI)
  2185. if (TestCpuFlag(kCpuHasMMI) && IS_ALIGNED(width, 2)) {
  2186. ARGBGrayRow = ARGBGrayRow_MMI;
  2187. }
  2188. #endif
  2189. for (y = 0; y < height; ++y) {
  2190. ARGBGrayRow(src_argb, dst_argb, width);
  2191. src_argb += src_stride_argb;
  2192. dst_argb += dst_stride_argb;
  2193. }
  2194. return 0;
  2195. }
  2196. // Make a rectangle of ARGB gray scale.
  2197. LIBYUV_API
  2198. int ARGBGray(uint8_t* dst_argb,
  2199. int dst_stride_argb,
  2200. int dst_x,
  2201. int dst_y,
  2202. int width,
  2203. int height) {
  2204. int y;
  2205. void (*ARGBGrayRow)(const uint8_t* src_argb, uint8_t* dst_argb, int width) =
  2206. ARGBGrayRow_C;
  2207. uint8_t* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
  2208. if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0) {
  2209. return -1;
  2210. }
  2211. // Coalesce rows.
  2212. if (dst_stride_argb == width * 4) {
  2213. width *= height;
  2214. height = 1;
  2215. dst_stride_argb = 0;
  2216. }
  2217. #if defined(HAS_ARGBGRAYROW_SSSE3)
  2218. if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 8)) {
  2219. ARGBGrayRow = ARGBGrayRow_SSSE3;
  2220. }
  2221. #endif
  2222. #if defined(HAS_ARGBGRAYROW_NEON)
  2223. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
  2224. ARGBGrayRow = ARGBGrayRow_NEON;
  2225. }
  2226. #endif
  2227. #if defined(HAS_ARGBGRAYROW_MSA)
  2228. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 8)) {
  2229. ARGBGrayRow = ARGBGrayRow_MSA;
  2230. }
  2231. #endif
  2232. #if defined(HAS_ARGBGRAYROW_MMI)
  2233. if (TestCpuFlag(kCpuHasMMI) && IS_ALIGNED(width, 2)) {
  2234. ARGBGrayRow = ARGBGrayRow_MMI;
  2235. }
  2236. #endif
  2237. for (y = 0; y < height; ++y) {
  2238. ARGBGrayRow(dst, dst, width);
  2239. dst += dst_stride_argb;
  2240. }
  2241. return 0;
  2242. }
  2243. // Make a rectangle of ARGB Sepia tone.
  2244. LIBYUV_API
  2245. int ARGBSepia(uint8_t* dst_argb,
  2246. int dst_stride_argb,
  2247. int dst_x,
  2248. int dst_y,
  2249. int width,
  2250. int height) {
  2251. int y;
  2252. void (*ARGBSepiaRow)(uint8_t * dst_argb, int width) = ARGBSepiaRow_C;
  2253. uint8_t* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
  2254. if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0) {
  2255. return -1;
  2256. }
  2257. // Coalesce rows.
  2258. if (dst_stride_argb == width * 4) {
  2259. width *= height;
  2260. height = 1;
  2261. dst_stride_argb = 0;
  2262. }
  2263. #if defined(HAS_ARGBSEPIAROW_SSSE3)
  2264. if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 8)) {
  2265. ARGBSepiaRow = ARGBSepiaRow_SSSE3;
  2266. }
  2267. #endif
  2268. #if defined(HAS_ARGBSEPIAROW_NEON)
  2269. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
  2270. ARGBSepiaRow = ARGBSepiaRow_NEON;
  2271. }
  2272. #endif
  2273. #if defined(HAS_ARGBSEPIAROW_MSA)
  2274. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 8)) {
  2275. ARGBSepiaRow = ARGBSepiaRow_MSA;
  2276. }
  2277. #endif
  2278. #if defined(HAS_ARGBSEPIAROW_MMI)
  2279. if (TestCpuFlag(kCpuHasMMI) && IS_ALIGNED(width, 2)) {
  2280. ARGBSepiaRow = ARGBSepiaRow_MMI;
  2281. }
  2282. #endif
  2283. for (y = 0; y < height; ++y) {
  2284. ARGBSepiaRow(dst, width);
  2285. dst += dst_stride_argb;
  2286. }
  2287. return 0;
  2288. }
  2289. // Apply a 4x4 matrix to each ARGB pixel.
  2290. // Note: Normally for shading, but can be used to swizzle or invert.
  2291. LIBYUV_API
  2292. int ARGBColorMatrix(const uint8_t* src_argb,
  2293. int src_stride_argb,
  2294. uint8_t* dst_argb,
  2295. int dst_stride_argb,
  2296. const int8_t* matrix_argb,
  2297. int width,
  2298. int height) {
  2299. int y;
  2300. void (*ARGBColorMatrixRow)(const uint8_t* src_argb, uint8_t* dst_argb,
  2301. const int8_t* matrix_argb, int width) =
  2302. ARGBColorMatrixRow_C;
  2303. if (!src_argb || !dst_argb || !matrix_argb || width <= 0 || height == 0) {
  2304. return -1;
  2305. }
  2306. if (height < 0) {
  2307. height = -height;
  2308. src_argb = src_argb + (height - 1) * src_stride_argb;
  2309. src_stride_argb = -src_stride_argb;
  2310. }
  2311. // Coalesce rows.
  2312. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  2313. width *= height;
  2314. height = 1;
  2315. src_stride_argb = dst_stride_argb = 0;
  2316. }
  2317. #if defined(HAS_ARGBCOLORMATRIXROW_SSSE3)
  2318. if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 8)) {
  2319. ARGBColorMatrixRow = ARGBColorMatrixRow_SSSE3;
  2320. }
  2321. #endif
  2322. #if defined(HAS_ARGBCOLORMATRIXROW_NEON)
  2323. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
  2324. ARGBColorMatrixRow = ARGBColorMatrixRow_NEON;
  2325. }
  2326. #endif
  2327. #if defined(HAS_ARGBCOLORMATRIXROW_MSA)
  2328. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 8)) {
  2329. ARGBColorMatrixRow = ARGBColorMatrixRow_MSA;
  2330. }
  2331. #endif
  2332. #if defined(HAS_ARGBCOLORMATRIXROW_MMI)
  2333. if (TestCpuFlag(kCpuHasMMI) && IS_ALIGNED(width, 2)) {
  2334. ARGBColorMatrixRow = ARGBColorMatrixRow_MMI;
  2335. }
  2336. #endif
  2337. for (y = 0; y < height; ++y) {
  2338. ARGBColorMatrixRow(src_argb, dst_argb, matrix_argb, width);
  2339. src_argb += src_stride_argb;
  2340. dst_argb += dst_stride_argb;
  2341. }
  2342. return 0;
  2343. }
  2344. // Apply a 4x3 matrix to each ARGB pixel.
  2345. // Deprecated.
  2346. LIBYUV_API
  2347. int RGBColorMatrix(uint8_t* dst_argb,
  2348. int dst_stride_argb,
  2349. const int8_t* matrix_rgb,
  2350. int dst_x,
  2351. int dst_y,
  2352. int width,
  2353. int height) {
  2354. SIMD_ALIGNED(int8_t matrix_argb[16]);
  2355. uint8_t* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
  2356. if (!dst_argb || !matrix_rgb || width <= 0 || height <= 0 || dst_x < 0 ||
  2357. dst_y < 0) {
  2358. return -1;
  2359. }
  2360. // Convert 4x3 7 bit matrix to 4x4 6 bit matrix.
  2361. matrix_argb[0] = matrix_rgb[0] / 2;
  2362. matrix_argb[1] = matrix_rgb[1] / 2;
  2363. matrix_argb[2] = matrix_rgb[2] / 2;
  2364. matrix_argb[3] = matrix_rgb[3] / 2;
  2365. matrix_argb[4] = matrix_rgb[4] / 2;
  2366. matrix_argb[5] = matrix_rgb[5] / 2;
  2367. matrix_argb[6] = matrix_rgb[6] / 2;
  2368. matrix_argb[7] = matrix_rgb[7] / 2;
  2369. matrix_argb[8] = matrix_rgb[8] / 2;
  2370. matrix_argb[9] = matrix_rgb[9] / 2;
  2371. matrix_argb[10] = matrix_rgb[10] / 2;
  2372. matrix_argb[11] = matrix_rgb[11] / 2;
  2373. matrix_argb[14] = matrix_argb[13] = matrix_argb[12] = 0;
  2374. matrix_argb[15] = 64; // 1.0
  2375. return ARGBColorMatrix((const uint8_t*)(dst), dst_stride_argb, dst,
  2376. dst_stride_argb, &matrix_argb[0], width, height);
  2377. }
  2378. // Apply a color table each ARGB pixel.
  2379. // Table contains 256 ARGB values.
  2380. LIBYUV_API
  2381. int ARGBColorTable(uint8_t* dst_argb,
  2382. int dst_stride_argb,
  2383. const uint8_t* table_argb,
  2384. int dst_x,
  2385. int dst_y,
  2386. int width,
  2387. int height) {
  2388. int y;
  2389. void (*ARGBColorTableRow)(uint8_t * dst_argb, const uint8_t* table_argb,
  2390. int width) = ARGBColorTableRow_C;
  2391. uint8_t* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
  2392. if (!dst_argb || !table_argb || width <= 0 || height <= 0 || dst_x < 0 ||
  2393. dst_y < 0) {
  2394. return -1;
  2395. }
  2396. // Coalesce rows.
  2397. if (dst_stride_argb == width * 4) {
  2398. width *= height;
  2399. height = 1;
  2400. dst_stride_argb = 0;
  2401. }
  2402. #if defined(HAS_ARGBCOLORTABLEROW_X86)
  2403. if (TestCpuFlag(kCpuHasX86)) {
  2404. ARGBColorTableRow = ARGBColorTableRow_X86;
  2405. }
  2406. #endif
  2407. for (y = 0; y < height; ++y) {
  2408. ARGBColorTableRow(dst, table_argb, width);
  2409. dst += dst_stride_argb;
  2410. }
  2411. return 0;
  2412. }
  2413. // Apply a color table each ARGB pixel but preserve destination alpha.
  2414. // Table contains 256 ARGB values.
  2415. LIBYUV_API
  2416. int RGBColorTable(uint8_t* dst_argb,
  2417. int dst_stride_argb,
  2418. const uint8_t* table_argb,
  2419. int dst_x,
  2420. int dst_y,
  2421. int width,
  2422. int height) {
  2423. int y;
  2424. void (*RGBColorTableRow)(uint8_t * dst_argb, const uint8_t* table_argb,
  2425. int width) = RGBColorTableRow_C;
  2426. uint8_t* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
  2427. if (!dst_argb || !table_argb || width <= 0 || height <= 0 || dst_x < 0 ||
  2428. dst_y < 0) {
  2429. return -1;
  2430. }
  2431. // Coalesce rows.
  2432. if (dst_stride_argb == width * 4) {
  2433. width *= height;
  2434. height = 1;
  2435. dst_stride_argb = 0;
  2436. }
  2437. #if defined(HAS_RGBCOLORTABLEROW_X86)
  2438. if (TestCpuFlag(kCpuHasX86)) {
  2439. RGBColorTableRow = RGBColorTableRow_X86;
  2440. }
  2441. #endif
  2442. for (y = 0; y < height; ++y) {
  2443. RGBColorTableRow(dst, table_argb, width);
  2444. dst += dst_stride_argb;
  2445. }
  2446. return 0;
  2447. }
  2448. // ARGBQuantize is used to posterize art.
  2449. // e.g. rgb / qvalue * qvalue + qvalue / 2
  2450. // But the low levels implement efficiently with 3 parameters, and could be
  2451. // used for other high level operations.
  2452. // dst_argb[0] = (b * scale >> 16) * interval_size + interval_offset;
  2453. // where scale is 1 / interval_size as a fixed point value.
  2454. // The divide is replaces with a multiply by reciprocal fixed point multiply.
  2455. // Caveat - although SSE2 saturates, the C function does not and should be used
  2456. // with care if doing anything but quantization.
  2457. LIBYUV_API
  2458. int ARGBQuantize(uint8_t* dst_argb,
  2459. int dst_stride_argb,
  2460. int scale,
  2461. int interval_size,
  2462. int interval_offset,
  2463. int dst_x,
  2464. int dst_y,
  2465. int width,
  2466. int height) {
  2467. int y;
  2468. void (*ARGBQuantizeRow)(uint8_t * dst_argb, int scale, int interval_size,
  2469. int interval_offset, int width) = ARGBQuantizeRow_C;
  2470. uint8_t* dst = dst_argb + dst_y * dst_stride_argb + dst_x * 4;
  2471. if (!dst_argb || width <= 0 || height <= 0 || dst_x < 0 || dst_y < 0 ||
  2472. interval_size < 1 || interval_size > 255) {
  2473. return -1;
  2474. }
  2475. // Coalesce rows.
  2476. if (dst_stride_argb == width * 4) {
  2477. width *= height;
  2478. height = 1;
  2479. dst_stride_argb = 0;
  2480. }
  2481. #if defined(HAS_ARGBQUANTIZEROW_SSE2)
  2482. if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 4)) {
  2483. ARGBQuantizeRow = ARGBQuantizeRow_SSE2;
  2484. }
  2485. #endif
  2486. #if defined(HAS_ARGBQUANTIZEROW_NEON)
  2487. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
  2488. ARGBQuantizeRow = ARGBQuantizeRow_NEON;
  2489. }
  2490. #endif
  2491. #if defined(HAS_ARGBQUANTIZEROW_MSA)
  2492. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 8)) {
  2493. ARGBQuantizeRow = ARGBQuantizeRow_MSA;
  2494. }
  2495. #endif
  2496. for (y = 0; y < height; ++y) {
  2497. ARGBQuantizeRow(dst, scale, interval_size, interval_offset, width);
  2498. dst += dst_stride_argb;
  2499. }
  2500. return 0;
  2501. }
  2502. // Computes table of cumulative sum for image where the value is the sum
  2503. // of all values above and to the left of the entry. Used by ARGBBlur.
  2504. LIBYUV_API
  2505. int ARGBComputeCumulativeSum(const uint8_t* src_argb,
  2506. int src_stride_argb,
  2507. int32_t* dst_cumsum,
  2508. int dst_stride32_cumsum,
  2509. int width,
  2510. int height) {
  2511. int y;
  2512. void (*ComputeCumulativeSumRow)(const uint8_t* row, int32_t* cumsum,
  2513. const int32_t* previous_cumsum, int width) =
  2514. ComputeCumulativeSumRow_C;
  2515. int32_t* previous_cumsum = dst_cumsum;
  2516. if (!dst_cumsum || !src_argb || width <= 0 || height <= 0) {
  2517. return -1;
  2518. }
  2519. #if defined(HAS_CUMULATIVESUMTOAVERAGEROW_SSE2)
  2520. if (TestCpuFlag(kCpuHasSSE2)) {
  2521. ComputeCumulativeSumRow = ComputeCumulativeSumRow_SSE2;
  2522. }
  2523. #endif
  2524. #if defined(HAS_CUMULATIVESUMTOAVERAGEROW_MMI)
  2525. if (TestCpuFlag(kCpuHasMMI)) {
  2526. ComputeCumulativeSumRow = ComputeCumulativeSumRow_MMI;
  2527. }
  2528. #endif
  2529. memset(dst_cumsum, 0, width * sizeof(dst_cumsum[0]) * 4); // 4 int per pixel.
  2530. for (y = 0; y < height; ++y) {
  2531. ComputeCumulativeSumRow(src_argb, dst_cumsum, previous_cumsum, width);
  2532. previous_cumsum = dst_cumsum;
  2533. dst_cumsum += dst_stride32_cumsum;
  2534. src_argb += src_stride_argb;
  2535. }
  2536. return 0;
  2537. }
  2538. // Blur ARGB image.
  2539. // Caller should allocate CumulativeSum table of width * height * 16 bytes
  2540. // aligned to 16 byte boundary. height can be radius * 2 + 2 to save memory
  2541. // as the buffer is treated as circular.
  2542. LIBYUV_API
  2543. int ARGBBlur(const uint8_t* src_argb,
  2544. int src_stride_argb,
  2545. uint8_t* dst_argb,
  2546. int dst_stride_argb,
  2547. int32_t* dst_cumsum,
  2548. int dst_stride32_cumsum,
  2549. int width,
  2550. int height,
  2551. int radius) {
  2552. int y;
  2553. void (*ComputeCumulativeSumRow)(const uint8_t* row, int32_t* cumsum,
  2554. const int32_t* previous_cumsum, int width) =
  2555. ComputeCumulativeSumRow_C;
  2556. void (*CumulativeSumToAverageRow)(
  2557. const int32_t* topleft, const int32_t* botleft, int width, int area,
  2558. uint8_t* dst, int count) = CumulativeSumToAverageRow_C;
  2559. int32_t* cumsum_bot_row;
  2560. int32_t* max_cumsum_bot_row;
  2561. int32_t* cumsum_top_row;
  2562. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  2563. return -1;
  2564. }
  2565. if (height < 0) {
  2566. height = -height;
  2567. src_argb = src_argb + (height - 1) * src_stride_argb;
  2568. src_stride_argb = -src_stride_argb;
  2569. }
  2570. if (radius > height) {
  2571. radius = height;
  2572. }
  2573. if (radius > (width / 2 - 1)) {
  2574. radius = width / 2 - 1;
  2575. }
  2576. if (radius <= 0) {
  2577. return -1;
  2578. }
  2579. #if defined(HAS_CUMULATIVESUMTOAVERAGEROW_SSE2)
  2580. if (TestCpuFlag(kCpuHasSSE2)) {
  2581. ComputeCumulativeSumRow = ComputeCumulativeSumRow_SSE2;
  2582. CumulativeSumToAverageRow = CumulativeSumToAverageRow_SSE2;
  2583. }
  2584. #endif
  2585. #if defined(HAS_CUMULATIVESUMTOAVERAGEROW_MMI)
  2586. if (TestCpuFlag(kCpuHasMMI)) {
  2587. ComputeCumulativeSumRow = ComputeCumulativeSumRow_MMI;
  2588. }
  2589. #endif
  2590. // Compute enough CumulativeSum for first row to be blurred. After this
  2591. // one row of CumulativeSum is updated at a time.
  2592. ARGBComputeCumulativeSum(src_argb, src_stride_argb, dst_cumsum,
  2593. dst_stride32_cumsum, width, radius);
  2594. src_argb = src_argb + radius * src_stride_argb;
  2595. cumsum_bot_row = &dst_cumsum[(radius - 1) * dst_stride32_cumsum];
  2596. max_cumsum_bot_row = &dst_cumsum[(radius * 2 + 2) * dst_stride32_cumsum];
  2597. cumsum_top_row = &dst_cumsum[0];
  2598. for (y = 0; y < height; ++y) {
  2599. int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0;
  2600. int bot_y = ((y + radius) < height) ? (y + radius) : (height - 1);
  2601. int area = radius * (bot_y - top_y);
  2602. int boxwidth = radius * 4;
  2603. int x;
  2604. int n;
  2605. // Increment cumsum_top_row pointer with circular buffer wrap around.
  2606. if (top_y) {
  2607. cumsum_top_row += dst_stride32_cumsum;
  2608. if (cumsum_top_row >= max_cumsum_bot_row) {
  2609. cumsum_top_row = dst_cumsum;
  2610. }
  2611. }
  2612. // Increment cumsum_bot_row pointer with circular buffer wrap around and
  2613. // then fill in a row of CumulativeSum.
  2614. if ((y + radius) < height) {
  2615. const int32_t* prev_cumsum_bot_row = cumsum_bot_row;
  2616. cumsum_bot_row += dst_stride32_cumsum;
  2617. if (cumsum_bot_row >= max_cumsum_bot_row) {
  2618. cumsum_bot_row = dst_cumsum;
  2619. }
  2620. ComputeCumulativeSumRow(src_argb, cumsum_bot_row, prev_cumsum_bot_row,
  2621. width);
  2622. src_argb += src_stride_argb;
  2623. }
  2624. // Left clipped.
  2625. for (x = 0; x < radius + 1; ++x) {
  2626. CumulativeSumToAverageRow(cumsum_top_row, cumsum_bot_row, boxwidth, area,
  2627. &dst_argb[x * 4], 1);
  2628. area += (bot_y - top_y);
  2629. boxwidth += 4;
  2630. }
  2631. // Middle unclipped.
  2632. n = (width - 1) - radius - x + 1;
  2633. CumulativeSumToAverageRow(cumsum_top_row, cumsum_bot_row, boxwidth, area,
  2634. &dst_argb[x * 4], n);
  2635. // Right clipped.
  2636. for (x += n; x <= width - 1; ++x) {
  2637. area -= (bot_y - top_y);
  2638. boxwidth -= 4;
  2639. CumulativeSumToAverageRow(cumsum_top_row + (x - radius - 1) * 4,
  2640. cumsum_bot_row + (x - radius - 1) * 4, boxwidth,
  2641. area, &dst_argb[x * 4], 1);
  2642. }
  2643. dst_argb += dst_stride_argb;
  2644. }
  2645. return 0;
  2646. }
  2647. // Multiply ARGB image by a specified ARGB value.
  2648. LIBYUV_API
  2649. int ARGBShade(const uint8_t* src_argb,
  2650. int src_stride_argb,
  2651. uint8_t* dst_argb,
  2652. int dst_stride_argb,
  2653. int width,
  2654. int height,
  2655. uint32_t value) {
  2656. int y;
  2657. void (*ARGBShadeRow)(const uint8_t* src_argb, uint8_t* dst_argb, int width,
  2658. uint32_t value) = ARGBShadeRow_C;
  2659. if (!src_argb || !dst_argb || width <= 0 || height == 0 || value == 0u) {
  2660. return -1;
  2661. }
  2662. if (height < 0) {
  2663. height = -height;
  2664. src_argb = src_argb + (height - 1) * src_stride_argb;
  2665. src_stride_argb = -src_stride_argb;
  2666. }
  2667. // Coalesce rows.
  2668. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  2669. width *= height;
  2670. height = 1;
  2671. src_stride_argb = dst_stride_argb = 0;
  2672. }
  2673. #if defined(HAS_ARGBSHADEROW_SSE2)
  2674. if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 4)) {
  2675. ARGBShadeRow = ARGBShadeRow_SSE2;
  2676. }
  2677. #endif
  2678. #if defined(HAS_ARGBSHADEROW_NEON)
  2679. if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
  2680. ARGBShadeRow = ARGBShadeRow_NEON;
  2681. }
  2682. #endif
  2683. #if defined(HAS_ARGBSHADEROW_MSA)
  2684. if (TestCpuFlag(kCpuHasMSA) && IS_ALIGNED(width, 4)) {
  2685. ARGBShadeRow = ARGBShadeRow_MSA;
  2686. }
  2687. #endif
  2688. #if defined(HAS_ARGBSHADEROW_MMI)
  2689. if (TestCpuFlag(kCpuHasMMI) && IS_ALIGNED(width, 2)) {
  2690. ARGBShadeRow = ARGBShadeRow_MMI;
  2691. }
  2692. #endif
  2693. for (y = 0; y < height; ++y) {
  2694. ARGBShadeRow(src_argb, dst_argb, width, value);
  2695. src_argb += src_stride_argb;
  2696. dst_argb += dst_stride_argb;
  2697. }
  2698. return 0;
  2699. }
  2700. // Interpolate 2 planes by specified amount (0 to 255).
  2701. LIBYUV_API
  2702. int InterpolatePlane(const uint8_t* src0,
  2703. int src_stride0,
  2704. const uint8_t* src1,
  2705. int src_stride1,
  2706. uint8_t* dst,
  2707. int dst_stride,
  2708. int width,
  2709. int height,
  2710. int interpolation) {
  2711. int y;
  2712. void (*InterpolateRow)(uint8_t * dst_ptr, const uint8_t* src_ptr,
  2713. ptrdiff_t src_stride, int dst_width,
  2714. int source_y_fraction) = InterpolateRow_C;
  2715. if (!src0 || !src1 || !dst || width <= 0 || height == 0) {
  2716. return -1;
  2717. }
  2718. // Negative height means invert the image.
  2719. if (height < 0) {
  2720. height = -height;
  2721. dst = dst + (height - 1) * dst_stride;
  2722. dst_stride = -dst_stride;
  2723. }
  2724. // Coalesce rows.
  2725. if (src_stride0 == width && src_stride1 == width && dst_stride == width) {
  2726. width *= height;
  2727. height = 1;
  2728. src_stride0 = src_stride1 = dst_stride = 0;
  2729. }
  2730. #if defined(HAS_INTERPOLATEROW_SSSE3)
  2731. if (TestCpuFlag(kCpuHasSSSE3)) {
  2732. InterpolateRow = InterpolateRow_Any_SSSE3;
  2733. if (IS_ALIGNED(width, 16)) {
  2734. InterpolateRow = InterpolateRow_SSSE3;
  2735. }
  2736. }
  2737. #endif
  2738. #if defined(HAS_INTERPOLATEROW_AVX2)
  2739. if (TestCpuFlag(kCpuHasAVX2)) {
  2740. InterpolateRow = InterpolateRow_Any_AVX2;
  2741. if (IS_ALIGNED(width, 32)) {
  2742. InterpolateRow = InterpolateRow_AVX2;
  2743. }
  2744. }
  2745. #endif
  2746. #if defined(HAS_INTERPOLATEROW_NEON)
  2747. if (TestCpuFlag(kCpuHasNEON)) {
  2748. InterpolateRow = InterpolateRow_Any_NEON;
  2749. if (IS_ALIGNED(width, 16)) {
  2750. InterpolateRow = InterpolateRow_NEON;
  2751. }
  2752. }
  2753. #endif
  2754. #if defined(HAS_INTERPOLATEROW_MSA)
  2755. if (TestCpuFlag(kCpuHasMSA)) {
  2756. InterpolateRow = InterpolateRow_Any_MSA;
  2757. if (IS_ALIGNED(width, 32)) {
  2758. InterpolateRow = InterpolateRow_MSA;
  2759. }
  2760. }
  2761. #endif
  2762. #if defined(HAS_INTERPOLATEROW_MMI)
  2763. if (TestCpuFlag(kCpuHasMMI)) {
  2764. InterpolateRow = InterpolateRow_Any_MMI;
  2765. if (IS_ALIGNED(width, 8)) {
  2766. InterpolateRow = InterpolateRow_MMI;
  2767. }
  2768. }
  2769. #endif
  2770. for (y = 0; y < height; ++y) {
  2771. InterpolateRow(dst, src0, src1 - src0, width, interpolation);
  2772. src0 += src_stride0;
  2773. src1 += src_stride1;
  2774. dst += dst_stride;
  2775. }
  2776. return 0;
  2777. }
  2778. // Interpolate 2 ARGB images by specified amount (0 to 255).
  2779. LIBYUV_API
  2780. int ARGBInterpolate(const uint8_t* src_argb0,
  2781. int src_stride_argb0,
  2782. const uint8_t* src_argb1,
  2783. int src_stride_argb1,
  2784. uint8_t* dst_argb,
  2785. int dst_stride_argb,
  2786. int width,
  2787. int height,
  2788. int interpolation) {
  2789. return InterpolatePlane(src_argb0, src_stride_argb0, src_argb1,
  2790. src_stride_argb1, dst_argb, dst_stride_argb,
  2791. width * 4, height, interpolation);
  2792. }
  2793. // Interpolate 2 YUV images by specified amount (0 to 255).
  2794. LIBYUV_API
  2795. int I420Interpolate(const uint8_t* src0_y,
  2796. int src0_stride_y,
  2797. const uint8_t* src0_u,
  2798. int src0_stride_u,
  2799. const uint8_t* src0_v,
  2800. int src0_stride_v,
  2801. const uint8_t* src1_y,
  2802. int src1_stride_y,
  2803. const uint8_t* src1_u,
  2804. int src1_stride_u,
  2805. const uint8_t* src1_v,
  2806. int src1_stride_v,
  2807. uint8_t* dst_y,
  2808. int dst_stride_y,
  2809. uint8_t* dst_u,
  2810. int dst_stride_u,
  2811. uint8_t* dst_v,
  2812. int dst_stride_v,
  2813. int width,
  2814. int height,
  2815. int interpolation) {
  2816. int halfwidth = (width + 1) >> 1;
  2817. int halfheight = (height + 1) >> 1;
  2818. if (!src0_y || !src0_u || !src0_v || !src1_y || !src1_u || !src1_v ||
  2819. !dst_y || !dst_u || !dst_v || width <= 0 || height == 0) {
  2820. return -1;
  2821. }
  2822. InterpolatePlane(src0_y, src0_stride_y, src1_y, src1_stride_y, dst_y,
  2823. dst_stride_y, width, height, interpolation);
  2824. InterpolatePlane(src0_u, src0_stride_u, src1_u, src1_stride_u, dst_u,
  2825. dst_stride_u, halfwidth, halfheight, interpolation);
  2826. InterpolatePlane(src0_v, src0_stride_v, src1_v, src1_stride_v, dst_v,
  2827. dst_stride_v, halfwidth, halfheight, interpolation);
  2828. return 0;
  2829. }
  2830. // Shuffle ARGB channel order. e.g. BGRA to ARGB.
  2831. LIBYUV_API
  2832. int ARGBShuffle(const uint8_t* src_bgra,
  2833. int src_stride_bgra,
  2834. uint8_t* dst_argb,
  2835. int dst_stride_argb,
  2836. const uint8_t* shuffler,
  2837. int width,
  2838. int height) {
  2839. int y;
  2840. void (*ARGBShuffleRow)(const uint8_t* src_bgra, uint8_t* dst_argb,
  2841. const uint8_t* shuffler, int width) = ARGBShuffleRow_C;
  2842. if (!src_bgra || !dst_argb || width <= 0 || height == 0) {
  2843. return -1;
  2844. }
  2845. // Negative height means invert the image.
  2846. if (height < 0) {
  2847. height = -height;
  2848. src_bgra = src_bgra + (height - 1) * src_stride_bgra;
  2849. src_stride_bgra = -src_stride_bgra;
  2850. }
  2851. // Coalesce rows.
  2852. if (src_stride_bgra == width * 4 && dst_stride_argb == width * 4) {
  2853. width *= height;
  2854. height = 1;
  2855. src_stride_bgra = dst_stride_argb = 0;
  2856. }
  2857. #if defined(HAS_ARGBSHUFFLEROW_SSSE3)
  2858. if (TestCpuFlag(kCpuHasSSSE3)) {
  2859. ARGBShuffleRow = ARGBShuffleRow_Any_SSSE3;
  2860. if (IS_ALIGNED(width, 8)) {
  2861. ARGBShuffleRow = ARGBShuffleRow_SSSE3;
  2862. }
  2863. }
  2864. #endif
  2865. #if defined(HAS_ARGBSHUFFLEROW_AVX2)
  2866. if (TestCpuFlag(kCpuHasAVX2)) {
  2867. ARGBShuffleRow = ARGBShuffleRow_Any_AVX2;
  2868. if (IS_ALIGNED(width, 16)) {
  2869. ARGBShuffleRow = ARGBShuffleRow_AVX2;
  2870. }
  2871. }
  2872. #endif
  2873. #if defined(HAS_ARGBSHUFFLEROW_NEON)
  2874. if (TestCpuFlag(kCpuHasNEON)) {
  2875. ARGBShuffleRow = ARGBShuffleRow_Any_NEON;
  2876. if (IS_ALIGNED(width, 4)) {
  2877. ARGBShuffleRow = ARGBShuffleRow_NEON;
  2878. }
  2879. }
  2880. #endif
  2881. #if defined(HAS_ARGBSHUFFLEROW_MSA)
  2882. if (TestCpuFlag(kCpuHasMSA)) {
  2883. ARGBShuffleRow = ARGBShuffleRow_Any_MSA;
  2884. if (IS_ALIGNED(width, 8)) {
  2885. ARGBShuffleRow = ARGBShuffleRow_MSA;
  2886. }
  2887. }
  2888. #endif
  2889. #if defined(HAS_ARGBSHUFFLEROW_MMI)
  2890. if (TestCpuFlag(kCpuHasMMI)) {
  2891. ARGBShuffleRow = ARGBShuffleRow_Any_MMI;
  2892. if (IS_ALIGNED(width, 2)) {
  2893. ARGBShuffleRow = ARGBShuffleRow_MMI;
  2894. }
  2895. }
  2896. #endif
  2897. for (y = 0; y < height; ++y) {
  2898. ARGBShuffleRow(src_bgra, dst_argb, shuffler, width);
  2899. src_bgra += src_stride_bgra;
  2900. dst_argb += dst_stride_argb;
  2901. }
  2902. return 0;
  2903. }
  2904. // Sobel ARGB effect.
  2905. static int ARGBSobelize(const uint8_t* src_argb,
  2906. int src_stride_argb,
  2907. uint8_t* dst_argb,
  2908. int dst_stride_argb,
  2909. int width,
  2910. int height,
  2911. void (*SobelRow)(const uint8_t* src_sobelx,
  2912. const uint8_t* src_sobely,
  2913. uint8_t* dst,
  2914. int width)) {
  2915. int y;
  2916. void (*ARGBToYJRow)(const uint8_t* src_argb, uint8_t* dst_g, int width) =
  2917. ARGBToYJRow_C;
  2918. void (*SobelYRow)(const uint8_t* src_y0, const uint8_t* src_y1,
  2919. uint8_t* dst_sobely, int width) = SobelYRow_C;
  2920. void (*SobelXRow)(const uint8_t* src_y0, const uint8_t* src_y1,
  2921. const uint8_t* src_y2, uint8_t* dst_sobely, int width) =
  2922. SobelXRow_C;
  2923. const int kEdge = 16; // Extra pixels at start of row for extrude/align.
  2924. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  2925. return -1;
  2926. }
  2927. // Negative height means invert the image.
  2928. if (height < 0) {
  2929. height = -height;
  2930. src_argb = src_argb + (height - 1) * src_stride_argb;
  2931. src_stride_argb = -src_stride_argb;
  2932. }
  2933. #if defined(HAS_ARGBTOYJROW_SSSE3)
  2934. if (TestCpuFlag(kCpuHasSSSE3)) {
  2935. ARGBToYJRow = ARGBToYJRow_Any_SSSE3;
  2936. if (IS_ALIGNED(width, 16)) {
  2937. ARGBToYJRow = ARGBToYJRow_SSSE3;
  2938. }
  2939. }
  2940. #endif
  2941. #if defined(HAS_ARGBTOYJROW_AVX2)
  2942. if (TestCpuFlag(kCpuHasAVX2)) {
  2943. ARGBToYJRow = ARGBToYJRow_Any_AVX2;
  2944. if (IS_ALIGNED(width, 32)) {
  2945. ARGBToYJRow = ARGBToYJRow_AVX2;
  2946. }
  2947. }
  2948. #endif
  2949. #if defined(HAS_ARGBTOYJROW_NEON)
  2950. if (TestCpuFlag(kCpuHasNEON)) {
  2951. ARGBToYJRow = ARGBToYJRow_Any_NEON;
  2952. if (IS_ALIGNED(width, 8)) {
  2953. ARGBToYJRow = ARGBToYJRow_NEON;
  2954. }
  2955. }
  2956. #endif
  2957. #if defined(HAS_ARGBTOYJROW_MSA)
  2958. if (TestCpuFlag(kCpuHasMSA)) {
  2959. ARGBToYJRow = ARGBToYJRow_Any_MSA;
  2960. if (IS_ALIGNED(width, 16)) {
  2961. ARGBToYJRow = ARGBToYJRow_MSA;
  2962. }
  2963. }
  2964. #endif
  2965. #if defined(HAS_ARGBTOYJROW_MMI)
  2966. if (TestCpuFlag(kCpuHasMMI)) {
  2967. ARGBToYJRow = ARGBToYJRow_Any_MMI;
  2968. if (IS_ALIGNED(width, 8)) {
  2969. ARGBToYJRow = ARGBToYJRow_MMI;
  2970. }
  2971. }
  2972. #endif
  2973. #if defined(HAS_SOBELYROW_SSE2)
  2974. if (TestCpuFlag(kCpuHasSSE2)) {
  2975. SobelYRow = SobelYRow_SSE2;
  2976. }
  2977. #endif
  2978. #if defined(HAS_SOBELYROW_NEON)
  2979. if (TestCpuFlag(kCpuHasNEON)) {
  2980. SobelYRow = SobelYRow_NEON;
  2981. }
  2982. #endif
  2983. #if defined(HAS_SOBELYROW_MSA)
  2984. if (TestCpuFlag(kCpuHasMSA)) {
  2985. SobelYRow = SobelYRow_MSA;
  2986. }
  2987. #endif
  2988. #if defined(HAS_SOBELYROW_MMI)
  2989. if (TestCpuFlag(kCpuHasMMI)) {
  2990. SobelYRow = SobelYRow_MMI;
  2991. }
  2992. #endif
  2993. #if defined(HAS_SOBELXROW_SSE2)
  2994. if (TestCpuFlag(kCpuHasSSE2)) {
  2995. SobelXRow = SobelXRow_SSE2;
  2996. }
  2997. #endif
  2998. #if defined(HAS_SOBELXROW_NEON)
  2999. if (TestCpuFlag(kCpuHasNEON)) {
  3000. SobelXRow = SobelXRow_NEON;
  3001. }
  3002. #endif
  3003. #if defined(HAS_SOBELXROW_MSA)
  3004. if (TestCpuFlag(kCpuHasMSA)) {
  3005. SobelXRow = SobelXRow_MSA;
  3006. }
  3007. #endif
  3008. #if defined(HAS_SOBELXROW_MMI)
  3009. if (TestCpuFlag(kCpuHasMMI)) {
  3010. SobelXRow = SobelXRow_MMI;
  3011. }
  3012. #endif
  3013. {
  3014. // 3 rows with edges before/after.
  3015. const int kRowSize = (width + kEdge + 31) & ~31;
  3016. align_buffer_64(rows, kRowSize * 2 + (kEdge + kRowSize * 3 + kEdge));
  3017. uint8_t* row_sobelx = rows;
  3018. uint8_t* row_sobely = rows + kRowSize;
  3019. uint8_t* row_y = rows + kRowSize * 2;
  3020. // Convert first row.
  3021. uint8_t* row_y0 = row_y + kEdge;
  3022. uint8_t* row_y1 = row_y0 + kRowSize;
  3023. uint8_t* row_y2 = row_y1 + kRowSize;
  3024. ARGBToYJRow(src_argb, row_y0, width);
  3025. row_y0[-1] = row_y0[0];
  3026. memset(row_y0 + width, row_y0[width - 1], 16); // Extrude 16 for valgrind.
  3027. ARGBToYJRow(src_argb, row_y1, width);
  3028. row_y1[-1] = row_y1[0];
  3029. memset(row_y1 + width, row_y1[width - 1], 16);
  3030. memset(row_y2 + width, 0, 16);
  3031. for (y = 0; y < height; ++y) {
  3032. // Convert next row of ARGB to G.
  3033. if (y < (height - 1)) {
  3034. src_argb += src_stride_argb;
  3035. }
  3036. ARGBToYJRow(src_argb, row_y2, width);
  3037. row_y2[-1] = row_y2[0];
  3038. row_y2[width] = row_y2[width - 1];
  3039. SobelXRow(row_y0 - 1, row_y1 - 1, row_y2 - 1, row_sobelx, width);
  3040. SobelYRow(row_y0 - 1, row_y2 - 1, row_sobely, width);
  3041. SobelRow(row_sobelx, row_sobely, dst_argb, width);
  3042. // Cycle thru circular queue of 3 row_y buffers.
  3043. {
  3044. uint8_t* row_yt = row_y0;
  3045. row_y0 = row_y1;
  3046. row_y1 = row_y2;
  3047. row_y2 = row_yt;
  3048. }
  3049. dst_argb += dst_stride_argb;
  3050. }
  3051. free_aligned_buffer_64(rows);
  3052. }
  3053. return 0;
  3054. }
  3055. // Sobel ARGB effect.
  3056. LIBYUV_API
  3057. int ARGBSobel(const uint8_t* src_argb,
  3058. int src_stride_argb,
  3059. uint8_t* dst_argb,
  3060. int dst_stride_argb,
  3061. int width,
  3062. int height) {
  3063. void (*SobelRow)(const uint8_t* src_sobelx, const uint8_t* src_sobely,
  3064. uint8_t* dst_argb, int width) = SobelRow_C;
  3065. #if defined(HAS_SOBELROW_SSE2)
  3066. if (TestCpuFlag(kCpuHasSSE2)) {
  3067. SobelRow = SobelRow_Any_SSE2;
  3068. if (IS_ALIGNED(width, 16)) {
  3069. SobelRow = SobelRow_SSE2;
  3070. }
  3071. }
  3072. #endif
  3073. #if defined(HAS_SOBELROW_NEON)
  3074. if (TestCpuFlag(kCpuHasNEON)) {
  3075. SobelRow = SobelRow_Any_NEON;
  3076. if (IS_ALIGNED(width, 8)) {
  3077. SobelRow = SobelRow_NEON;
  3078. }
  3079. }
  3080. #endif
  3081. #if defined(HAS_SOBELROW_MSA)
  3082. if (TestCpuFlag(kCpuHasMSA)) {
  3083. SobelRow = SobelRow_Any_MSA;
  3084. if (IS_ALIGNED(width, 16)) {
  3085. SobelRow = SobelRow_MSA;
  3086. }
  3087. }
  3088. #endif
  3089. #if defined(HAS_SOBELROW_MMI)
  3090. if (TestCpuFlag(kCpuHasMMI)) {
  3091. SobelRow = SobelRow_Any_MMI;
  3092. if (IS_ALIGNED(width, 8)) {
  3093. SobelRow = SobelRow_MMI;
  3094. }
  3095. }
  3096. #endif
  3097. return ARGBSobelize(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
  3098. width, height, SobelRow);
  3099. }
  3100. // Sobel ARGB effect with planar output.
  3101. LIBYUV_API
  3102. int ARGBSobelToPlane(const uint8_t* src_argb,
  3103. int src_stride_argb,
  3104. uint8_t* dst_y,
  3105. int dst_stride_y,
  3106. int width,
  3107. int height) {
  3108. void (*SobelToPlaneRow)(const uint8_t* src_sobelx, const uint8_t* src_sobely,
  3109. uint8_t* dst_, int width) = SobelToPlaneRow_C;
  3110. #if defined(HAS_SOBELTOPLANEROW_SSE2)
  3111. if (TestCpuFlag(kCpuHasSSE2)) {
  3112. SobelToPlaneRow = SobelToPlaneRow_Any_SSE2;
  3113. if (IS_ALIGNED(width, 16)) {
  3114. SobelToPlaneRow = SobelToPlaneRow_SSE2;
  3115. }
  3116. }
  3117. #endif
  3118. #if defined(HAS_SOBELTOPLANEROW_NEON)
  3119. if (TestCpuFlag(kCpuHasNEON)) {
  3120. SobelToPlaneRow = SobelToPlaneRow_Any_NEON;
  3121. if (IS_ALIGNED(width, 16)) {
  3122. SobelToPlaneRow = SobelToPlaneRow_NEON;
  3123. }
  3124. }
  3125. #endif
  3126. #if defined(HAS_SOBELTOPLANEROW_MSA)
  3127. if (TestCpuFlag(kCpuHasMSA)) {
  3128. SobelToPlaneRow = SobelToPlaneRow_Any_MSA;
  3129. if (IS_ALIGNED(width, 32)) {
  3130. SobelToPlaneRow = SobelToPlaneRow_MSA;
  3131. }
  3132. }
  3133. #endif
  3134. #if defined(HAS_SOBELTOPLANEROW_MMI)
  3135. if (TestCpuFlag(kCpuHasMMI)) {
  3136. SobelToPlaneRow = SobelToPlaneRow_Any_MMI;
  3137. if (IS_ALIGNED(width, 8)) {
  3138. SobelToPlaneRow = SobelToPlaneRow_MMI;
  3139. }
  3140. }
  3141. #endif
  3142. return ARGBSobelize(src_argb, src_stride_argb, dst_y, dst_stride_y, width,
  3143. height, SobelToPlaneRow);
  3144. }
  3145. // SobelXY ARGB effect.
  3146. // Similar to Sobel, but also stores Sobel X in R and Sobel Y in B. G = Sobel.
  3147. LIBYUV_API
  3148. int ARGBSobelXY(const uint8_t* src_argb,
  3149. int src_stride_argb,
  3150. uint8_t* dst_argb,
  3151. int dst_stride_argb,
  3152. int width,
  3153. int height) {
  3154. void (*SobelXYRow)(const uint8_t* src_sobelx, const uint8_t* src_sobely,
  3155. uint8_t* dst_argb, int width) = SobelXYRow_C;
  3156. #if defined(HAS_SOBELXYROW_SSE2)
  3157. if (TestCpuFlag(kCpuHasSSE2)) {
  3158. SobelXYRow = SobelXYRow_Any_SSE2;
  3159. if (IS_ALIGNED(width, 16)) {
  3160. SobelXYRow = SobelXYRow_SSE2;
  3161. }
  3162. }
  3163. #endif
  3164. #if defined(HAS_SOBELXYROW_NEON)
  3165. if (TestCpuFlag(kCpuHasNEON)) {
  3166. SobelXYRow = SobelXYRow_Any_NEON;
  3167. if (IS_ALIGNED(width, 8)) {
  3168. SobelXYRow = SobelXYRow_NEON;
  3169. }
  3170. }
  3171. #endif
  3172. #if defined(HAS_SOBELXYROW_MSA)
  3173. if (TestCpuFlag(kCpuHasMSA)) {
  3174. SobelXYRow = SobelXYRow_Any_MSA;
  3175. if (IS_ALIGNED(width, 16)) {
  3176. SobelXYRow = SobelXYRow_MSA;
  3177. }
  3178. }
  3179. #endif
  3180. #if defined(HAS_SOBELXYROW_MMI)
  3181. if (TestCpuFlag(kCpuHasMMI)) {
  3182. SobelXYRow = SobelXYRow_Any_MMI;
  3183. if (IS_ALIGNED(width, 8)) {
  3184. SobelXYRow = SobelXYRow_MMI;
  3185. }
  3186. }
  3187. #endif
  3188. return ARGBSobelize(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
  3189. width, height, SobelXYRow);
  3190. }
  3191. // Apply a 4x4 polynomial to each ARGB pixel.
  3192. LIBYUV_API
  3193. int ARGBPolynomial(const uint8_t* src_argb,
  3194. int src_stride_argb,
  3195. uint8_t* dst_argb,
  3196. int dst_stride_argb,
  3197. const float* poly,
  3198. int width,
  3199. int height) {
  3200. int y;
  3201. void (*ARGBPolynomialRow)(const uint8_t* src_argb, uint8_t* dst_argb,
  3202. const float* poly, int width) = ARGBPolynomialRow_C;
  3203. if (!src_argb || !dst_argb || !poly || width <= 0 || height == 0) {
  3204. return -1;
  3205. }
  3206. // Negative height means invert the image.
  3207. if (height < 0) {
  3208. height = -height;
  3209. src_argb = src_argb + (height - 1) * src_stride_argb;
  3210. src_stride_argb = -src_stride_argb;
  3211. }
  3212. // Coalesce rows.
  3213. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  3214. width *= height;
  3215. height = 1;
  3216. src_stride_argb = dst_stride_argb = 0;
  3217. }
  3218. #if defined(HAS_ARGBPOLYNOMIALROW_SSE2)
  3219. if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(width, 2)) {
  3220. ARGBPolynomialRow = ARGBPolynomialRow_SSE2;
  3221. }
  3222. #endif
  3223. #if defined(HAS_ARGBPOLYNOMIALROW_AVX2)
  3224. if (TestCpuFlag(kCpuHasAVX2) && TestCpuFlag(kCpuHasFMA3) &&
  3225. IS_ALIGNED(width, 2)) {
  3226. ARGBPolynomialRow = ARGBPolynomialRow_AVX2;
  3227. }
  3228. #endif
  3229. for (y = 0; y < height; ++y) {
  3230. ARGBPolynomialRow(src_argb, dst_argb, poly, width);
  3231. src_argb += src_stride_argb;
  3232. dst_argb += dst_stride_argb;
  3233. }
  3234. return 0;
  3235. }
  3236. // Convert plane of 16 bit shorts to half floats.
  3237. // Source values are multiplied by scale before storing as half float.
  3238. LIBYUV_API
  3239. int HalfFloatPlane(const uint16_t* src_y,
  3240. int src_stride_y,
  3241. uint16_t* dst_y,
  3242. int dst_stride_y,
  3243. float scale,
  3244. int width,
  3245. int height) {
  3246. int y;
  3247. void (*HalfFloatRow)(const uint16_t* src, uint16_t* dst, float scale,
  3248. int width) = HalfFloatRow_C;
  3249. if (!src_y || !dst_y || width <= 0 || height == 0) {
  3250. return -1;
  3251. }
  3252. src_stride_y >>= 1;
  3253. dst_stride_y >>= 1;
  3254. // Negative height means invert the image.
  3255. if (height < 0) {
  3256. height = -height;
  3257. src_y = src_y + (height - 1) * src_stride_y;
  3258. src_stride_y = -src_stride_y;
  3259. }
  3260. // Coalesce rows.
  3261. if (src_stride_y == width && dst_stride_y == width) {
  3262. width *= height;
  3263. height = 1;
  3264. src_stride_y = dst_stride_y = 0;
  3265. }
  3266. #if defined(HAS_HALFFLOATROW_SSE2)
  3267. if (TestCpuFlag(kCpuHasSSE2)) {
  3268. HalfFloatRow = HalfFloatRow_Any_SSE2;
  3269. if (IS_ALIGNED(width, 8)) {
  3270. HalfFloatRow = HalfFloatRow_SSE2;
  3271. }
  3272. }
  3273. #endif
  3274. #if defined(HAS_HALFFLOATROW_AVX2)
  3275. if (TestCpuFlag(kCpuHasAVX2)) {
  3276. HalfFloatRow = HalfFloatRow_Any_AVX2;
  3277. if (IS_ALIGNED(width, 16)) {
  3278. HalfFloatRow = HalfFloatRow_AVX2;
  3279. }
  3280. }
  3281. #endif
  3282. #if defined(HAS_HALFFLOATROW_F16C)
  3283. if (TestCpuFlag(kCpuHasAVX2) && TestCpuFlag(kCpuHasF16C)) {
  3284. HalfFloatRow =
  3285. (scale == 1.0f) ? HalfFloat1Row_Any_F16C : HalfFloatRow_Any_F16C;
  3286. if (IS_ALIGNED(width, 16)) {
  3287. HalfFloatRow = (scale == 1.0f) ? HalfFloat1Row_F16C : HalfFloatRow_F16C;
  3288. }
  3289. }
  3290. #endif
  3291. #if defined(HAS_HALFFLOATROW_NEON)
  3292. if (TestCpuFlag(kCpuHasNEON)) {
  3293. HalfFloatRow =
  3294. (scale == 1.0f) ? HalfFloat1Row_Any_NEON : HalfFloatRow_Any_NEON;
  3295. if (IS_ALIGNED(width, 8)) {
  3296. HalfFloatRow = (scale == 1.0f) ? HalfFloat1Row_NEON : HalfFloatRow_NEON;
  3297. }
  3298. }
  3299. #endif
  3300. #if defined(HAS_HALFFLOATROW_MSA)
  3301. if (TestCpuFlag(kCpuHasMSA)) {
  3302. HalfFloatRow = HalfFloatRow_Any_MSA;
  3303. if (IS_ALIGNED(width, 32)) {
  3304. HalfFloatRow = HalfFloatRow_MSA;
  3305. }
  3306. }
  3307. #endif
  3308. for (y = 0; y < height; ++y) {
  3309. HalfFloatRow(src_y, dst_y, scale, width);
  3310. src_y += src_stride_y;
  3311. dst_y += dst_stride_y;
  3312. }
  3313. return 0;
  3314. }
  3315. // Convert a buffer of bytes to floats, scale the values and store as floats.
  3316. LIBYUV_API
  3317. int ByteToFloat(const uint8_t* src_y, float* dst_y, float scale, int width) {
  3318. void (*ByteToFloatRow)(const uint8_t* src, float* dst, float scale,
  3319. int width) = ByteToFloatRow_C;
  3320. if (!src_y || !dst_y || width <= 0) {
  3321. return -1;
  3322. }
  3323. #if defined(HAS_BYTETOFLOATROW_NEON)
  3324. if (TestCpuFlag(kCpuHasNEON)) {
  3325. ByteToFloatRow = ByteToFloatRow_Any_NEON;
  3326. if (IS_ALIGNED(width, 8)) {
  3327. ByteToFloatRow = ByteToFloatRow_NEON;
  3328. }
  3329. }
  3330. #endif
  3331. ByteToFloatRow(src_y, dst_y, scale, width);
  3332. return 0;
  3333. }
  3334. // Apply a lumacolortable to each ARGB pixel.
  3335. LIBYUV_API
  3336. int ARGBLumaColorTable(const uint8_t* src_argb,
  3337. int src_stride_argb,
  3338. uint8_t* dst_argb,
  3339. int dst_stride_argb,
  3340. const uint8_t* luma,
  3341. int width,
  3342. int height) {
  3343. int y;
  3344. void (*ARGBLumaColorTableRow)(
  3345. const uint8_t* src_argb, uint8_t* dst_argb, int width,
  3346. const uint8_t* luma, const uint32_t lumacoeff) = ARGBLumaColorTableRow_C;
  3347. if (!src_argb || !dst_argb || !luma || width <= 0 || height == 0) {
  3348. return -1;
  3349. }
  3350. // Negative height means invert the image.
  3351. if (height < 0) {
  3352. height = -height;
  3353. src_argb = src_argb + (height - 1) * src_stride_argb;
  3354. src_stride_argb = -src_stride_argb;
  3355. }
  3356. // Coalesce rows.
  3357. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  3358. width *= height;
  3359. height = 1;
  3360. src_stride_argb = dst_stride_argb = 0;
  3361. }
  3362. #if defined(HAS_ARGBLUMACOLORTABLEROW_SSSE3)
  3363. if (TestCpuFlag(kCpuHasSSSE3) && IS_ALIGNED(width, 4)) {
  3364. ARGBLumaColorTableRow = ARGBLumaColorTableRow_SSSE3;
  3365. }
  3366. #endif
  3367. for (y = 0; y < height; ++y) {
  3368. ARGBLumaColorTableRow(src_argb, dst_argb, width, luma, 0x00264b0f);
  3369. src_argb += src_stride_argb;
  3370. dst_argb += dst_stride_argb;
  3371. }
  3372. return 0;
  3373. }
  3374. // Copy Alpha from one ARGB image to another.
  3375. LIBYUV_API
  3376. int ARGBCopyAlpha(const uint8_t* src_argb,
  3377. int src_stride_argb,
  3378. uint8_t* dst_argb,
  3379. int dst_stride_argb,
  3380. int width,
  3381. int height) {
  3382. int y;
  3383. void (*ARGBCopyAlphaRow)(const uint8_t* src_argb, uint8_t* dst_argb,
  3384. int width) = ARGBCopyAlphaRow_C;
  3385. if (!src_argb || !dst_argb || width <= 0 || height == 0) {
  3386. return -1;
  3387. }
  3388. // Negative height means invert the image.
  3389. if (height < 0) {
  3390. height = -height;
  3391. src_argb = src_argb + (height - 1) * src_stride_argb;
  3392. src_stride_argb = -src_stride_argb;
  3393. }
  3394. // Coalesce rows.
  3395. if (src_stride_argb == width * 4 && dst_stride_argb == width * 4) {
  3396. width *= height;
  3397. height = 1;
  3398. src_stride_argb = dst_stride_argb = 0;
  3399. }
  3400. #if defined(HAS_ARGBCOPYALPHAROW_SSE2)
  3401. if (TestCpuFlag(kCpuHasSSE2)) {
  3402. ARGBCopyAlphaRow = ARGBCopyAlphaRow_Any_SSE2;
  3403. if (IS_ALIGNED(width, 8)) {
  3404. ARGBCopyAlphaRow = ARGBCopyAlphaRow_SSE2;
  3405. }
  3406. }
  3407. #endif
  3408. #if defined(HAS_ARGBCOPYALPHAROW_AVX2)
  3409. if (TestCpuFlag(kCpuHasAVX2)) {
  3410. ARGBCopyAlphaRow = ARGBCopyAlphaRow_Any_AVX2;
  3411. if (IS_ALIGNED(width, 16)) {
  3412. ARGBCopyAlphaRow = ARGBCopyAlphaRow_AVX2;
  3413. }
  3414. }
  3415. #endif
  3416. #if defined(HAS_ARGBCOPYALPHAROW_MMI)
  3417. if (TestCpuFlag(kCpuHasMMI)) {
  3418. ARGBCopyAlphaRow = ARGBCopyAlphaRow_Any_MMI;
  3419. if (IS_ALIGNED(width, 2)) {
  3420. ARGBCopyAlphaRow = ARGBCopyAlphaRow_MMI;
  3421. }
  3422. }
  3423. #endif
  3424. for (y = 0; y < height; ++y) {
  3425. ARGBCopyAlphaRow(src_argb, dst_argb, width);
  3426. src_argb += src_stride_argb;
  3427. dst_argb += dst_stride_argb;
  3428. }
  3429. return 0;
  3430. }
  3431. // Extract just the alpha channel from ARGB.
  3432. LIBYUV_API
  3433. int ARGBExtractAlpha(const uint8_t* src_argb,
  3434. int src_stride_argb,
  3435. uint8_t* dst_a,
  3436. int dst_stride_a,
  3437. int width,
  3438. int height) {
  3439. if (!src_argb || !dst_a || width <= 0 || height == 0) {
  3440. return -1;
  3441. }
  3442. // Negative height means invert the image.
  3443. if (height < 0) {
  3444. height = -height;
  3445. src_argb += (height - 1) * src_stride_argb;
  3446. src_stride_argb = -src_stride_argb;
  3447. }
  3448. // Coalesce rows.
  3449. if (src_stride_argb == width * 4 && dst_stride_a == width) {
  3450. width *= height;
  3451. height = 1;
  3452. src_stride_argb = dst_stride_a = 0;
  3453. }
  3454. void (*ARGBExtractAlphaRow)(const uint8_t* src_argb, uint8_t* dst_a,
  3455. int width) = ARGBExtractAlphaRow_C;
  3456. #if defined(HAS_ARGBEXTRACTALPHAROW_SSE2)
  3457. if (TestCpuFlag(kCpuHasSSE2)) {
  3458. ARGBExtractAlphaRow = IS_ALIGNED(width, 8) ? ARGBExtractAlphaRow_SSE2
  3459. : ARGBExtractAlphaRow_Any_SSE2;
  3460. }
  3461. #endif
  3462. #if defined(HAS_ARGBEXTRACTALPHAROW_AVX2)
  3463. if (TestCpuFlag(kCpuHasAVX2)) {
  3464. ARGBExtractAlphaRow = IS_ALIGNED(width, 32) ? ARGBExtractAlphaRow_AVX2
  3465. : ARGBExtractAlphaRow_Any_AVX2;
  3466. }
  3467. #endif
  3468. #if defined(HAS_ARGBEXTRACTALPHAROW_NEON)
  3469. if (TestCpuFlag(kCpuHasNEON)) {
  3470. ARGBExtractAlphaRow = IS_ALIGNED(width, 16) ? ARGBExtractAlphaRow_NEON
  3471. : ARGBExtractAlphaRow_Any_NEON;
  3472. }
  3473. #endif
  3474. #if defined(HAS_ARGBEXTRACTALPHAROW_MSA)
  3475. if (TestCpuFlag(kCpuHasMSA)) {
  3476. ARGBExtractAlphaRow = IS_ALIGNED(width, 16) ? ARGBExtractAlphaRow_MSA
  3477. : ARGBExtractAlphaRow_Any_MSA;
  3478. }
  3479. #endif
  3480. #if defined(HAS_ARGBEXTRACTALPHAROW_MMI)
  3481. if (TestCpuFlag(kCpuHasMMI)) {
  3482. ARGBExtractAlphaRow = IS_ALIGNED(width, 8) ? ARGBExtractAlphaRow_MMI
  3483. : ARGBExtractAlphaRow_Any_MMI;
  3484. }
  3485. #endif
  3486. for (int y = 0; y < height; ++y) {
  3487. ARGBExtractAlphaRow(src_argb, dst_a, width);
  3488. src_argb += src_stride_argb;
  3489. dst_a += dst_stride_a;
  3490. }
  3491. return 0;
  3492. }
  3493. // Copy a planar Y channel to the alpha channel of a destination ARGB image.
  3494. LIBYUV_API
  3495. int ARGBCopyYToAlpha(const uint8_t* src_y,
  3496. int src_stride_y,
  3497. uint8_t* dst_argb,
  3498. int dst_stride_argb,
  3499. int width,
  3500. int height) {
  3501. int y;
  3502. void (*ARGBCopyYToAlphaRow)(const uint8_t* src_y, uint8_t* dst_argb,
  3503. int width) = ARGBCopyYToAlphaRow_C;
  3504. if (!src_y || !dst_argb || width <= 0 || height == 0) {
  3505. return -1;
  3506. }
  3507. // Negative height means invert the image.
  3508. if (height < 0) {
  3509. height = -height;
  3510. src_y = src_y + (height - 1) * src_stride_y;
  3511. src_stride_y = -src_stride_y;
  3512. }
  3513. // Coalesce rows.
  3514. if (src_stride_y == width && dst_stride_argb == width * 4) {
  3515. width *= height;
  3516. height = 1;
  3517. src_stride_y = dst_stride_argb = 0;
  3518. }
  3519. #if defined(HAS_ARGBCOPYYTOALPHAROW_SSE2)
  3520. if (TestCpuFlag(kCpuHasSSE2)) {
  3521. ARGBCopyYToAlphaRow = ARGBCopyYToAlphaRow_Any_SSE2;
  3522. if (IS_ALIGNED(width, 8)) {
  3523. ARGBCopyYToAlphaRow = ARGBCopyYToAlphaRow_SSE2;
  3524. }
  3525. }
  3526. #endif
  3527. #if defined(HAS_ARGBCOPYYTOALPHAROW_AVX2)
  3528. if (TestCpuFlag(kCpuHasAVX2)) {
  3529. ARGBCopyYToAlphaRow = ARGBCopyYToAlphaRow_Any_AVX2;
  3530. if (IS_ALIGNED(width, 16)) {
  3531. ARGBCopyYToAlphaRow = ARGBCopyYToAlphaRow_AVX2;
  3532. }
  3533. }
  3534. #endif
  3535. #if defined(HAS_ARGBCOPYYTOALPHAROW_MMI)
  3536. if (TestCpuFlag(kCpuHasMMI)) {
  3537. ARGBCopyYToAlphaRow = ARGBCopyYToAlphaRow_Any_MMI;
  3538. if (IS_ALIGNED(width, 8)) {
  3539. ARGBCopyYToAlphaRow = ARGBCopyYToAlphaRow_MMI;
  3540. }
  3541. }
  3542. #endif
  3543. for (y = 0; y < height; ++y) {
  3544. ARGBCopyYToAlphaRow(src_y, dst_argb, width);
  3545. src_y += src_stride_y;
  3546. dst_argb += dst_stride_argb;
  3547. }
  3548. return 0;
  3549. }
  3550. // TODO(fbarchard): Consider if width is even Y channel can be split
  3551. // directly. A SplitUVRow_Odd function could copy the remaining chroma.
  3552. LIBYUV_API
  3553. int YUY2ToNV12(const uint8_t* src_yuy2,
  3554. int src_stride_yuy2,
  3555. uint8_t* dst_y,
  3556. int dst_stride_y,
  3557. uint8_t* dst_uv,
  3558. int dst_stride_uv,
  3559. int width,
  3560. int height) {
  3561. int y;
  3562. int halfwidth = (width + 1) >> 1;
  3563. void (*SplitUVRow)(const uint8_t* src_uv, uint8_t* dst_u, uint8_t* dst_v,
  3564. int width) = SplitUVRow_C;
  3565. void (*InterpolateRow)(uint8_t * dst_ptr, const uint8_t* src_ptr,
  3566. ptrdiff_t src_stride, int dst_width,
  3567. int source_y_fraction) = InterpolateRow_C;
  3568. if (!src_yuy2 || !dst_y || !dst_uv || width <= 0 || height == 0) {
  3569. return -1;
  3570. }
  3571. // Negative height means invert the image.
  3572. if (height < 0) {
  3573. height = -height;
  3574. src_yuy2 = src_yuy2 + (height - 1) * src_stride_yuy2;
  3575. src_stride_yuy2 = -src_stride_yuy2;
  3576. }
  3577. #if defined(HAS_SPLITUVROW_SSE2)
  3578. if (TestCpuFlag(kCpuHasSSE2)) {
  3579. SplitUVRow = SplitUVRow_Any_SSE2;
  3580. if (IS_ALIGNED(width, 16)) {
  3581. SplitUVRow = SplitUVRow_SSE2;
  3582. }
  3583. }
  3584. #endif
  3585. #if defined(HAS_SPLITUVROW_AVX2)
  3586. if (TestCpuFlag(kCpuHasAVX2)) {
  3587. SplitUVRow = SplitUVRow_Any_AVX2;
  3588. if (IS_ALIGNED(width, 32)) {
  3589. SplitUVRow = SplitUVRow_AVX2;
  3590. }
  3591. }
  3592. #endif
  3593. #if defined(HAS_SPLITUVROW_NEON)
  3594. if (TestCpuFlag(kCpuHasNEON)) {
  3595. SplitUVRow = SplitUVRow_Any_NEON;
  3596. if (IS_ALIGNED(width, 16)) {
  3597. SplitUVRow = SplitUVRow_NEON;
  3598. }
  3599. }
  3600. #endif
  3601. #if defined(HAS_SPLITUVROW_MSA)
  3602. if (TestCpuFlag(kCpuHasMSA)) {
  3603. SplitUVRow = SplitUVRow_Any_MSA;
  3604. if (IS_ALIGNED(width, 32)) {
  3605. SplitUVRow = SplitUVRow_MSA;
  3606. }
  3607. }
  3608. #endif
  3609. #if defined(HAS_SPLITUVROW_MMI)
  3610. if (TestCpuFlag(kCpuHasMMI)) {
  3611. SplitUVRow = SplitUVRow_Any_MMI;
  3612. if (IS_ALIGNED(width, 8)) {
  3613. SplitUVRow = SplitUVRow_MMI;
  3614. }
  3615. }
  3616. #endif
  3617. #if defined(HAS_INTERPOLATEROW_SSSE3)
  3618. if (TestCpuFlag(kCpuHasSSSE3)) {
  3619. InterpolateRow = InterpolateRow_Any_SSSE3;
  3620. if (IS_ALIGNED(width, 16)) {
  3621. InterpolateRow = InterpolateRow_SSSE3;
  3622. }
  3623. }
  3624. #endif
  3625. #if defined(HAS_INTERPOLATEROW_AVX2)
  3626. if (TestCpuFlag(kCpuHasAVX2)) {
  3627. InterpolateRow = InterpolateRow_Any_AVX2;
  3628. if (IS_ALIGNED(width, 32)) {
  3629. InterpolateRow = InterpolateRow_AVX2;
  3630. }
  3631. }
  3632. #endif
  3633. #if defined(HAS_INTERPOLATEROW_NEON)
  3634. if (TestCpuFlag(kCpuHasNEON)) {
  3635. InterpolateRow = InterpolateRow_Any_NEON;
  3636. if (IS_ALIGNED(width, 16)) {
  3637. InterpolateRow = InterpolateRow_NEON;
  3638. }
  3639. }
  3640. #endif
  3641. #if defined(HAS_INTERPOLATEROW_MSA)
  3642. if (TestCpuFlag(kCpuHasMSA)) {
  3643. InterpolateRow = InterpolateRow_Any_MSA;
  3644. if (IS_ALIGNED(width, 32)) {
  3645. InterpolateRow = InterpolateRow_MSA;
  3646. }
  3647. }
  3648. #endif
  3649. #if defined(HAS_INTERPOLATEROW_MMI)
  3650. if (TestCpuFlag(kCpuHasMMI)) {
  3651. InterpolateRow = InterpolateRow_Any_MMI;
  3652. if (IS_ALIGNED(width, 8)) {
  3653. InterpolateRow = InterpolateRow_MMI;
  3654. }
  3655. }
  3656. #endif
  3657. {
  3658. int awidth = halfwidth * 2;
  3659. // row of y and 2 rows of uv
  3660. align_buffer_64(rows, awidth * 3);
  3661. for (y = 0; y < height - 1; y += 2) {
  3662. // Split Y from UV.
  3663. SplitUVRow(src_yuy2, rows, rows + awidth, awidth);
  3664. memcpy(dst_y, rows, width);
  3665. SplitUVRow(src_yuy2 + src_stride_yuy2, rows, rows + awidth * 2, awidth);
  3666. memcpy(dst_y + dst_stride_y, rows, width);
  3667. InterpolateRow(dst_uv, rows + awidth, awidth, awidth, 128);
  3668. src_yuy2 += src_stride_yuy2 * 2;
  3669. dst_y += dst_stride_y * 2;
  3670. dst_uv += dst_stride_uv;
  3671. }
  3672. if (height & 1) {
  3673. // Split Y from UV.
  3674. SplitUVRow(src_yuy2, rows, dst_uv, awidth);
  3675. memcpy(dst_y, rows, width);
  3676. }
  3677. free_aligned_buffer_64(rows);
  3678. }
  3679. return 0;
  3680. }
  3681. LIBYUV_API
  3682. int UYVYToNV12(const uint8_t* src_uyvy,
  3683. int src_stride_uyvy,
  3684. uint8_t* dst_y,
  3685. int dst_stride_y,
  3686. uint8_t* dst_uv,
  3687. int dst_stride_uv,
  3688. int width,
  3689. int height) {
  3690. int y;
  3691. int halfwidth = (width + 1) >> 1;
  3692. void (*SplitUVRow)(const uint8_t* src_uv, uint8_t* dst_u, uint8_t* dst_v,
  3693. int width) = SplitUVRow_C;
  3694. void (*InterpolateRow)(uint8_t * dst_ptr, const uint8_t* src_ptr,
  3695. ptrdiff_t src_stride, int dst_width,
  3696. int source_y_fraction) = InterpolateRow_C;
  3697. if (!src_uyvy || !dst_y || !dst_uv || width <= 0 || height == 0) {
  3698. return -1;
  3699. }
  3700. // Negative height means invert the image.
  3701. if (height < 0) {
  3702. height = -height;
  3703. src_uyvy = src_uyvy + (height - 1) * src_stride_uyvy;
  3704. src_stride_uyvy = -src_stride_uyvy;
  3705. }
  3706. #if defined(HAS_SPLITUVROW_SSE2)
  3707. if (TestCpuFlag(kCpuHasSSE2)) {
  3708. SplitUVRow = SplitUVRow_Any_SSE2;
  3709. if (IS_ALIGNED(width, 16)) {
  3710. SplitUVRow = SplitUVRow_SSE2;
  3711. }
  3712. }
  3713. #endif
  3714. #if defined(HAS_SPLITUVROW_AVX2)
  3715. if (TestCpuFlag(kCpuHasAVX2)) {
  3716. SplitUVRow = SplitUVRow_Any_AVX2;
  3717. if (IS_ALIGNED(width, 32)) {
  3718. SplitUVRow = SplitUVRow_AVX2;
  3719. }
  3720. }
  3721. #endif
  3722. #if defined(HAS_SPLITUVROW_NEON)
  3723. if (TestCpuFlag(kCpuHasNEON)) {
  3724. SplitUVRow = SplitUVRow_Any_NEON;
  3725. if (IS_ALIGNED(width, 16)) {
  3726. SplitUVRow = SplitUVRow_NEON;
  3727. }
  3728. }
  3729. #endif
  3730. #if defined(HAS_SPLITUVROW_MSA)
  3731. if (TestCpuFlag(kCpuHasMSA)) {
  3732. SplitUVRow = SplitUVRow_Any_MSA;
  3733. if (IS_ALIGNED(width, 32)) {
  3734. SplitUVRow = SplitUVRow_MSA;
  3735. }
  3736. }
  3737. #endif
  3738. #if defined(HAS_SPLITUVROW_MMI)
  3739. if (TestCpuFlag(kCpuHasMMI)) {
  3740. SplitUVRow = SplitUVRow_Any_MMI;
  3741. if (IS_ALIGNED(width, 8)) {
  3742. SplitUVRow = SplitUVRow_MMI;
  3743. }
  3744. }
  3745. #endif
  3746. #if defined(HAS_INTERPOLATEROW_SSSE3)
  3747. if (TestCpuFlag(kCpuHasSSSE3)) {
  3748. InterpolateRow = InterpolateRow_Any_SSSE3;
  3749. if (IS_ALIGNED(width, 16)) {
  3750. InterpolateRow = InterpolateRow_SSSE3;
  3751. }
  3752. }
  3753. #endif
  3754. #if defined(HAS_INTERPOLATEROW_AVX2)
  3755. if (TestCpuFlag(kCpuHasAVX2)) {
  3756. InterpolateRow = InterpolateRow_Any_AVX2;
  3757. if (IS_ALIGNED(width, 32)) {
  3758. InterpolateRow = InterpolateRow_AVX2;
  3759. }
  3760. }
  3761. #endif
  3762. #if defined(HAS_INTERPOLATEROW_NEON)
  3763. if (TestCpuFlag(kCpuHasNEON)) {
  3764. InterpolateRow = InterpolateRow_Any_NEON;
  3765. if (IS_ALIGNED(width, 16)) {
  3766. InterpolateRow = InterpolateRow_NEON;
  3767. }
  3768. }
  3769. #endif
  3770. #if defined(HAS_INTERPOLATEROW_MSA)
  3771. if (TestCpuFlag(kCpuHasMSA)) {
  3772. InterpolateRow = InterpolateRow_Any_MSA;
  3773. if (IS_ALIGNED(width, 32)) {
  3774. InterpolateRow = InterpolateRow_MSA;
  3775. }
  3776. }
  3777. #endif
  3778. #if defined(HAS_INTERPOLATEROW_MMI)
  3779. if (TestCpuFlag(kCpuHasMMI)) {
  3780. InterpolateRow = InterpolateRow_Any_MMI;
  3781. if (IS_ALIGNED(width, 8)) {
  3782. InterpolateRow = InterpolateRow_MMI;
  3783. }
  3784. }
  3785. #endif
  3786. {
  3787. int awidth = halfwidth * 2;
  3788. // row of y and 2 rows of uv
  3789. align_buffer_64(rows, awidth * 3);
  3790. for (y = 0; y < height - 1; y += 2) {
  3791. // Split Y from UV.
  3792. SplitUVRow(src_uyvy, rows + awidth, rows, awidth);
  3793. memcpy(dst_y, rows, width);
  3794. SplitUVRow(src_uyvy + src_stride_uyvy, rows + awidth * 2, rows, awidth);
  3795. memcpy(dst_y + dst_stride_y, rows, width);
  3796. InterpolateRow(dst_uv, rows + awidth, awidth, awidth, 128);
  3797. src_uyvy += src_stride_uyvy * 2;
  3798. dst_y += dst_stride_y * 2;
  3799. dst_uv += dst_stride_uv;
  3800. }
  3801. if (height & 1) {
  3802. // Split Y from UV.
  3803. SplitUVRow(src_uyvy, dst_uv, rows, awidth);
  3804. memcpy(dst_y, rows, width);
  3805. }
  3806. free_aligned_buffer_64(rows);
  3807. }
  3808. return 0;
  3809. }
  3810. #ifdef __cplusplus
  3811. } // extern "C"
  3812. } // namespace libyuv
  3813. #endif