mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
video-converter: Fix compiler warning because of missing prototype of non-static function
video-converter.c:838:1: error: no previous prototype for function '_custom_video_orc_matrix8' [-Werror,-Wmissing-prototypes]
This commit is contained in:
parent
fce946a1a3
commit
406f32a946
1 changed files with 5 additions and 0 deletions
|
@ -374,6 +374,11 @@ gst_line_cache_alloc_line (GstLineCache * cache, gint idx)
|
|||
return res;
|
||||
}
|
||||
|
||||
/* Custom backup functions for ORC */
|
||||
void _custom_video_orc_matrix8 (guint8 * ORC_RESTRICT d1,
|
||||
const guint8 * ORC_RESTRICT s1, orc_int64 p1, orc_int64 p2, orc_int64 p3,
|
||||
orc_int64 p4, int n);
|
||||
|
||||
static void video_converter_generic (GstVideoConverter * convert,
|
||||
const GstVideoFrame * src, GstVideoFrame * dest);
|
||||
static gboolean video_converter_lookup_fastpath (GstVideoConverter * convert);
|
||||
|
|
Loading…
Reference in a new issue