mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
alpha: fix compiler warnings caused by -DG_DISABLE_ASSERT
This commit is contained in:
parent
68fa8f3417
commit
4a7a78dc9e
1 changed files with 5 additions and 5 deletions
|
@ -1425,7 +1425,7 @@ gst_alpha_set_planar_yuv_ayuv (const guint8 * src, guint8 * dest, gint width,
|
|||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
return;
|
||||
}
|
||||
|
||||
if (alpha->in_sdtv == alpha->out_sdtv) {
|
||||
|
@ -1544,7 +1544,7 @@ gst_alpha_chroma_key_planar_yuv_ayuv (const guint8 * src, guint8 * dest,
|
|||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
return;
|
||||
}
|
||||
|
||||
if (alpha->in_sdtv == alpha->out_sdtv) {
|
||||
|
@ -1685,7 +1685,7 @@ gst_alpha_set_planar_yuv_argb (const guint8 * src, guint8 * dest, gint width,
|
|||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
return;
|
||||
}
|
||||
|
||||
memcpy (matrix,
|
||||
|
@ -1793,7 +1793,7 @@ gst_alpha_chroma_key_planar_yuv_argb (const guint8 * src, guint8 * dest,
|
|||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
break;
|
||||
return;
|
||||
}
|
||||
|
||||
memcpy (matrix,
|
||||
|
|
Loading…
Reference in a new issue