mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
corevideotexturecache: free texture cache on iOS
https://bugzilla.gnome.org/show_bug.cgi?id=748122
This commit is contained in:
parent
472d1959a2
commit
c98eb6f2f5
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ gst_core_video_texture_cache_free (GstCoreVideoTextureCache * cache)
|
||||||
#if !HAVE_IOS
|
#if !HAVE_IOS
|
||||||
CVOpenGLTextureCacheRelease (cache->cache);
|
CVOpenGLTextureCacheRelease (cache->cache);
|
||||||
#else
|
#else
|
||||||
/* FIXME: how do we release ->cache ? */
|
CFRelease (cache->cache); /* iOS has no "CVOpenGLESTextureCacheRelease" */
|
||||||
#endif
|
#endif
|
||||||
gst_object_unref (cache->convert);
|
gst_object_unref (cache->convert);
|
||||||
gst_object_unref (cache->ctx);
|
gst_object_unref (cache->ctx);
|
||||||
|
|
Loading…
Reference in a new issue