mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
geometrictransform: Fix build with debugging disabled
Add some ifdefs to prevent build failures due to unused variables
This commit is contained in:
parent
6b8ca06871
commit
6fcbf593b8
2 changed files with 4 additions and 0 deletions
|
@ -74,7 +74,9 @@ static gboolean
|
|||
fisheye_map (GstGeometricTransform * gt, gint x, gint y, gdouble * in_x,
|
||||
gdouble * in_y)
|
||||
{
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
GstFisheye *fisheye = GST_FISHEYE_CAST (gt);
|
||||
#endif
|
||||
gdouble norm_x;
|
||||
gdouble norm_y;
|
||||
gdouble r;
|
||||
|
|
|
@ -82,7 +82,9 @@ tunnel_map (GstGeometricTransform * gt, gint x, gint y, gdouble * in_x,
|
|||
gdouble * in_y)
|
||||
{
|
||||
GstCircleGeometricTransform *cgt = GST_CIRCLE_GEOMETRIC_TRANSFORM_CAST (gt);
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
GstTunnel *tunnel = GST_TUNNEL_CAST (gt);
|
||||
#endif
|
||||
|
||||
gdouble norm_x, norm_y;
|
||||
gdouble width = gt->width;
|
||||
|
|
Loading…
Reference in a new issue