Lines Matching refs:mpLastPixbuf
47 mpLastPixbuf( NULL ), in FrameGrabber()
62 if( mpLastPixbuf ) in ~FrameGrabber()
64 g_object_unref( mpLastPixbuf ); in ~FrameGrabber()
65 mpLastPixbuf = NULL; in ~FrameGrabber()
149 if( mpLastPixbuf ) in busCallback()
151 g_object_unref( mpLastPixbuf ); in busCallback()
152 mpLastPixbuf = NULL; in busCallback()
155 … mpLastPixbuf = GDK_PIXBUF( g_value_dup_object( gst_structure_get_value( pStruct, "pixbuf" ) ) ); in busCallback()
205 …OSL_ENSURE( g_atomic_pointer_get( &mpLastPixbuf ), "FrameGrabber timed out without receiving a Pix… in grabFrame()
207 if( g_atomic_pointer_get( &mpLastPixbuf ) ) in grabFrame()
213 const int nWidth = gdk_pixbuf_get_width( mpLastPixbuf ); in grabFrame()
214 const int nHeight = gdk_pixbuf_get_height( mpLastPixbuf ); in grabFrame()
215 const int nChannels = gdk_pixbuf_get_n_channels( mpLastPixbuf ); in grabFrame()
216 const guchar* pBuffer = gdk_pixbuf_get_pixels( mpLastPixbuf ); in grabFrame()
223 if( ( gdk_pixbuf_get_colorspace( mpLastPixbuf ) == GDK_COLORSPACE_RGB ) && in grabFrame()
225 ( gdk_pixbuf_get_bits_per_sample( mpLastPixbuf ) == 8 ) ) in grabFrame()
232 const int nRowStride = gdk_pixbuf_get_rowstride( mpLastPixbuf ); in grabFrame()
268 g_object_unref( mpLastPixbuf ); in grabFrame()
269 mpLastPixbuf = NULL; in grabFrame()