gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_I420 (dest,
+ video_orc_unpack_I420 (dest,
GET_Y_LINE (y), GET_U_LINE (y >> 1), GET_V_LINE (y >> 1), width);
}
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_I420 (GET_Y_LINE (y),
+ video_orc_pack_I420 (GET_Y_LINE (y),
GET_U_LINE (y >> 1), GET_V_LINE (y >> 1), src, width / 2);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_YUY2 (dest, GET_LINE (y), width / 2);
+ video_orc_unpack_YUY2 (dest, GET_LINE (y), width / 2);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_YUY2 (GET_LINE (y), src, width / 2);
+ video_orc_pack_YUY2 (GET_LINE (y), src, width / 2);
}
#define PACK_UYVY GST_VIDEO_FORMAT_AYUV, unpack_UYVY, 1, pack_UYVY
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_UYVY (dest, GET_LINE (y), width / 2);
+ video_orc_unpack_UYVY (dest, GET_LINE (y), width / 2);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_UYVY (GET_LINE (y), src, width / 2);
+ video_orc_pack_UYVY (GET_LINE (y), src, width / 2);
}
#define PACK_YVYU GST_VIDEO_FORMAT_AYUV, unpack_YVYU, 1, pack_YVYU
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_YVYU (dest, GET_LINE (y), width / 2);
+ video_orc_unpack_YVYU (dest, GET_LINE (y), width / 2);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_YVYU (GET_LINE (y), src, width / 2);
+ video_orc_pack_YVYU (GET_LINE (y), src, width / 2);
}
#define PACK_v308 GST_VIDEO_FORMAT_AYUV, unpack_v308, 1, pack_v308
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_YUV9 (dest,
+ video_orc_unpack_YUV9 (dest,
GET_Y_LINE (y), GET_U_LINE (y), GET_V_LINE (y), width / 2);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_Y42B (dest,
+ video_orc_unpack_Y42B (dest,
GET_Y_LINE (y), GET_U_LINE (y), GET_V_LINE (y), width / 2);
}
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_Y42B (GET_Y_LINE (y),
+ video_orc_pack_Y42B (GET_Y_LINE (y),
GET_U_LINE (y), GET_V_LINE (y), src, width / 2);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_Y444 (dest, GET_Y_LINE (y), GET_U_LINE (y),
+ video_orc_unpack_Y444 (dest, GET_Y_LINE (y), GET_U_LINE (y),
GET_V_LINE (y), width);
}
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_Y444 (GET_Y_LINE (y), GET_U_LINE (y), GET_V_LINE (y), src,
+ video_orc_pack_Y444 (GET_Y_LINE (y), GET_U_LINE (y), GET_V_LINE (y), src,
width);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_GRAY8 (dest, GET_LINE (y), width);
+ video_orc_unpack_GRAY8 (dest, GET_LINE (y), width);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_GRAY8 (GET_LINE (y), src, width);
+ video_orc_pack_GRAY8 (GET_LINE (y), src, width);
}
#define PACK_GRAY16_BE GST_VIDEO_FORMAT_AYUV64, unpack_GRAY16_BE, 1, pack_GRAY16_BE
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_BGRA (dest, GET_LINE (y), width);
+ video_orc_unpack_BGRA (dest, GET_LINE (y), width);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_BGRA (GET_LINE (y), src, width);
+ video_orc_pack_BGRA (GET_LINE (y), src, width);
}
#define PACK_ABGR GST_VIDEO_FORMAT_ARGB, unpack_ABGR, 1, pack_ABGR
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_ABGR (dest, GET_LINE (y), width);
+ video_orc_unpack_ABGR (dest, GET_LINE (y), width);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_ABGR (GET_LINE (y), src, width);
+ video_orc_pack_ABGR (GET_LINE (y), src, width);
}
#define PACK_RGBA GST_VIDEO_FORMAT_ARGB, unpack_RGBA, 1, pack_RGBA
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_RGBA (dest, GET_LINE (y), width);
+ video_orc_unpack_RGBA (dest, GET_LINE (y), width);
}
static void
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_RGBA (GET_LINE (y), src, width);
+ video_orc_pack_RGBA (GET_LINE (y), src, width);
}
#define PACK_RGB GST_VIDEO_FORMAT_ARGB, unpack_RGB, 1, pack_RGB
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_NV12 (dest,
+ video_orc_unpack_NV12 (dest,
GET_PLANE_LINE (0, y), GET_PLANE_LINE (1, y >> 1), width / 2);
}
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_NV12 (GET_PLANE_LINE (0, y),
+ video_orc_pack_NV12 (GET_PLANE_LINE (0, y),
GET_PLANE_LINE (1, y >> 1), src, width / 2);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_NV21 (dest,
+ video_orc_unpack_NV21 (dest,
GET_PLANE_LINE (0, y), GET_PLANE_LINE (1, y >> 1), width / 2);
}
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_NV21 (GET_PLANE_LINE (0, y),
+ video_orc_pack_NV21 (GET_PLANE_LINE (0, y),
GET_PLANE_LINE (1, y >> 1), src, width / 2);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_A420 (dest,
+ video_orc_unpack_A420 (dest,
GET_Y_LINE (y), GET_U_LINE (y >> 1), GET_V_LINE (y >> 1), GET_A_LINE (y),
width);
}
const gint stride[GST_VIDEO_MAX_PLANES], GstVideoChromaSite chroma_site,
gint y, gint width)
{
- gst_video_orc_pack_A420 (GET_Y_LINE (y),
+ video_orc_pack_A420 (GET_Y_LINE (y),
GET_U_LINE (y >> 1), GET_V_LINE (y >> 1), GET_A_LINE (y), src, width / 2);
}
gpointer dest, const gpointer data[GST_VIDEO_MAX_PLANES],
const gint stride[GST_VIDEO_MAX_PLANES], gint x, gint y, gint width)
{
- gst_video_orc_unpack_YUV9 (dest,
+ video_orc_unpack_YUV9 (dest,
GET_Y_LINE (y), GET_U_LINE (y >> 2), GET_V_LINE (y >> 2), width / 2);
}
#ifndef DISABLE_ORC
#include <orc/orc.h>
#endif
-void gst_video_orc_blend_little (guint8 * ORC_RESTRICT d1,
+void video_orc_blend_little (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_blend_big (guint8 * ORC_RESTRICT d1,
+void video_orc_blend_big (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, int n);
-void gst_video_orc_pack_I420 (guint8 * ORC_RESTRICT d1,
- guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3,
+void video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+ guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n);
+void video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, int n);
-void gst_video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, int n);
-void gst_video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1,
- guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3,
- const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+ guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n);
+void video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, int n);
-void gst_video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1,
- guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3,
- const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+ guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n);
+void video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1,
+void video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n);
-void gst_video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1,
- guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+ const guint8 * ORC_RESTRICT s1, int n);
+void video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n);
-void gst_video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1,
- guint8 * ORC_RESTRICT d2, const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+ const guint8 * ORC_RESTRICT s1, int n);
+void video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, int n);
-void gst_video_orc_pack_A420 (guint8 * ORC_RESTRICT d1,
- guint8 * ORC_RESTRICT d2, guint8 * ORC_RESTRICT d3,
- guint8 * ORC_RESTRICT d4, const guint8 * ORC_RESTRICT s1, int n);
-void gst_video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1,
+void video_orc_pack_A420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+ guint8 * ORC_RESTRICT d3, guint8 * ORC_RESTRICT d4,
+ const guint8 * ORC_RESTRICT s1, int n);
+void video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int p1, int p2, int n);
-void gst_video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1,
+void video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1,
const orc_uint8 * ORC_RESTRICT s1, const orc_uint8 * ORC_RESTRICT s2,
int p1, int n);
-/* gst_video_orc_blend_little */
+/* video_orc_blend_little */
#ifdef DISABLE_ORC
void
-gst_video_orc_blend_little (guint8 * ORC_RESTRICT d1,
+video_orc_blend_little (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_blend_little (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_blend_little (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_blend_little (guint8 * ORC_RESTRICT d1,
+video_orc_blend_little (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_blend_little");
- orc_program_set_backup_function (p, _backup_gst_video_orc_blend_little);
+ orc_program_set_name (p, "video_orc_blend_little");
+ orc_program_set_backup_function (p, _backup_video_orc_blend_little);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_constant (p, 4, 0x000000ff, "c1");
#endif
-/* gst_video_orc_blend_big */
+/* video_orc_blend_big */
#ifdef DISABLE_ORC
void
-gst_video_orc_blend_big (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_blend_big (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_blend_big (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_blend_big (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_blend_big (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_blend_big (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_blend_big");
- orc_program_set_backup_function (p, _backup_gst_video_orc_blend_big);
+ orc_program_set_name (p, "video_orc_blend_big");
+ orc_program_set_backup_function (p, _backup_video_orc_blend_big);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_constant (p, 4, 0xff000000, "c1");
#endif
-/* gst_video_orc_unpack_I420 */
+/* video_orc_unpack_I420 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_I420 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_I420 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_I420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_I420");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_I420);
+ orc_program_set_name (p, "video_orc_unpack_I420");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_I420);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 1, "s1");
orc_program_add_source (p, 1, "s2");
#endif
-/* gst_video_orc_pack_I420 */
+/* video_orc_pack_I420 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_pack_I420 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_I420 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_I420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_I420");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_I420);
+ orc_program_set_name (p, "video_orc_pack_I420");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_I420);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 1, "d2");
orc_program_add_destination (p, 1, "d3");
#endif
-/* gst_video_orc_unpack_YUY2 */
+/* video_orc_unpack_YUY2 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_YUY2 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_YUY2 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_YUY2");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_YUY2);
+ orc_program_set_name (p, "video_orc_unpack_YUY2");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_YUY2);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_constant (p, 2, 0x000000ff, "c1");
#endif
-/* gst_video_orc_pack_YUY2 */
+/* video_orc_pack_YUY2 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_YUY2 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_YUY2 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_YUY2 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_YUY2");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_YUY2);
+ orc_program_set_name (p, "video_orc_pack_YUY2");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_YUY2);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 8, "s1");
orc_program_add_temporary (p, 2, "t1");
#endif
-/* gst_video_orc_pack_UYVY */
+/* video_orc_pack_UYVY */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_UYVY (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_UYVY (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_UYVY");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_UYVY);
+ orc_program_set_name (p, "video_orc_pack_UYVY");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_UYVY);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 8, "s1");
orc_program_add_temporary (p, 2, "t1");
#endif
-/* gst_video_orc_unpack_UYVY */
+/* video_orc_unpack_UYVY */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_UYVY (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_UYVY (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_UYVY (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_UYVY");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_UYVY);
+ orc_program_set_name (p, "video_orc_unpack_UYVY");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_UYVY);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_constant (p, 2, 0x000000ff, "c1");
#endif
-/* gst_video_orc_unpack_YVYU */
+/* video_orc_unpack_YVYU */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_YVYU (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_YVYU (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_YVYU (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_YVYU");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_YVYU);
+ orc_program_set_name (p, "video_orc_unpack_YVYU");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_YVYU);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_constant (p, 2, 0x000000ff, "c1");
#endif
-/* gst_video_orc_pack_YVYU */
+/* video_orc_pack_YVYU */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_YVYU (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_YVYU (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_YVYU (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_YVYU");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_YVYU);
+ orc_program_set_name (p, "video_orc_pack_YVYU");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_YVYU);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 8, "s1");
orc_program_add_temporary (p, 2, "t1");
#endif
-/* gst_video_orc_unpack_YUV9 */
+/* video_orc_unpack_YUV9 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_YUV9 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_YUV9 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_YUV9 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_YUV9");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_YUV9);
+ orc_program_set_name (p, "video_orc_unpack_YUV9");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_YUV9);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 1, "s2");
#endif
-/* gst_video_orc_unpack_Y42B */
+/* video_orc_unpack_Y42B */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_Y42B (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_Y42B (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_Y42B (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_Y42B");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_Y42B);
+ orc_program_set_name (p, "video_orc_unpack_Y42B");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_Y42B);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 1, "s2");
#endif
-/* gst_video_orc_pack_Y42B */
+/* video_orc_pack_Y42B */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_pack_Y42B (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_Y42B (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_Y42B (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_Y42B");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_Y42B);
+ orc_program_set_name (p, "video_orc_pack_Y42B");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_Y42B);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 1, "d2");
orc_program_add_destination (p, 1, "d3");
#endif
-/* gst_video_orc_unpack_Y444 */
+/* video_orc_unpack_Y444 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_Y444 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_Y444 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, int n)
+video_orc_unpack_Y444 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_Y444");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_Y444);
+ orc_program_set_name (p, "video_orc_unpack_Y444");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_Y444);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 1, "s1");
orc_program_add_source (p, 1, "s2");
#endif
-/* gst_video_orc_pack_Y444 */
+/* video_orc_pack_Y444 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_pack_Y444 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_Y444 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_Y444 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_Y444");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_Y444);
+ orc_program_set_name (p, "video_orc_pack_Y444");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_Y444);
orc_program_add_destination (p, 1, "d1");
orc_program_add_destination (p, 1, "d2");
orc_program_add_destination (p, 1, "d3");
#endif
-/* gst_video_orc_unpack_GRAY8 */
+/* video_orc_unpack_GRAY8 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1,
+video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_unpack_GRAY8 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_GRAY8 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1,
+video_orc_unpack_GRAY8 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_GRAY8");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_GRAY8);
+ orc_program_set_name (p, "video_orc_unpack_GRAY8");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_GRAY8);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 1, "s1");
orc_program_add_constant (p, 1, 0x000000ff, "c1");
#endif
-/* gst_video_orc_pack_GRAY8 */
+/* video_orc_pack_GRAY8 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_int8 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_GRAY8 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_GRAY8 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_GRAY8 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_GRAY8");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_GRAY8);
+ orc_program_set_name (p, "video_orc_pack_GRAY8");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_GRAY8);
orc_program_add_destination (p, 1, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_temporary (p, 2, "t1");
#endif
-/* gst_video_orc_unpack_BGRA */
+/* video_orc_unpack_BGRA */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_BGRA (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_BGRA (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_BGRA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_BGRA");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_BGRA);
+ orc_program_set_name (p, "video_orc_unpack_BGRA");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_BGRA);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
#endif
-/* gst_video_orc_pack_BGRA */
+/* video_orc_pack_BGRA */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_BGRA (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_BGRA (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_BGRA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_BGRA");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_BGRA);
+ orc_program_set_name (p, "video_orc_pack_BGRA");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_BGRA);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
#endif
-/* gst_video_orc_pack_RGBA */
+/* video_orc_pack_RGBA */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_RGBA (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_RGBA (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_RGBA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_RGBA");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_RGBA);
+ orc_program_set_name (p, "video_orc_pack_RGBA");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_RGBA);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_temporary (p, 1, "t1");
#endif
-/* gst_video_orc_unpack_RGBA */
+/* video_orc_unpack_RGBA */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_RGBA (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_RGBA (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_RGBA (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_RGBA");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_RGBA);
+ orc_program_set_name (p, "video_orc_unpack_RGBA");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_RGBA);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_temporary (p, 1, "t1");
#endif
-/* gst_video_orc_unpack_ABGR */
+/* video_orc_unpack_ABGR */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_ABGR (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_ABGR (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_unpack_ABGR (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_ABGR");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_ABGR);
+ orc_program_set_name (p, "video_orc_unpack_ABGR");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_ABGR);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_temporary (p, 1, "t1");
#endif
-/* gst_video_orc_pack_ABGR */
+/* video_orc_pack_ABGR */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_pack_ABGR (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_ABGR (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, int n)
+video_orc_pack_ABGR (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_ABGR");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_ABGR);
+ orc_program_set_name (p, "video_orc_pack_ABGR");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_ABGR);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_temporary (p, 1, "t1");
#endif
-/* gst_video_orc_unpack_NV12 */
+/* video_orc_unpack_NV12 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n)
+video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_NV12 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_NV12 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n)
+video_orc_unpack_NV12 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_NV12");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_NV12);
+ orc_program_set_name (p, "video_orc_unpack_NV12");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_NV12);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_video_orc_pack_NV12 */
+/* video_orc_pack_NV12 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_pack_NV12 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_NV12 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_NV12 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_NV12");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_NV12);
+ orc_program_set_name (p, "video_orc_pack_NV12");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_NV12);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 2, "d2");
orc_program_add_source (p, 8, "s1");
#endif
-/* gst_video_orc_unpack_NV21 */
+/* video_orc_unpack_NV21 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n)
+video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, int n)
{
int i;
orc_union64 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_NV21 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_NV21 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2, int n)
+video_orc_unpack_NV21 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_NV21");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_NV21);
+ orc_program_set_name (p, "video_orc_unpack_NV21");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_NV21);
orc_program_add_destination (p, 8, "d1");
orc_program_add_source (p, 2, "s1");
orc_program_add_source (p, 2, "s2");
#endif
-/* gst_video_orc_pack_NV21 */
+/* video_orc_pack_NV21 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
const guint8 * ORC_RESTRICT s1, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_pack_NV21 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_NV21 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_NV21 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
const guint8 * ORC_RESTRICT s1, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_NV21");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_NV21);
+ orc_program_set_name (p, "video_orc_pack_NV21");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_NV21);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 2, "d2");
orc_program_add_source (p, 8, "s1");
#endif
-/* gst_video_orc_unpack_A420 */
+/* video_orc_unpack_A420 */
#ifdef DISABLE_ORC
void
-gst_video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, int n)
+video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3,
+ const guint8 * ORC_RESTRICT s4, int n)
{
int i;
orc_union32 *ORC_RESTRICT ptr0;
#else
static void
-_backup_gst_video_orc_unpack_A420 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_unpack_A420 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1,
- const guint8 * ORC_RESTRICT s1, const guint8 * ORC_RESTRICT s2,
- const guint8 * ORC_RESTRICT s3, const guint8 * ORC_RESTRICT s4, int n)
+video_orc_unpack_A420 (guint8 * ORC_RESTRICT d1, const guint8 * ORC_RESTRICT s1,
+ const guint8 * ORC_RESTRICT s2, const guint8 * ORC_RESTRICT s3,
+ const guint8 * ORC_RESTRICT s4, int n)
{
OrcExecutor _ex, *ex = &_ex;
static volatile int p_inited = 0;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_unpack_A420");
- orc_program_set_backup_function (p, _backup_gst_video_orc_unpack_A420);
+ orc_program_set_name (p, "video_orc_unpack_A420");
+ orc_program_set_backup_function (p, _backup_video_orc_unpack_A420);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 1, "s1");
orc_program_add_source (p, 1, "s2");
#endif
-/* gst_video_orc_pack_A420 */
+/* video_orc_pack_A420 */
#ifdef DISABLE_ORC
void
-gst_video_orc_pack_A420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_A420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, guint8 * ORC_RESTRICT d4,
const guint8 * ORC_RESTRICT s1, int n)
{
#else
static void
-_backup_gst_video_orc_pack_A420 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_pack_A420 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_pack_A420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
+video_orc_pack_A420 (guint8 * ORC_RESTRICT d1, guint8 * ORC_RESTRICT d2,
guint8 * ORC_RESTRICT d3, guint8 * ORC_RESTRICT d4,
const guint8 * ORC_RESTRICT s1, int n)
{
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_pack_A420");
- orc_program_set_backup_function (p, _backup_gst_video_orc_pack_A420);
+ orc_program_set_name (p, "video_orc_pack_A420");
+ orc_program_set_backup_function (p, _backup_video_orc_pack_A420);
orc_program_add_destination (p, 2, "d1");
orc_program_add_destination (p, 1, "d2");
orc_program_add_destination (p, 1, "d3");
#endif
-/* gst_video_orc_resample_bilinear_u32 */
+/* video_orc_resample_bilinear_u32 */
#ifdef DISABLE_ORC
void
-gst_video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1,
+video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int p1, int p2, int n)
{
int i;
#else
static void
-_backup_gst_video_orc_resample_bilinear_u32 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_resample_bilinear_u32 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1,
+video_orc_resample_bilinear_u32 (guint8 * ORC_RESTRICT d1,
const guint8 * ORC_RESTRICT s1, int p1, int p2, int n)
{
OrcExecutor _ex, *ex = &_ex;
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_resample_bilinear_u32");
+ orc_program_set_name (p, "video_orc_resample_bilinear_u32");
orc_program_set_backup_function (p,
- _backup_gst_video_orc_resample_bilinear_u32);
+ _backup_video_orc_resample_bilinear_u32);
orc_program_add_destination (p, 4, "d1");
orc_program_add_source (p, 4, "s1");
orc_program_add_parameter (p, 4, "p1");
#endif
-/* gst_video_orc_merge_linear_u8 */
+/* video_orc_merge_linear_u8 */
#ifdef DISABLE_ORC
void
-gst_video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1,
+video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1,
const orc_uint8 * ORC_RESTRICT s1, const orc_uint8 * ORC_RESTRICT s2,
int p1, int n)
{
#else
static void
-_backup_gst_video_orc_merge_linear_u8 (OrcExecutor * ORC_RESTRICT ex)
+_backup_video_orc_merge_linear_u8 (OrcExecutor * ORC_RESTRICT ex)
{
int i;
int n = ex->n;
}
void
-gst_video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1,
+video_orc_merge_linear_u8 (orc_uint8 * ORC_RESTRICT d1,
const orc_uint8 * ORC_RESTRICT s1, const orc_uint8 * ORC_RESTRICT s2,
int p1, int n)
{
if (!p_inited) {
p = orc_program_new ();
- orc_program_set_name (p, "gst_video_orc_merge_linear_u8");
- orc_program_set_backup_function (p,
- _backup_gst_video_orc_merge_linear_u8);
+ orc_program_set_name (p, "video_orc_merge_linear_u8");
+ orc_program_set_backup_function (p, _backup_video_orc_merge_linear_u8);
orc_program_add_destination (p, 1, "d1");
orc_program_add_source (p, 1, "s1");
orc_program_add_source (p, 1, "s2");