convert_from.cc 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  1. /*
  2. * Copyright 2012 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/convert_from.h"
  11. #include "libyuv/basic_types.h"
  12. #include "libyuv/convert.h" // For I420Copy
  13. #include "libyuv/cpu_id.h"
  14. #include "libyuv/planar_functions.h"
  15. #include "libyuv/rotate.h"
  16. #include "libyuv/row.h"
  17. #include "libyuv/scale.h" // For ScalePlane()
  18. #include "libyuv/video_common.h"
  19. #ifdef __cplusplus
  20. namespace libyuv {
  21. extern "C" {
  22. #endif
  23. #define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s)
  24. static __inline int Abs(int v) {
  25. return v >= 0 ? v : -v;
  26. }
  27. // I420 To any I4xx YUV format with mirroring.
  28. static int I420ToI4xx(const uint8* src_y,
  29. int src_stride_y,
  30. const uint8* src_u,
  31. int src_stride_u,
  32. const uint8* src_v,
  33. int src_stride_v,
  34. uint8* dst_y,
  35. int dst_stride_y,
  36. uint8* dst_u,
  37. int dst_stride_u,
  38. uint8* dst_v,
  39. int dst_stride_v,
  40. int src_y_width,
  41. int src_y_height,
  42. int dst_uv_width,
  43. int dst_uv_height) {
  44. const int dst_y_width = Abs(src_y_width);
  45. const int dst_y_height = Abs(src_y_height);
  46. const int src_uv_width = SUBSAMPLE(src_y_width, 1, 1);
  47. const int src_uv_height = SUBSAMPLE(src_y_height, 1, 1);
  48. if (src_y_width == 0 || src_y_height == 0 || dst_uv_width <= 0 ||
  49. dst_uv_height <= 0) {
  50. return -1;
  51. }
  52. if (dst_y) {
  53. ScalePlane(src_y, src_stride_y, src_y_width, src_y_height, dst_y,
  54. dst_stride_y, dst_y_width, dst_y_height, kFilterBilinear);
  55. }
  56. ScalePlane(src_u, src_stride_u, src_uv_width, src_uv_height, dst_u,
  57. dst_stride_u, dst_uv_width, dst_uv_height, kFilterBilinear);
  58. ScalePlane(src_v, src_stride_v, src_uv_width, src_uv_height, dst_v,
  59. dst_stride_v, dst_uv_width, dst_uv_height, kFilterBilinear);
  60. return 0;
  61. }
  62. // 420 chroma is 1/2 width, 1/2 height
  63. // 422 chroma is 1/2 width, 1x height
  64. LIBYUV_API
  65. int I420ToI422(const uint8* src_y,
  66. int src_stride_y,
  67. const uint8* src_u,
  68. int src_stride_u,
  69. const uint8* src_v,
  70. int src_stride_v,
  71. uint8* dst_y,
  72. int dst_stride_y,
  73. uint8* dst_u,
  74. int dst_stride_u,
  75. uint8* dst_v,
  76. int dst_stride_v,
  77. int width,
  78. int height) {
  79. const int dst_uv_width = (Abs(width) + 1) >> 1;
  80. const int dst_uv_height = Abs(height);
  81. return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v,
  82. src_stride_v, dst_y, dst_stride_y, dst_u, dst_stride_u,
  83. dst_v, dst_stride_v, width, height, dst_uv_width,
  84. dst_uv_height);
  85. }
  86. // 420 chroma is 1/2 width, 1/2 height
  87. // 444 chroma is 1x width, 1x height
  88. LIBYUV_API
  89. int I420ToI444(const uint8* src_y,
  90. int src_stride_y,
  91. const uint8* src_u,
  92. int src_stride_u,
  93. const uint8* src_v,
  94. int src_stride_v,
  95. uint8* dst_y,
  96. int dst_stride_y,
  97. uint8* dst_u,
  98. int dst_stride_u,
  99. uint8* dst_v,
  100. int dst_stride_v,
  101. int width,
  102. int height) {
  103. const int dst_uv_width = Abs(width);
  104. const int dst_uv_height = Abs(height);
  105. return I420ToI4xx(src_y, src_stride_y, src_u, src_stride_u, src_v,
  106. src_stride_v, dst_y, dst_stride_y, dst_u, dst_stride_u,
  107. dst_v, dst_stride_v, width, height, dst_uv_width,
  108. dst_uv_height);
  109. }
  110. // Copy to I400. Source can be I420,422,444,400,NV12,NV21
  111. LIBYUV_API
  112. int I400Copy(const uint8* src_y,
  113. int src_stride_y,
  114. uint8* dst_y,
  115. int dst_stride_y,
  116. int width,
  117. int height) {
  118. if (!src_y || !dst_y || width <= 0 || height == 0) {
  119. return -1;
  120. }
  121. // Negative height means invert the image.
  122. if (height < 0) {
  123. height = -height;
  124. src_y = src_y + (height - 1) * src_stride_y;
  125. src_stride_y = -src_stride_y;
  126. }
  127. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  128. return 0;
  129. }
  130. LIBYUV_API
  131. int I422ToYUY2(const uint8* src_y,
  132. int src_stride_y,
  133. const uint8* src_u,
  134. int src_stride_u,
  135. const uint8* src_v,
  136. int src_stride_v,
  137. uint8* dst_yuy2,
  138. int dst_stride_yuy2,
  139. int width,
  140. int height) {
  141. int y;
  142. void (*I422ToYUY2Row)(const uint8* src_y, const uint8* src_u,
  143. const uint8* src_v, uint8* dst_yuy2, int width) =
  144. I422ToYUY2Row_C;
  145. if (!src_y || !src_u || !src_v || !dst_yuy2 || width <= 0 || height == 0) {
  146. return -1;
  147. }
  148. // Negative height means invert the image.
  149. if (height < 0) {
  150. height = -height;
  151. dst_yuy2 = dst_yuy2 + (height - 1) * dst_stride_yuy2;
  152. dst_stride_yuy2 = -dst_stride_yuy2;
  153. }
  154. // Coalesce rows.
  155. if (src_stride_y == width && src_stride_u * 2 == width &&
  156. src_stride_v * 2 == width && dst_stride_yuy2 == width * 2) {
  157. width *= height;
  158. height = 1;
  159. src_stride_y = src_stride_u = src_stride_v = dst_stride_yuy2 = 0;
  160. }
  161. #if defined(HAS_I422TOYUY2ROW_SSE2)
  162. if (TestCpuFlag(kCpuHasSSE2)) {
  163. I422ToYUY2Row = I422ToYUY2Row_Any_SSE2;
  164. if (IS_ALIGNED(width, 16)) {
  165. I422ToYUY2Row = I422ToYUY2Row_SSE2;
  166. }
  167. }
  168. #endif
  169. #if defined(HAS_I422TOYUY2ROW_NEON)
  170. if (TestCpuFlag(kCpuHasNEON)) {
  171. I422ToYUY2Row = I422ToYUY2Row_Any_NEON;
  172. if (IS_ALIGNED(width, 16)) {
  173. I422ToYUY2Row = I422ToYUY2Row_NEON;
  174. }
  175. }
  176. #endif
  177. for (y = 0; y < height; ++y) {
  178. I422ToYUY2Row(src_y, src_u, src_v, dst_yuy2, width);
  179. src_y += src_stride_y;
  180. src_u += src_stride_u;
  181. src_v += src_stride_v;
  182. dst_yuy2 += dst_stride_yuy2;
  183. }
  184. return 0;
  185. }
  186. LIBYUV_API
  187. int I420ToYUY2(const uint8* src_y,
  188. int src_stride_y,
  189. const uint8* src_u,
  190. int src_stride_u,
  191. const uint8* src_v,
  192. int src_stride_v,
  193. uint8* dst_yuy2,
  194. int dst_stride_yuy2,
  195. int width,
  196. int height) {
  197. int y;
  198. void (*I422ToYUY2Row)(const uint8* src_y, const uint8* src_u,
  199. const uint8* src_v, uint8* dst_yuy2, int width) =
  200. I422ToYUY2Row_C;
  201. if (!src_y || !src_u || !src_v || !dst_yuy2 || width <= 0 || height == 0) {
  202. return -1;
  203. }
  204. // Negative height means invert the image.
  205. if (height < 0) {
  206. height = -height;
  207. dst_yuy2 = dst_yuy2 + (height - 1) * dst_stride_yuy2;
  208. dst_stride_yuy2 = -dst_stride_yuy2;
  209. }
  210. #if defined(HAS_I422TOYUY2ROW_SSE2)
  211. if (TestCpuFlag(kCpuHasSSE2)) {
  212. I422ToYUY2Row = I422ToYUY2Row_Any_SSE2;
  213. if (IS_ALIGNED(width, 16)) {
  214. I422ToYUY2Row = I422ToYUY2Row_SSE2;
  215. }
  216. }
  217. #endif
  218. #if defined(HAS_I422TOYUY2ROW_NEON)
  219. if (TestCpuFlag(kCpuHasNEON)) {
  220. I422ToYUY2Row = I422ToYUY2Row_Any_NEON;
  221. if (IS_ALIGNED(width, 16)) {
  222. I422ToYUY2Row = I422ToYUY2Row_NEON;
  223. }
  224. }
  225. #endif
  226. #if defined(HAS_I422TOYUY2ROW_MSA)
  227. if (TestCpuFlag(kCpuHasMSA)) {
  228. I422ToYUY2Row = I422ToYUY2Row_Any_MSA;
  229. if (IS_ALIGNED(width, 32)) {
  230. I422ToYUY2Row = I422ToYUY2Row_MSA;
  231. }
  232. }
  233. #endif
  234. for (y = 0; y < height - 1; y += 2) {
  235. I422ToYUY2Row(src_y, src_u, src_v, dst_yuy2, width);
  236. I422ToYUY2Row(src_y + src_stride_y, src_u, src_v,
  237. dst_yuy2 + dst_stride_yuy2, width);
  238. src_y += src_stride_y * 2;
  239. src_u += src_stride_u;
  240. src_v += src_stride_v;
  241. dst_yuy2 += dst_stride_yuy2 * 2;
  242. }
  243. if (height & 1) {
  244. I422ToYUY2Row(src_y, src_u, src_v, dst_yuy2, width);
  245. }
  246. return 0;
  247. }
  248. LIBYUV_API
  249. int I422ToUYVY(const uint8* src_y,
  250. int src_stride_y,
  251. const uint8* src_u,
  252. int src_stride_u,
  253. const uint8* src_v,
  254. int src_stride_v,
  255. uint8* dst_uyvy,
  256. int dst_stride_uyvy,
  257. int width,
  258. int height) {
  259. int y;
  260. void (*I422ToUYVYRow)(const uint8* src_y, const uint8* src_u,
  261. const uint8* src_v, uint8* dst_uyvy, int width) =
  262. I422ToUYVYRow_C;
  263. if (!src_y || !src_u || !src_v || !dst_uyvy || width <= 0 || height == 0) {
  264. return -1;
  265. }
  266. // Negative height means invert the image.
  267. if (height < 0) {
  268. height = -height;
  269. dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy;
  270. dst_stride_uyvy = -dst_stride_uyvy;
  271. }
  272. // Coalesce rows.
  273. if (src_stride_y == width && src_stride_u * 2 == width &&
  274. src_stride_v * 2 == width && dst_stride_uyvy == width * 2) {
  275. width *= height;
  276. height = 1;
  277. src_stride_y = src_stride_u = src_stride_v = dst_stride_uyvy = 0;
  278. }
  279. #if defined(HAS_I422TOUYVYROW_SSE2)
  280. if (TestCpuFlag(kCpuHasSSE2)) {
  281. I422ToUYVYRow = I422ToUYVYRow_Any_SSE2;
  282. if (IS_ALIGNED(width, 16)) {
  283. I422ToUYVYRow = I422ToUYVYRow_SSE2;
  284. }
  285. }
  286. #endif
  287. #if defined(HAS_I422TOUYVYROW_NEON)
  288. if (TestCpuFlag(kCpuHasNEON)) {
  289. I422ToUYVYRow = I422ToUYVYRow_Any_NEON;
  290. if (IS_ALIGNED(width, 16)) {
  291. I422ToUYVYRow = I422ToUYVYRow_NEON;
  292. }
  293. }
  294. #endif
  295. #if defined(HAS_I422TOUYVYROW_MSA)
  296. if (TestCpuFlag(kCpuHasMSA)) {
  297. I422ToUYVYRow = I422ToUYVYRow_Any_MSA;
  298. if (IS_ALIGNED(width, 32)) {
  299. I422ToUYVYRow = I422ToUYVYRow_MSA;
  300. }
  301. }
  302. #endif
  303. for (y = 0; y < height; ++y) {
  304. I422ToUYVYRow(src_y, src_u, src_v, dst_uyvy, width);
  305. src_y += src_stride_y;
  306. src_u += src_stride_u;
  307. src_v += src_stride_v;
  308. dst_uyvy += dst_stride_uyvy;
  309. }
  310. return 0;
  311. }
  312. LIBYUV_API
  313. int I420ToUYVY(const uint8* src_y,
  314. int src_stride_y,
  315. const uint8* src_u,
  316. int src_stride_u,
  317. const uint8* src_v,
  318. int src_stride_v,
  319. uint8* dst_uyvy,
  320. int dst_stride_uyvy,
  321. int width,
  322. int height) {
  323. int y;
  324. void (*I422ToUYVYRow)(const uint8* src_y, const uint8* src_u,
  325. const uint8* src_v, uint8* dst_uyvy, int width) =
  326. I422ToUYVYRow_C;
  327. if (!src_y || !src_u || !src_v || !dst_uyvy || width <= 0 || height == 0) {
  328. return -1;
  329. }
  330. // Negative height means invert the image.
  331. if (height < 0) {
  332. height = -height;
  333. dst_uyvy = dst_uyvy + (height - 1) * dst_stride_uyvy;
  334. dst_stride_uyvy = -dst_stride_uyvy;
  335. }
  336. #if defined(HAS_I422TOUYVYROW_SSE2)
  337. if (TestCpuFlag(kCpuHasSSE2)) {
  338. I422ToUYVYRow = I422ToUYVYRow_Any_SSE2;
  339. if (IS_ALIGNED(width, 16)) {
  340. I422ToUYVYRow = I422ToUYVYRow_SSE2;
  341. }
  342. }
  343. #endif
  344. #if defined(HAS_I422TOUYVYROW_NEON)
  345. if (TestCpuFlag(kCpuHasNEON)) {
  346. I422ToUYVYRow = I422ToUYVYRow_Any_NEON;
  347. if (IS_ALIGNED(width, 16)) {
  348. I422ToUYVYRow = I422ToUYVYRow_NEON;
  349. }
  350. }
  351. #endif
  352. #if defined(HAS_I422TOUYVYROW_MSA)
  353. if (TestCpuFlag(kCpuHasMSA)) {
  354. I422ToUYVYRow = I422ToUYVYRow_Any_MSA;
  355. if (IS_ALIGNED(width, 32)) {
  356. I422ToUYVYRow = I422ToUYVYRow_MSA;
  357. }
  358. }
  359. #endif
  360. for (y = 0; y < height - 1; y += 2) {
  361. I422ToUYVYRow(src_y, src_u, src_v, dst_uyvy, width);
  362. I422ToUYVYRow(src_y + src_stride_y, src_u, src_v,
  363. dst_uyvy + dst_stride_uyvy, width);
  364. src_y += src_stride_y * 2;
  365. src_u += src_stride_u;
  366. src_v += src_stride_v;
  367. dst_uyvy += dst_stride_uyvy * 2;
  368. }
  369. if (height & 1) {
  370. I422ToUYVYRow(src_y, src_u, src_v, dst_uyvy, width);
  371. }
  372. return 0;
  373. }
  374. // TODO(fbarchard): test negative height for invert.
  375. LIBYUV_API
  376. int I420ToNV12(const uint8* src_y,
  377. int src_stride_y,
  378. const uint8* src_u,
  379. int src_stride_u,
  380. const uint8* src_v,
  381. int src_stride_v,
  382. uint8* dst_y,
  383. int dst_stride_y,
  384. uint8* dst_uv,
  385. int dst_stride_uv,
  386. int width,
  387. int height) {
  388. if (!src_y || !src_u || !src_v || !dst_y || !dst_uv || width <= 0 ||
  389. height == 0) {
  390. return -1;
  391. }
  392. int halfwidth = (width + 1) / 2;
  393. int halfheight = height > 0 ? (height + 1) / 2 : (height - 1) / 2;
  394. if (dst_y) {
  395. CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height);
  396. }
  397. MergeUVPlane(src_u, src_stride_u, src_v, src_stride_v, dst_uv, dst_stride_uv,
  398. halfwidth, halfheight);
  399. return 0;
  400. }
  401. LIBYUV_API
  402. int I420ToNV21(const uint8* src_y,
  403. int src_stride_y,
  404. const uint8* src_u,
  405. int src_stride_u,
  406. const uint8* src_v,
  407. int src_stride_v,
  408. uint8* dst_y,
  409. int dst_stride_y,
  410. uint8* dst_vu,
  411. int dst_stride_vu,
  412. int width,
  413. int height) {
  414. return I420ToNV12(src_y, src_stride_y, src_v, src_stride_v, src_u,
  415. src_stride_u, dst_y, dst_stride_y, dst_vu, dst_stride_vu,
  416. width, height);
  417. }
  418. // Convert I422 to RGBA with matrix
  419. static int I420ToRGBAMatrix(const uint8* src_y,
  420. int src_stride_y,
  421. const uint8* src_u,
  422. int src_stride_u,
  423. const uint8* src_v,
  424. int src_stride_v,
  425. uint8* dst_rgba,
  426. int dst_stride_rgba,
  427. const struct YuvConstants* yuvconstants,
  428. int width,
  429. int height) {
  430. int y;
  431. void (*I422ToRGBARow)(const uint8* y_buf, const uint8* u_buf,
  432. const uint8* v_buf, uint8* rgb_buf,
  433. const struct YuvConstants* yuvconstants, int width) =
  434. I422ToRGBARow_C;
  435. if (!src_y || !src_u || !src_v || !dst_rgba || width <= 0 || height == 0) {
  436. return -1;
  437. }
  438. // Negative height means invert the image.
  439. if (height < 0) {
  440. height = -height;
  441. dst_rgba = dst_rgba + (height - 1) * dst_stride_rgba;
  442. dst_stride_rgba = -dst_stride_rgba;
  443. }
  444. #if defined(HAS_I422TORGBAROW_SSSE3)
  445. if (TestCpuFlag(kCpuHasSSSE3)) {
  446. I422ToRGBARow = I422ToRGBARow_Any_SSSE3;
  447. if (IS_ALIGNED(width, 8)) {
  448. I422ToRGBARow = I422ToRGBARow_SSSE3;
  449. }
  450. }
  451. #endif
  452. #if defined(HAS_I422TORGBAROW_AVX2)
  453. if (TestCpuFlag(kCpuHasAVX2)) {
  454. I422ToRGBARow = I422ToRGBARow_Any_AVX2;
  455. if (IS_ALIGNED(width, 16)) {
  456. I422ToRGBARow = I422ToRGBARow_AVX2;
  457. }
  458. }
  459. #endif
  460. #if defined(HAS_I422TORGBAROW_NEON)
  461. if (TestCpuFlag(kCpuHasNEON)) {
  462. I422ToRGBARow = I422ToRGBARow_Any_NEON;
  463. if (IS_ALIGNED(width, 8)) {
  464. I422ToRGBARow = I422ToRGBARow_NEON;
  465. }
  466. }
  467. #endif
  468. #if defined(HAS_I422TORGBAROW_DSPR2)
  469. if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(width, 4) &&
  470. IS_ALIGNED(src_y, 4) && IS_ALIGNED(src_stride_y, 4) &&
  471. IS_ALIGNED(src_u, 2) && IS_ALIGNED(src_stride_u, 2) &&
  472. IS_ALIGNED(src_v, 2) && IS_ALIGNED(src_stride_v, 2) &&
  473. IS_ALIGNED(dst_rgba, 4) && IS_ALIGNED(dst_stride_rgba, 4)) {
  474. I422ToRGBARow = I422ToRGBARow_DSPR2;
  475. }
  476. #endif
  477. #if defined(HAS_I422TORGBAROW_MSA)
  478. if (TestCpuFlag(kCpuHasMSA)) {
  479. I422ToRGBARow = I422ToRGBARow_Any_MSA;
  480. if (IS_ALIGNED(width, 8)) {
  481. I422ToRGBARow = I422ToRGBARow_MSA;
  482. }
  483. }
  484. #endif
  485. for (y = 0; y < height; ++y) {
  486. I422ToRGBARow(src_y, src_u, src_v, dst_rgba, yuvconstants, width);
  487. dst_rgba += dst_stride_rgba;
  488. src_y += src_stride_y;
  489. if (y & 1) {
  490. src_u += src_stride_u;
  491. src_v += src_stride_v;
  492. }
  493. }
  494. return 0;
  495. }
  496. // Convert I420 to RGBA.
  497. LIBYUV_API
  498. int I420ToRGBA(const uint8* src_y,
  499. int src_stride_y,
  500. const uint8* src_u,
  501. int src_stride_u,
  502. const uint8* src_v,
  503. int src_stride_v,
  504. uint8* dst_rgba,
  505. int dst_stride_rgba,
  506. int width,
  507. int height) {
  508. return I420ToRGBAMatrix(src_y, src_stride_y, src_u, src_stride_u, src_v,
  509. src_stride_v, dst_rgba, dst_stride_rgba,
  510. &kYuvI601Constants, width, height);
  511. }
  512. // Convert I420 to BGRA.
  513. LIBYUV_API
  514. int I420ToBGRA(const uint8* src_y,
  515. int src_stride_y,
  516. const uint8* src_u,
  517. int src_stride_u,
  518. const uint8* src_v,
  519. int src_stride_v,
  520. uint8* dst_bgra,
  521. int dst_stride_bgra,
  522. int width,
  523. int height) {
  524. return I420ToRGBAMatrix(src_y, src_stride_y, src_v,
  525. src_stride_v, // Swap U and V
  526. src_u, src_stride_u, dst_bgra, dst_stride_bgra,
  527. &kYvuI601Constants, // Use Yvu matrix
  528. width, height);
  529. }
  530. // Convert I420 to RGB24 with matrix
  531. static int I420ToRGB24Matrix(const uint8* src_y,
  532. int src_stride_y,
  533. const uint8* src_u,
  534. int src_stride_u,
  535. const uint8* src_v,
  536. int src_stride_v,
  537. uint8* dst_rgb24,
  538. int dst_stride_rgb24,
  539. const struct YuvConstants* yuvconstants,
  540. int width,
  541. int height) {
  542. int y;
  543. void (*I422ToRGB24Row)(const uint8* y_buf, const uint8* u_buf,
  544. const uint8* v_buf, uint8* rgb_buf,
  545. const struct YuvConstants* yuvconstants, int width) =
  546. I422ToRGB24Row_C;
  547. if (!src_y || !src_u || !src_v || !dst_rgb24 || width <= 0 || height == 0) {
  548. return -1;
  549. }
  550. // Negative height means invert the image.
  551. if (height < 0) {
  552. height = -height;
  553. dst_rgb24 = dst_rgb24 + (height - 1) * dst_stride_rgb24;
  554. dst_stride_rgb24 = -dst_stride_rgb24;
  555. }
  556. #if defined(HAS_I422TORGB24ROW_SSSE3)
  557. if (TestCpuFlag(kCpuHasSSSE3)) {
  558. I422ToRGB24Row = I422ToRGB24Row_Any_SSSE3;
  559. if (IS_ALIGNED(width, 8)) {
  560. I422ToRGB24Row = I422ToRGB24Row_SSSE3;
  561. }
  562. }
  563. #endif
  564. #if defined(HAS_I422TORGB24ROW_AVX2)
  565. if (TestCpuFlag(kCpuHasAVX2)) {
  566. I422ToRGB24Row = I422ToRGB24Row_Any_AVX2;
  567. if (IS_ALIGNED(width, 16)) {
  568. I422ToRGB24Row = I422ToRGB24Row_AVX2;
  569. }
  570. }
  571. #endif
  572. #if defined(HAS_I422TORGB24ROW_NEON)
  573. if (TestCpuFlag(kCpuHasNEON)) {
  574. I422ToRGB24Row = I422ToRGB24Row_Any_NEON;
  575. if (IS_ALIGNED(width, 8)) {
  576. I422ToRGB24Row = I422ToRGB24Row_NEON;
  577. }
  578. }
  579. #endif
  580. #if defined(HAS_I422TORGB24ROW_MSA)
  581. if (TestCpuFlag(kCpuHasMSA)) {
  582. I422ToRGB24Row = I422ToRGB24Row_Any_MSA;
  583. if (IS_ALIGNED(width, 16)) {
  584. I422ToRGB24Row = I422ToRGB24Row_MSA;
  585. }
  586. }
  587. #endif
  588. for (y = 0; y < height; ++y) {
  589. I422ToRGB24Row(src_y, src_u, src_v, dst_rgb24, yuvconstants, width);
  590. dst_rgb24 += dst_stride_rgb24;
  591. src_y += src_stride_y;
  592. if (y & 1) {
  593. src_u += src_stride_u;
  594. src_v += src_stride_v;
  595. }
  596. }
  597. return 0;
  598. }
  599. // Convert I420 to RGB24.
  600. LIBYUV_API
  601. int I420ToRGB24(const uint8* src_y,
  602. int src_stride_y,
  603. const uint8* src_u,
  604. int src_stride_u,
  605. const uint8* src_v,
  606. int src_stride_v,
  607. uint8* dst_rgb24,
  608. int dst_stride_rgb24,
  609. int width,
  610. int height) {
  611. return I420ToRGB24Matrix(src_y, src_stride_y, src_u, src_stride_u, src_v,
  612. src_stride_v, dst_rgb24, dst_stride_rgb24,
  613. &kYuvI601Constants, width, height);
  614. }
  615. // Convert I420 to RAW.
  616. LIBYUV_API
  617. int I420ToRAW(const uint8* src_y,
  618. int src_stride_y,
  619. const uint8* src_u,
  620. int src_stride_u,
  621. const uint8* src_v,
  622. int src_stride_v,
  623. uint8* dst_raw,
  624. int dst_stride_raw,
  625. int width,
  626. int height) {
  627. return I420ToRGB24Matrix(src_y, src_stride_y, src_v,
  628. src_stride_v, // Swap U and V
  629. src_u, src_stride_u, dst_raw, dst_stride_raw,
  630. &kYvuI601Constants, // Use Yvu matrix
  631. width, height);
  632. }
  633. // Convert H420 to RGB24.
  634. LIBYUV_API
  635. int H420ToRGB24(const uint8* src_y,
  636. int src_stride_y,
  637. const uint8* src_u,
  638. int src_stride_u,
  639. const uint8* src_v,
  640. int src_stride_v,
  641. uint8* dst_rgb24,
  642. int dst_stride_rgb24,
  643. int width,
  644. int height) {
  645. return I420ToRGB24Matrix(src_y, src_stride_y, src_u, src_stride_u, src_v,
  646. src_stride_v, dst_rgb24, dst_stride_rgb24,
  647. &kYuvH709Constants, width, height);
  648. }
  649. // Convert H420 to RAW.
  650. LIBYUV_API
  651. int H420ToRAW(const uint8* src_y,
  652. int src_stride_y,
  653. const uint8* src_u,
  654. int src_stride_u,
  655. const uint8* src_v,
  656. int src_stride_v,
  657. uint8* dst_raw,
  658. int dst_stride_raw,
  659. int width,
  660. int height) {
  661. return I420ToRGB24Matrix(src_y, src_stride_y, src_v,
  662. src_stride_v, // Swap U and V
  663. src_u, src_stride_u, dst_raw, dst_stride_raw,
  664. &kYvuH709Constants, // Use Yvu matrix
  665. width, height);
  666. }
  667. // Convert I420 to ARGB1555.
  668. LIBYUV_API
  669. int I420ToARGB1555(const uint8* src_y,
  670. int src_stride_y,
  671. const uint8* src_u,
  672. int src_stride_u,
  673. const uint8* src_v,
  674. int src_stride_v,
  675. uint8* dst_argb1555,
  676. int dst_stride_argb1555,
  677. int width,
  678. int height) {
  679. int y;
  680. void (*I422ToARGB1555Row)(const uint8* y_buf, const uint8* u_buf,
  681. const uint8* v_buf, uint8* rgb_buf,
  682. const struct YuvConstants* yuvconstants,
  683. int width) = I422ToARGB1555Row_C;
  684. if (!src_y || !src_u || !src_v || !dst_argb1555 || width <= 0 ||
  685. height == 0) {
  686. return -1;
  687. }
  688. // Negative height means invert the image.
  689. if (height < 0) {
  690. height = -height;
  691. dst_argb1555 = dst_argb1555 + (height - 1) * dst_stride_argb1555;
  692. dst_stride_argb1555 = -dst_stride_argb1555;
  693. }
  694. #if defined(HAS_I422TOARGB1555ROW_SSSE3)
  695. if (TestCpuFlag(kCpuHasSSSE3)) {
  696. I422ToARGB1555Row = I422ToARGB1555Row_Any_SSSE3;
  697. if (IS_ALIGNED(width, 8)) {
  698. I422ToARGB1555Row = I422ToARGB1555Row_SSSE3;
  699. }
  700. }
  701. #endif
  702. #if defined(HAS_I422TOARGB1555ROW_AVX2)
  703. if (TestCpuFlag(kCpuHasAVX2)) {
  704. I422ToARGB1555Row = I422ToARGB1555Row_Any_AVX2;
  705. if (IS_ALIGNED(width, 16)) {
  706. I422ToARGB1555Row = I422ToARGB1555Row_AVX2;
  707. }
  708. }
  709. #endif
  710. #if defined(HAS_I422TOARGB1555ROW_NEON)
  711. if (TestCpuFlag(kCpuHasNEON)) {
  712. I422ToARGB1555Row = I422ToARGB1555Row_Any_NEON;
  713. if (IS_ALIGNED(width, 8)) {
  714. I422ToARGB1555Row = I422ToARGB1555Row_NEON;
  715. }
  716. }
  717. #endif
  718. #if defined(HAS_I422TOARGB1555ROW_DSPR2)
  719. if (TestCpuFlag(kCpuHasDSPR2)) {
  720. I422ToARGB1555Row = I422ToARGB1555Row_Any_DSPR2;
  721. if (IS_ALIGNED(width, 4)) {
  722. I422ToARGB1555Row = I422ToARGB1555Row_DSPR2;
  723. }
  724. }
  725. #endif
  726. #if defined(HAS_I422TOARGB1555ROW_MSA)
  727. if (TestCpuFlag(kCpuHasMSA)) {
  728. I422ToARGB1555Row = I422ToARGB1555Row_Any_MSA;
  729. if (IS_ALIGNED(width, 8)) {
  730. I422ToARGB1555Row = I422ToARGB1555Row_MSA;
  731. }
  732. }
  733. #endif
  734. for (y = 0; y < height; ++y) {
  735. I422ToARGB1555Row(src_y, src_u, src_v, dst_argb1555, &kYuvI601Constants,
  736. width);
  737. dst_argb1555 += dst_stride_argb1555;
  738. src_y += src_stride_y;
  739. if (y & 1) {
  740. src_u += src_stride_u;
  741. src_v += src_stride_v;
  742. }
  743. }
  744. return 0;
  745. }
  746. // Convert I420 to ARGB4444.
  747. LIBYUV_API
  748. int I420ToARGB4444(const uint8* src_y,
  749. int src_stride_y,
  750. const uint8* src_u,
  751. int src_stride_u,
  752. const uint8* src_v,
  753. int src_stride_v,
  754. uint8* dst_argb4444,
  755. int dst_stride_argb4444,
  756. int width,
  757. int height) {
  758. int y;
  759. void (*I422ToARGB4444Row)(const uint8* y_buf, const uint8* u_buf,
  760. const uint8* v_buf, uint8* rgb_buf,
  761. const struct YuvConstants* yuvconstants,
  762. int width) = I422ToARGB4444Row_C;
  763. if (!src_y || !src_u || !src_v || !dst_argb4444 || width <= 0 ||
  764. height == 0) {
  765. return -1;
  766. }
  767. // Negative height means invert the image.
  768. if (height < 0) {
  769. height = -height;
  770. dst_argb4444 = dst_argb4444 + (height - 1) * dst_stride_argb4444;
  771. dst_stride_argb4444 = -dst_stride_argb4444;
  772. }
  773. #if defined(HAS_I422TOARGB4444ROW_SSSE3)
  774. if (TestCpuFlag(kCpuHasSSSE3)) {
  775. I422ToARGB4444Row = I422ToARGB4444Row_Any_SSSE3;
  776. if (IS_ALIGNED(width, 8)) {
  777. I422ToARGB4444Row = I422ToARGB4444Row_SSSE3;
  778. }
  779. }
  780. #endif
  781. #if defined(HAS_I422TOARGB4444ROW_AVX2)
  782. if (TestCpuFlag(kCpuHasAVX2)) {
  783. I422ToARGB4444Row = I422ToARGB4444Row_Any_AVX2;
  784. if (IS_ALIGNED(width, 16)) {
  785. I422ToARGB4444Row = I422ToARGB4444Row_AVX2;
  786. }
  787. }
  788. #endif
  789. #if defined(HAS_I422TOARGB4444ROW_NEON)
  790. if (TestCpuFlag(kCpuHasNEON)) {
  791. I422ToARGB4444Row = I422ToARGB4444Row_Any_NEON;
  792. if (IS_ALIGNED(width, 8)) {
  793. I422ToARGB4444Row = I422ToARGB4444Row_NEON;
  794. }
  795. }
  796. #endif
  797. #if defined(HAS_I422TOARGB4444ROW_DSPR2)
  798. if (TestCpuFlag(kCpuHasDSPR2)) {
  799. I422ToARGB4444Row = I422ToARGB4444Row_Any_DSPR2;
  800. if (IS_ALIGNED(width, 4)) {
  801. I422ToARGB4444Row = I422ToARGB4444Row_DSPR2;
  802. }
  803. }
  804. #endif
  805. #if defined(HAS_I422TOARGB4444ROW_MSA)
  806. if (TestCpuFlag(kCpuHasMSA)) {
  807. I422ToARGB4444Row = I422ToARGB4444Row_Any_MSA;
  808. if (IS_ALIGNED(width, 8)) {
  809. I422ToARGB4444Row = I422ToARGB4444Row_MSA;
  810. }
  811. }
  812. #endif
  813. for (y = 0; y < height; ++y) {
  814. I422ToARGB4444Row(src_y, src_u, src_v, dst_argb4444, &kYuvI601Constants,
  815. width);
  816. dst_argb4444 += dst_stride_argb4444;
  817. src_y += src_stride_y;
  818. if (y & 1) {
  819. src_u += src_stride_u;
  820. src_v += src_stride_v;
  821. }
  822. }
  823. return 0;
  824. }
  825. // Convert I420 to RGB565.
  826. LIBYUV_API
  827. int I420ToRGB565(const uint8* src_y,
  828. int src_stride_y,
  829. const uint8* src_u,
  830. int src_stride_u,
  831. const uint8* src_v,
  832. int src_stride_v,
  833. uint8* dst_rgb565,
  834. int dst_stride_rgb565,
  835. int width,
  836. int height) {
  837. int y;
  838. void (*I422ToRGB565Row)(const uint8* y_buf, const uint8* u_buf,
  839. const uint8* v_buf, uint8* rgb_buf,
  840. const struct YuvConstants* yuvconstants, int width) =
  841. I422ToRGB565Row_C;
  842. if (!src_y || !src_u || !src_v || !dst_rgb565 || width <= 0 || height == 0) {
  843. return -1;
  844. }
  845. // Negative height means invert the image.
  846. if (height < 0) {
  847. height = -height;
  848. dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
  849. dst_stride_rgb565 = -dst_stride_rgb565;
  850. }
  851. #if defined(HAS_I422TORGB565ROW_SSSE3)
  852. if (TestCpuFlag(kCpuHasSSSE3)) {
  853. I422ToRGB565Row = I422ToRGB565Row_Any_SSSE3;
  854. if (IS_ALIGNED(width, 8)) {
  855. I422ToRGB565Row = I422ToRGB565Row_SSSE3;
  856. }
  857. }
  858. #endif
  859. #if defined(HAS_I422TORGB565ROW_AVX2)
  860. if (TestCpuFlag(kCpuHasAVX2)) {
  861. I422ToRGB565Row = I422ToRGB565Row_Any_AVX2;
  862. if (IS_ALIGNED(width, 16)) {
  863. I422ToRGB565Row = I422ToRGB565Row_AVX2;
  864. }
  865. }
  866. #endif
  867. #if defined(HAS_I422TORGB565ROW_NEON)
  868. if (TestCpuFlag(kCpuHasNEON)) {
  869. I422ToRGB565Row = I422ToRGB565Row_Any_NEON;
  870. if (IS_ALIGNED(width, 8)) {
  871. I422ToRGB565Row = I422ToRGB565Row_NEON;
  872. }
  873. }
  874. #endif
  875. #if defined(HAS_I422TORGB565ROW_MSA)
  876. if (TestCpuFlag(kCpuHasMSA)) {
  877. I422ToRGB565Row = I422ToRGB565Row_Any_MSA;
  878. if (IS_ALIGNED(width, 8)) {
  879. I422ToRGB565Row = I422ToRGB565Row_MSA;
  880. }
  881. }
  882. #endif
  883. for (y = 0; y < height; ++y) {
  884. I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, &kYuvI601Constants, width);
  885. dst_rgb565 += dst_stride_rgb565;
  886. src_y += src_stride_y;
  887. if (y & 1) {
  888. src_u += src_stride_u;
  889. src_v += src_stride_v;
  890. }
  891. }
  892. return 0;
  893. }
  894. // Convert I422 to RGB565.
  895. LIBYUV_API
  896. int I422ToRGB565(const uint8* src_y,
  897. int src_stride_y,
  898. const uint8* src_u,
  899. int src_stride_u,
  900. const uint8* src_v,
  901. int src_stride_v,
  902. uint8* dst_rgb565,
  903. int dst_stride_rgb565,
  904. int width,
  905. int height) {
  906. int y;
  907. void (*I422ToRGB565Row)(const uint8* y_buf, const uint8* u_buf,
  908. const uint8* v_buf, uint8* rgb_buf,
  909. const struct YuvConstants* yuvconstants, int width) =
  910. I422ToRGB565Row_C;
  911. if (!src_y || !src_u || !src_v || !dst_rgb565 || width <= 0 || height == 0) {
  912. return -1;
  913. }
  914. // Negative height means invert the image.
  915. if (height < 0) {
  916. height = -height;
  917. dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
  918. dst_stride_rgb565 = -dst_stride_rgb565;
  919. }
  920. #if defined(HAS_I422TORGB565ROW_SSSE3)
  921. if (TestCpuFlag(kCpuHasSSSE3)) {
  922. I422ToRGB565Row = I422ToRGB565Row_Any_SSSE3;
  923. if (IS_ALIGNED(width, 8)) {
  924. I422ToRGB565Row = I422ToRGB565Row_SSSE3;
  925. }
  926. }
  927. #endif
  928. #if defined(HAS_I422TORGB565ROW_AVX2)
  929. if (TestCpuFlag(kCpuHasAVX2)) {
  930. I422ToRGB565Row = I422ToRGB565Row_Any_AVX2;
  931. if (IS_ALIGNED(width, 16)) {
  932. I422ToRGB565Row = I422ToRGB565Row_AVX2;
  933. }
  934. }
  935. #endif
  936. #if defined(HAS_I422TORGB565ROW_NEON)
  937. if (TestCpuFlag(kCpuHasNEON)) {
  938. I422ToRGB565Row = I422ToRGB565Row_Any_NEON;
  939. if (IS_ALIGNED(width, 8)) {
  940. I422ToRGB565Row = I422ToRGB565Row_NEON;
  941. }
  942. }
  943. #endif
  944. #if defined(HAS_I422TORGB565ROW_MSA)
  945. if (TestCpuFlag(kCpuHasMSA)) {
  946. I422ToRGB565Row = I422ToRGB565Row_Any_MSA;
  947. if (IS_ALIGNED(width, 8)) {
  948. I422ToRGB565Row = I422ToRGB565Row_MSA;
  949. }
  950. }
  951. #endif
  952. for (y = 0; y < height; ++y) {
  953. I422ToRGB565Row(src_y, src_u, src_v, dst_rgb565, &kYuvI601Constants, width);
  954. dst_rgb565 += dst_stride_rgb565;
  955. src_y += src_stride_y;
  956. src_u += src_stride_u;
  957. src_v += src_stride_v;
  958. }
  959. return 0;
  960. }
  961. // Ordered 8x8 dither for 888 to 565. Values from 0 to 7.
  962. static const uint8 kDither565_4x4[16] = {
  963. 0, 4, 1, 5, 6, 2, 7, 3, 1, 5, 0, 4, 7, 3, 6, 2,
  964. };
  965. // Convert I420 to RGB565 with dithering.
  966. LIBYUV_API
  967. int I420ToRGB565Dither(const uint8* src_y,
  968. int src_stride_y,
  969. const uint8* src_u,
  970. int src_stride_u,
  971. const uint8* src_v,
  972. int src_stride_v,
  973. uint8* dst_rgb565,
  974. int dst_stride_rgb565,
  975. const uint8* dither4x4,
  976. int width,
  977. int height) {
  978. int y;
  979. void (*I422ToARGBRow)(const uint8* y_buf, const uint8* u_buf,
  980. const uint8* v_buf, uint8* rgb_buf,
  981. const struct YuvConstants* yuvconstants, int width) =
  982. I422ToARGBRow_C;
  983. void (*ARGBToRGB565DitherRow)(const uint8* src_argb, uint8* dst_rgb,
  984. const uint32 dither4, int width) =
  985. ARGBToRGB565DitherRow_C;
  986. if (!src_y || !src_u || !src_v || !dst_rgb565 || width <= 0 || height == 0) {
  987. return -1;
  988. }
  989. // Negative height means invert the image.
  990. if (height < 0) {
  991. height = -height;
  992. dst_rgb565 = dst_rgb565 + (height - 1) * dst_stride_rgb565;
  993. dst_stride_rgb565 = -dst_stride_rgb565;
  994. }
  995. if (!dither4x4) {
  996. dither4x4 = kDither565_4x4;
  997. }
  998. #if defined(HAS_I422TOARGBROW_SSSE3)
  999. if (TestCpuFlag(kCpuHasSSSE3)) {
  1000. I422ToARGBRow = I422ToARGBRow_Any_SSSE3;
  1001. if (IS_ALIGNED(width, 8)) {
  1002. I422ToARGBRow = I422ToARGBRow_SSSE3;
  1003. }
  1004. }
  1005. #endif
  1006. #if defined(HAS_I422TOARGBROW_AVX2)
  1007. if (TestCpuFlag(kCpuHasAVX2)) {
  1008. I422ToARGBRow = I422ToARGBRow_Any_AVX2;
  1009. if (IS_ALIGNED(width, 16)) {
  1010. I422ToARGBRow = I422ToARGBRow_AVX2;
  1011. }
  1012. }
  1013. #endif
  1014. #if defined(HAS_I422TOARGBROW_NEON)
  1015. if (TestCpuFlag(kCpuHasNEON)) {
  1016. I422ToARGBRow = I422ToARGBRow_Any_NEON;
  1017. if (IS_ALIGNED(width, 8)) {
  1018. I422ToARGBRow = I422ToARGBRow_NEON;
  1019. }
  1020. }
  1021. #endif
  1022. #if defined(HAS_I422TOARGBROW_DSPR2)
  1023. if (TestCpuFlag(kCpuHasDSPR2) && IS_ALIGNED(width, 4) &&
  1024. IS_ALIGNED(src_y, 4) && IS_ALIGNED(src_stride_y, 4) &&
  1025. IS_ALIGNED(src_u, 2) && IS_ALIGNED(src_stride_u, 2) &&
  1026. IS_ALIGNED(src_v, 2) && IS_ALIGNED(src_stride_v, 2)) {
  1027. I422ToARGBRow = I422ToARGBRow_DSPR2;
  1028. }
  1029. #endif
  1030. #if defined(HAS_I422TOARGBROW_MSA)
  1031. if (TestCpuFlag(kCpuHasMSA)) {
  1032. I422ToARGBRow = I422ToARGBRow_Any_MSA;
  1033. if (IS_ALIGNED(width, 8)) {
  1034. I422ToARGBRow = I422ToARGBRow_MSA;
  1035. }
  1036. }
  1037. #endif
  1038. #if defined(HAS_ARGBTORGB565DITHERROW_SSE2)
  1039. if (TestCpuFlag(kCpuHasSSE2)) {
  1040. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_Any_SSE2;
  1041. if (IS_ALIGNED(width, 4)) {
  1042. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_SSE2;
  1043. }
  1044. }
  1045. #endif
  1046. #if defined(HAS_ARGBTORGB565DITHERROW_AVX2)
  1047. if (TestCpuFlag(kCpuHasAVX2)) {
  1048. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_Any_AVX2;
  1049. if (IS_ALIGNED(width, 8)) {
  1050. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_AVX2;
  1051. }
  1052. }
  1053. #endif
  1054. #if defined(HAS_ARGBTORGB565DITHERROW_NEON)
  1055. if (TestCpuFlag(kCpuHasNEON)) {
  1056. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_Any_NEON;
  1057. if (IS_ALIGNED(width, 8)) {
  1058. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_NEON;
  1059. }
  1060. }
  1061. #endif
  1062. #if defined(HAS_ARGBTORGB565DITHERROW_MSA)
  1063. if (TestCpuFlag(kCpuHasMSA)) {
  1064. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_Any_MSA;
  1065. if (IS_ALIGNED(width, 8)) {
  1066. ARGBToRGB565DitherRow = ARGBToRGB565DitherRow_MSA;
  1067. }
  1068. }
  1069. #endif
  1070. {
  1071. // Allocate a row of argb.
  1072. align_buffer_64(row_argb, width * 4);
  1073. for (y = 0; y < height; ++y) {
  1074. I422ToARGBRow(src_y, src_u, src_v, row_argb, &kYuvI601Constants, width);
  1075. ARGBToRGB565DitherRow(row_argb, dst_rgb565,
  1076. *(uint32*)(dither4x4 + ((y & 3) << 2)), // NOLINT
  1077. width); // NOLINT
  1078. dst_rgb565 += dst_stride_rgb565;
  1079. src_y += src_stride_y;
  1080. if (y & 1) {
  1081. src_u += src_stride_u;
  1082. src_v += src_stride_v;
  1083. }
  1084. }
  1085. free_aligned_buffer_64(row_argb);
  1086. }
  1087. return 0;
  1088. }
  1089. // Convert I420 to specified format
  1090. LIBYUV_API
  1091. int ConvertFromI420(const uint8* y,
  1092. int y_stride,
  1093. const uint8* u,
  1094. int u_stride,
  1095. const uint8* v,
  1096. int v_stride,
  1097. uint8* dst_sample,
  1098. int dst_sample_stride,
  1099. int width,
  1100. int height,
  1101. uint32 fourcc) {
  1102. uint32 format = CanonicalFourCC(fourcc);
  1103. int r = 0;
  1104. if (!y || !u || !v || !dst_sample || width <= 0 || height == 0) {
  1105. return -1;
  1106. }
  1107. switch (format) {
  1108. // Single plane formats
  1109. case FOURCC_YUY2:
  1110. r = I420ToYUY2(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1111. dst_sample_stride ? dst_sample_stride : width * 2, width,
  1112. height);
  1113. break;
  1114. case FOURCC_UYVY:
  1115. r = I420ToUYVY(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1116. dst_sample_stride ? dst_sample_stride : width * 2, width,
  1117. height);
  1118. break;
  1119. case FOURCC_RGBP:
  1120. r = I420ToRGB565(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1121. dst_sample_stride ? dst_sample_stride : width * 2, width,
  1122. height);
  1123. break;
  1124. case FOURCC_RGBO:
  1125. r = I420ToARGB1555(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1126. dst_sample_stride ? dst_sample_stride : width * 2,
  1127. width, height);
  1128. break;
  1129. case FOURCC_R444:
  1130. r = I420ToARGB4444(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1131. dst_sample_stride ? dst_sample_stride : width * 2,
  1132. width, height);
  1133. break;
  1134. case FOURCC_24BG:
  1135. r = I420ToRGB24(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1136. dst_sample_stride ? dst_sample_stride : width * 3, width,
  1137. height);
  1138. break;
  1139. case FOURCC_RAW:
  1140. r = I420ToRAW(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1141. dst_sample_stride ? dst_sample_stride : width * 3, width,
  1142. height);
  1143. break;
  1144. case FOURCC_ARGB:
  1145. r = I420ToARGB(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1146. dst_sample_stride ? dst_sample_stride : width * 4, width,
  1147. height);
  1148. break;
  1149. case FOURCC_BGRA:
  1150. r = I420ToBGRA(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1151. dst_sample_stride ? dst_sample_stride : width * 4, width,
  1152. height);
  1153. break;
  1154. case FOURCC_ABGR:
  1155. r = I420ToABGR(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1156. dst_sample_stride ? dst_sample_stride : width * 4, width,
  1157. height);
  1158. break;
  1159. case FOURCC_RGBA:
  1160. r = I420ToRGBA(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1161. dst_sample_stride ? dst_sample_stride : width * 4, width,
  1162. height);
  1163. break;
  1164. case FOURCC_I400:
  1165. r = I400Copy(y, y_stride, dst_sample,
  1166. dst_sample_stride ? dst_sample_stride : width, width,
  1167. height);
  1168. break;
  1169. case FOURCC_NV12: {
  1170. uint8* dst_uv = dst_sample + width * height;
  1171. r = I420ToNV12(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1172. dst_sample_stride ? dst_sample_stride : width, dst_uv,
  1173. dst_sample_stride ? dst_sample_stride : width, width,
  1174. height);
  1175. break;
  1176. }
  1177. case FOURCC_NV21: {
  1178. uint8* dst_vu = dst_sample + width * height;
  1179. r = I420ToNV21(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1180. dst_sample_stride ? dst_sample_stride : width, dst_vu,
  1181. dst_sample_stride ? dst_sample_stride : width, width,
  1182. height);
  1183. break;
  1184. }
  1185. // TODO(fbarchard): Add M420.
  1186. // Triplanar formats
  1187. case FOURCC_I420:
  1188. case FOURCC_YV12: {
  1189. dst_sample_stride = dst_sample_stride ? dst_sample_stride : width;
  1190. int halfstride = (dst_sample_stride + 1) / 2;
  1191. int halfheight = (height + 1) / 2;
  1192. uint8* dst_u;
  1193. uint8* dst_v;
  1194. if (format == FOURCC_YV12) {
  1195. dst_v = dst_sample + dst_sample_stride * height;
  1196. dst_u = dst_v + halfstride * halfheight;
  1197. } else {
  1198. dst_u = dst_sample + dst_sample_stride * height;
  1199. dst_v = dst_u + halfstride * halfheight;
  1200. }
  1201. r = I420Copy(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1202. dst_sample_stride, dst_u, halfstride, dst_v, halfstride,
  1203. width, height);
  1204. break;
  1205. }
  1206. case FOURCC_I422:
  1207. case FOURCC_YV16: {
  1208. dst_sample_stride = dst_sample_stride ? dst_sample_stride : width;
  1209. int halfstride = (dst_sample_stride + 1) / 2;
  1210. uint8* dst_u;
  1211. uint8* dst_v;
  1212. if (format == FOURCC_YV16) {
  1213. dst_v = dst_sample + dst_sample_stride * height;
  1214. dst_u = dst_v + halfstride * height;
  1215. } else {
  1216. dst_u = dst_sample + dst_sample_stride * height;
  1217. dst_v = dst_u + halfstride * height;
  1218. }
  1219. r = I420ToI422(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1220. dst_sample_stride, dst_u, halfstride, dst_v, halfstride,
  1221. width, height);
  1222. break;
  1223. }
  1224. case FOURCC_I444:
  1225. case FOURCC_YV24: {
  1226. dst_sample_stride = dst_sample_stride ? dst_sample_stride : width;
  1227. uint8* dst_u;
  1228. uint8* dst_v;
  1229. if (format == FOURCC_YV24) {
  1230. dst_v = dst_sample + dst_sample_stride * height;
  1231. dst_u = dst_v + dst_sample_stride * height;
  1232. } else {
  1233. dst_u = dst_sample + dst_sample_stride * height;
  1234. dst_v = dst_u + dst_sample_stride * height;
  1235. }
  1236. r = I420ToI444(y, y_stride, u, u_stride, v, v_stride, dst_sample,
  1237. dst_sample_stride, dst_u, dst_sample_stride, dst_v,
  1238. dst_sample_stride, width, height);
  1239. break;
  1240. }
  1241. // Formats not supported - MJPG, biplanar, some rgb formats.
  1242. default:
  1243. return -1; // unknown fourcc - return failure code.
  1244. }
  1245. return r;
  1246. }
  1247. #ifdef __cplusplus
  1248. } // extern "C"
  1249. } // namespace libyuv
  1250. #endif