remove some useless casts
Originally committed to SVN as r2323.
This commit is contained in:
parent
728b0d0a93
commit
0add56bfa0
1 changed files with 1 additions and 3 deletions
|
@ -207,7 +207,7 @@ void FFmpegSourceVideoProvider::Close() {
|
|||
// Update indexing progress
|
||||
int __stdcall FFmpegSourceVideoProvider::UpdateIndexingProgress(int State, int64_t Current, int64_t Total, void *Private) {
|
||||
IndexingProgressDialog *Progress = (IndexingProgressDialog *)Private;
|
||||
Progress->ProgressDialog->SetProgress(int(Current), int(Total));
|
||||
Progress->ProgressDialog->SetProgress(Current, Total);
|
||||
|
||||
if (Progress->IndexingCanceled) {
|
||||
// Close();
|
||||
|
@ -312,6 +312,4 @@ double FFmpegSourceVideoProvider::GetFPS() {
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
#endif /* WITH_FFMPEGSOURCE */
|
||||
|
|
Loading…
Reference in a new issue