summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorMatthew Waters <ystreet00@gmail.com>2014-06-26 11:25:37 +1000
committerMatthew Waters <ystreet00@gmail.com>2014-06-26 11:25:37 +1000
commitc39105524ae806068f56356d6c581d9448e35ba2 (patch)
treecbe844afcfdb1d57db30836cc7cb5179157115b1 /gst-libs
parenta03dbd11e46a7ce2918f0a558d6cb4bb86499c96 (diff)
downloadgstreamer-plugins-bad-c39105524ae806068f56356d6c581d9448e35ba2.tar.gz
glcolorconvert: free pixel swizzling information
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/gl/gstglcolorconvert.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gst-libs/gst/gl/gstglcolorconvert.c b/gst-libs/gst/gl/gstglcolorconvert.c
index 54d8ef7ad..e05652301 100644
--- a/gst-libs/gst/gl/gstglcolorconvert.c
+++ b/gst-libs/gst/gl/gstglcolorconvert.c
@@ -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 */