Skip to content

Commit

Permalink
fixed: don't accept droppped frames for thumbnail extraction
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@33771 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
elupus committed Sep 14, 2010
1 parent fd1d179 commit d761705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/dvdplayer/DVDFileInfo.cpp
Expand Up @@ -197,7 +197,7 @@ bool CDVDFileInfo::ExtractThumb(const CStdString &strPath, const CStdString &str

} while (abort_index--);

if (iDecoderState & VC_PICTURE)
if (iDecoderState & VC_PICTURE && !(picture.iFlags & DVP_FLAG_DROPPED))
{
{
int nWidth = g_advancedSettings.m_thumbSize;
Expand Down

0 comments on commit d761705

Please sign in to comment.