#ifndef DISABLE_ORC
#include <orc/orc.h>
#endif
-void gst_bayer_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1,
+void bayer_orc_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1,
guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
-void gst_bayer_horiz_upsample (guint8 * ORC_RESTRICT d1,
+void bayer_orc_horiz_upsample (guint8 * ORC_RESTRICT d1,
guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
-void gst_bayer_merge_bg_bgra (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_bg_bgra (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_bgra (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_gr_bgra (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_bg_abgr (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_bg_abgr (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_abgr (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_gr_abgr (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_bg_rgba (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_bg_rgba (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_rgba (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_gr_rgba (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_bg_argb (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_bg_argb (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_argb (guint8 * ORC_RESTRICT d1,
+void bayer_orc_merge_gr_argb (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-/* gst_bayer_horiz_upsample_unaligned */
+/* bayer_orc_horiz_upsample_unaligned */
#ifdef DISABLE_ORC
void
-gst_bayer_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1,
+bayer_orc_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1,
guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_bayer_horiz_upsample_unaligned (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_horiz_upsample_unaligned (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1,
+bayer_orc_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1,
guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_horiz_upsample_unaligned");
+ orc_program_set_name (p, "bayer_orc_horiz_upsample_unaligned");
orc_program_set_backup_function (p,
- _backup_gst_bayer_horiz_upsample_unaligned);
+ _backup_bayer_orc_horiz_upsample_unaligned);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 2, "d2");
orc_program_add_source (p, 2, "s1");
#endif
-/* gst_bayer_horiz_upsample */
+/* bayer_orc_horiz_upsample */
#ifdef DISABLE_ORC
void
-gst_bayer_horiz_upsample (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+bayer_orc_horiz_upsample (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_bayer_horiz_upsample (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_horiz_upsample (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_horiz_upsample (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+bayer_orc_horiz_upsample (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_horiz_upsample");
- orc_program_set_backup_function (p, _backup_gst_bayer_horiz_upsample);
+ orc_program_set_name (p, "bayer_orc_horiz_upsample");
+ orc_program_set_backup_function (p, _backup_bayer_orc_horiz_upsample);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 2, "d2");
orc_program_add_source (p, 2, "s1");
#endif
-/* gst_bayer_merge_bg_bgra */
+/* bayer_orc_merge_bg_bgra */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_bg_bgra (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_bgra (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_bg_bgra (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_bg_bgra (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_bg_bgra (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_bgra (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_bg_bgra");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_bg_bgra);
+ orc_program_set_name (p, "bayer_orc_merge_bg_bgra");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_bg_bgra);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_gr_bgra */
+/* bayer_orc_merge_gr_bgra */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_gr_bgra (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_bgra (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_gr_bgra (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_gr_bgra (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_gr_bgra (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_bgra (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_gr_bgra");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_gr_bgra);
+ orc_program_set_name (p, "bayer_orc_merge_gr_bgra");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_gr_bgra);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_bg_abgr */
+/* bayer_orc_merge_bg_abgr */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_bg_abgr (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_abgr (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_bg_abgr (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_bg_abgr (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_bg_abgr (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_abgr (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_bg_abgr");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_bg_abgr);
+ orc_program_set_name (p, "bayer_orc_merge_bg_abgr");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_bg_abgr);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_gr_abgr */
+/* bayer_orc_merge_gr_abgr */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_gr_abgr (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_abgr (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_gr_abgr (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_gr_abgr (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_gr_abgr (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_abgr (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_gr_abgr");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_gr_abgr);
+ orc_program_set_name (p, "bayer_orc_merge_gr_abgr");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_gr_abgr);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_bg_rgba */
+/* bayer_orc_merge_bg_rgba */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_bg_rgba (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_rgba (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_bg_rgba (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_bg_rgba (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_bg_rgba (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_rgba (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_bg_rgba");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_bg_rgba);
+ orc_program_set_name (p, "bayer_orc_merge_bg_rgba");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_bg_rgba);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_gr_rgba */
+/* bayer_orc_merge_gr_rgba */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_gr_rgba (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_rgba (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_gr_rgba (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_gr_rgba (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_gr_rgba (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_rgba (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_gr_rgba");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_gr_rgba);
+ orc_program_set_name (p, "bayer_orc_merge_gr_rgba");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_gr_rgba);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_bg_argb */
+/* bayer_orc_merge_bg_argb */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_bg_argb (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_argb (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_bg_argb (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_bg_argb (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_bg_argb (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_bg_argb (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_bg_argb");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_bg_argb);
+ orc_program_set_name (p, "bayer_orc_merge_bg_argb");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_bg_argb);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_bayer_merge_gr_argb */
+/* bayer_orc_merge_gr_argb */
#ifdef DISABLE_ORC
void
-gst_bayer_merge_gr_argb (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_argb (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
#else
static void
-_backup_gst_bayer_merge_gr_argb (OrcExecutor * ORC_RESTRICT ex)
+_backup_bayer_orc_merge_gr_argb (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_bayer_merge_gr_argb (guint8 * ORC_RESTRICT d1,
+bayer_orc_merge_gr_argb (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4,
const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n)
OrcProgram *p;
p = orc_program_new ();
- orc_program_set_name (p, "gst_bayer_merge_gr_argb");
- orc_program_set_backup_function (p, _backup_gst_bayer_merge_gr_argb);
+ orc_program_set_name (p, "bayer_orc_merge_gr_argb");
+ orc_program_set_backup_function (p, _backup_bayer_orc_merge_gr_argb);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#define ORC_RESTRICT
#endif
#endif
-void gst_bayer_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
-void gst_bayer_horiz_upsample (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
-void gst_bayer_merge_bg_bgra (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_bgra (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_bg_abgr (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_abgr (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_bg_rgba (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_rgba (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_bg_argb (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
-void gst_bayer_merge_gr_argb (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_horiz_upsample_unaligned (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
+void bayer_orc_horiz_upsample (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
+void bayer_orc_merge_bg_bgra (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_gr_bgra (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_bg_abgr (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_gr_abgr (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_bg_rgba (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_gr_rgba (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_bg_argb (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
+void bayer_orc_merge_gr_argb (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, const guint8 * ORC_RESTRICT s5, const guint8 * ORC_RESTRICT s6, int n);
#ifdef __cplusplus
}