Skip to content

Commit

Permalink
fixed fps rate on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
peak3d committed Jun 3, 2016
1 parent 91a1cd5 commit 64c5d61
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions xbmc/cores/VideoPlayer/DVDDemuxers/DVDDemuxClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,10 @@ void CDVDDemuxClient::RequestStreams()
streamVideo->m_parser->flags |= PARSER_FLAG_COMPLETE_FRAMES;
}

streamVideo->iFpsScale = source->irFpsScale;
streamVideo->iFpsRate = source->irFpsRate;
streamVideo->iFpsScale = source->iFpsScale;
streamVideo->iFpsRate = source->iFpsRate;
streamVideo->irFpsScale = source->irFpsScale;
streamVideo->irFpsRate = source->irFpsRate;
streamVideo->iHeight = source->iHeight;
streamVideo->iWidth = source->iWidth;
streamVideo->fAspect = source->fAspect;
Expand Down

0 comments on commit 64c5d61

Please sign in to comment.