]> git.sesse.net Git - vlc/blobdiff - modules/arm_neon/chroma_neon.h
Implement plugin support for OS/2
[vlc] / modules / arm_neon / chroma_neon.h
index 40bfbcc5c79a498c93a66f91cd63825fc44a6036..204c5f1e5f5789b4975de2d6bed9a866570ba192 100644 (file)
@@ -46,3 +46,21 @@ void i420_yuyv_neon (struct yuv_pack *const out,
 void i420_uyvy_neon (struct yuv_pack *const out,
                      const struct yuv_planes *const in,
                      int width, int height);
+
+/* I422 to YUYV conversion. */
+void i422_yuyv_neon (struct yuv_pack *const out,
+                     const struct yuv_planes *const in,
+                     int width, int height);
+
+/* I422 to UYVY conversion. */
+void i422_uyvy_neon (struct yuv_pack *const out,
+                     const struct yuv_planes *const in,
+                     int width, int height);
+
+/* YUYV to I422 conversion. */
+void yuyv_i422_neon (struct yuv_planes *const out,
+                     const struct yuv_pack *const in, int width, int height);
+
+/* UYVY to I422 conversion. */
+void uyvy_i422_neon (struct yuv_planes *const out,
+                     const struct yuv_pack *const in, int width, int height);