mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
glcolorconvert: free pixel swizzling information
This commit is contained in:
parent
a03dbd11e4
commit
c39105524a
1 changed files with 4 additions and 0 deletions
|
@ -680,6 +680,7 @@ _RGB_to_RGB (GstGLColorConvert * convert)
|
|||
info->shader_tex_names[0] = "tex";
|
||||
|
||||
g_free (alpha);
|
||||
g_free (pixel_order);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -874,6 +875,7 @@ _RGB_to_GRAY (GstGLColorConvert * convert)
|
|||
}
|
||||
|
||||
g_free (alpha);
|
||||
g_free (pixel_order);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -913,6 +915,8 @@ _GRAY_to_RGB (GstGLColorConvert * convert)
|
|||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
g_free (pixel_order);
|
||||
}
|
||||
|
||||
/* Called in the gl thread */
|
||||
|
|
Loading…
Reference in a new issue