mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
osxvideosink: fix unused-but-set-variable warning
../sys/osxvideo/osxvideosink.m:859:11: error: variable 'data' set but not used [-Werror,-Wunused-but-set-variable] guint8 *data, *readp, *writep; ^ Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2040>
This commit is contained in:
parent
b351da5e83
commit
aa6c674dd8
1 changed files with 2 additions and 2 deletions
|
@ -856,7 +856,7 @@ gst_osx_video_sink_get_type (void)
|
|||
- (void) showFrame: (GstBufferObject *) object
|
||||
{
|
||||
GstVideoFrame frame;
|
||||
guint8 *data, *readp, *writep;
|
||||
guint8 *readp, *writep;
|
||||
gint i, active_width, stride;
|
||||
guint8 *texture_buffer;
|
||||
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||||
|
@ -873,7 +873,7 @@ gst_osx_video_sink_get_type (void)
|
|||
if (!gst_video_frame_map (&frame, &osxvideosink->info, buf, GST_MAP_READ))
|
||||
goto no_map;
|
||||
|
||||
data = readp = GST_VIDEO_FRAME_PLANE_DATA (&frame, 0);
|
||||
readp = GST_VIDEO_FRAME_PLANE_DATA (&frame, 0);
|
||||
stride = GST_VIDEO_FRAME_PLANE_STRIDE (&frame, 0);
|
||||
writep = texture_buffer;
|
||||
active_width = GST_VIDEO_SINK_WIDTH (osxvideosink) * sizeof (short);
|
||||
|
|
Loading…
Reference in a new issue