Changeset a6b1e3a72 in mythtv


Ignore:
Timestamp:
Feb 29, 2012, 8:51:47 PM (12 years ago)
Author:
Jim Stichnoth <jstichnoth@…>
Branches:
devel/2020-player, devel/ffmpeg-resync, devel/gpu-commflag, fixes/0.25, fixes/0.26, fixes/0.27, fixes/0.28, fixes/29, fixes/30, fixes/31, github-templates, master
Children:
4a2420ed1
Parents:
97da8c8a0
git-author:
Jim Stichnoth <jstichnoth@…> (02/29/12 20:51:47)
git-committer:
Jim Stichnoth <jstichnoth@…> (02/29/12 20:58:33)
Message:

Program editor: don't seek too far when stepping to the next keyframe.

Fixes #10389. When stepping to the next keyframe to the right, some
old code causes it to skip over the next keyframe if it is too close.
This code seems unnecessary, but it is left there for now (commented
out) in case a valid reason is discovered.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mythtv/libs/libmythtv/mythplayer.cpp

    r97da8c8a0 ra6b1e3a72  
    39763976        if (right)
    39773977        {
     3978#if 0
     3979            // 2012-02-29.  This logic doesn't seem to make sense for
     3980            // the current code.  Clean it out later if no one raises
     3981            // an issue with the replacement code.  Refs #10389.
     3982
    39783983            // editKeyFrameDist is a workaround for when keyframe distance
    39793984            // is set to one, and keyframe detection is disabled because
     
    39823987
    39833988            DoFastForward((long long)(editKeyFrameDist * 1.1), true, false);
     3989#endif // 0
     3990            DoFastForward(2, true, false);
    39843991        }
    39853992        else
Note: See TracChangeset for help on using the changeset viewer.