diff options
author | Matthew Waters <matthew@centricular.com> | 2017-03-14 11:39:23 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2017-03-14 11:39:23 +1100 |
commit | b01ae6e5e69bd04763b6b75cc978d0d9874514bc (patch) | |
tree | dd8c5dfce3a4a6bfc50a2addb08658e6c413276c /sys/applemedia | |
parent | 956c4d0bde4d6707ccae2b4ae6dfba8500e55217 (diff) | |
download | gstreamer-plugins-bad-b01ae6e5e69bd04763b6b75cc978d0d9874514bc.tar.gz |
applemedia/iosurfacememory: Fix missing variable name change
956c4d0bde4d6707ccae2b4ae6dfba8500e55217 missed a variable name change.
Fix that.
Diffstat (limited to 'sys/applemedia')
-rw-r--r-- | sys/applemedia/iosurfacememory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/applemedia/iosurfacememory.c b/sys/applemedia/iosurfacememory.c index 18a754301..af5c90e8d 100644 --- a/sys/applemedia/iosurfacememory.c +++ b/sys/applemedia/iosurfacememory.c @@ -196,7 +196,7 @@ gst_io_surface_memory_wrapped (GstGLContext * context, guint plane, GstVideoAlignment * valign, gpointer user_data, GDestroyNotify notify) { - return _io_surface_memory_new (context, surface, target, tex_type, info, + return _io_surface_memory_new (context, surface, target, tex_format, info, plane, valign, user_data, notify); } |