From: Master T Date: Thu, 18 Sep 2014 09:45:39 +0000 (+0200) Subject: MapInfo: add DataPtr so the mapped Data can be accessed without copying X-Git-Tag: 1.19.3~483^2~149 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=529cd84a9f8aeae49db8317780e83a8d157da6f0;p=platform%2Fupstream%2Fgstreamer.git MapInfo: add DataPtr so the mapped Data can be accessed without copying --- diff --git a/sources/custom/MapInfo.cs b/sources/custom/MapInfo.cs index b9fa4a8930..49af97fd0f 100644 --- a/sources/custom/MapInfo.cs +++ b/sources/custom/MapInfo.cs @@ -38,5 +38,10 @@ namespace Gst { } } + public IntPtr DataPtr { + get { + return _data; + } + } } }