rawvideoparse: remove unused assignment
authorLuis de Bethencourt <luisbg@osg.samsung.com>
Fri, 19 Aug 2016 10:57:33 +0000 (11:57 +0100)
committerLuis de Bethencourt <luisbg@osg.samsung.com>
Fri, 19 Aug 2016 10:57:35 +0000 (11:57 +0100)
Value in last_plane will be overwritten before used, remove unused
asignment.

Fixes commit 91cf5ac69f9c99fe41d60f42b4174915dd135e7b
CID 1371462

gst/rawparse/gstrawvideoparse.c

index 20f3dcf..7e3d2ef 100644 (file)
@@ -1176,7 +1176,6 @@ gst_raw_video_parse_update_info (GstRawVideoParseConfig * config)
   for (i = 0; i < n_planes; ++i) {
     gsize plane_offset = GST_VIDEO_INFO_PLANE_OFFSET (info, i);
     if (plane_offset >= last_plane_offset) {
-      last_plane = i;
       last_plane_offset = plane_offset;
     }
   }