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