﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	mlocked
851	NuppelVideoPlayer::FrameIsInMap always returns true if breakMap is not empty	anonymous	Isaac Richards	"NuppelVideoPlayer::FrameIsInMap always returns true if breakMap is not empty. The result is that the thumbnail preview images always are generated from near the end of the recording.

This patch works for me.
{{{
Index: libs/libmythtv/NuppelVideoPlayer.cpp
===================================================================
--- libs/libmythtv/NuppelVideoPlayer.cpp        (revision 8336)
+++ libs/libmythtv/NuppelVideoPlayer.cpp        (working copy)
@@ -3790,6 +3790,10 @@
                 ((lastType == MARK_COMM_START) ||
                  (lastType == MARK_CUT_START)))
                 return true;
+            
+            if ((type == MARK_COMM_START) ||
+                 (type == MARK_CUT_START))
+                return false;
         }
 
         lastType = it.data();

}}}
"	defect	closed	minor	unknown	mythtv		medium	fixed			0
