Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: vdr-1.3.17: jumping beyond first/last cut mark enablesframe number display



Hi!

Reinhard Nissl wrote:
> if a recording contains cutting marks and one types "7" before the
> first mark respectively "9" after the last one, then no position
> change happens (that's ok) but the frame number is now shown while the
> playback is running just as when moving a cut mark.
> 
> Is this intended behaviour?

This is fixed in the JumpPlay-Patch. Here is the relevant part
excluded from the patch:

 void cReplayControl::MarkJump(bool Forward)
 {
   if (marks.Count()) {
      int Current, Total;
      if (GetIndex(Current, Total)) {
         cMark *m = Forward ? marks.GetNext(Current) :
marks.GetPrev(Current);
-        if (m)
+        if (m) {
            Goto(m->position, true);
+           displayFrames = true;
+           }
         }
-     displayFrames = true;
      }
 }

Tom




Home | Main Index | Thread Index