Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 360a3a90 authored by Kieran Bingham's avatar Kieran Bingham Committed by Mauro Carvalho Chehab
Browse files

[media] uvcvideo: Fix empty packet statistic



The frame counters are inadvertently counting packets with content as
empty.

Fix it by correcting the logic expression

Fixes: 7bc5edb0 [media] uvcvideo: Extract video stream statistics

Signed-off-by: default avatarKieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent f098268b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -818,7 +818,7 @@ static void uvc_video_stats_decode(struct uvc_streaming *stream,

	/* Update the packets counters. */
	stream->stats.frame.nb_packets++;
	if (len > header_size)
	if (len <= header_size)
		stream->stats.frame.nb_empty++;

	if (data[1] & UVC_STREAM_ERR)