Merge pull request #346 from jeffski/fix-text-24hr-memory-issue

Reduce duration of Image/Text Readers to 1 hour (#327)
This commit is contained in:
Frank Dana
2019-10-25 13:57:31 -04:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -123,7 +123,7 @@ void QtImageReader::Open()
info.height = image->height();
info.pixel_ratio.num = 1;
info.pixel_ratio.den = 1;
info.duration = 60 * 60 * 24; // 24 hour duration
info.duration = 60 * 60 * 1; // 1 hour duration
info.fps.num = 30;
info.fps.den = 1;
info.video_timebase.num = 1;