Changes between Initial Version and Version 1 of Ticket #12955
- Timestamp:
- Sep 21, 2021, 11:18:27 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12955 – Description
initial v1 1 1 When a video is playing as part of a room background, it is paused during transitions between room but the sound (correctly, I assume) keeps playing. To compensate, the video speeds up briefly after each transition. This looks strange to me. It would probably be better if it skipped frames instead. Here is a quick-and-dirty experiment to do so: 2 2 3 ``` 3 {{{ 4 4 diff --git a/engines/myst3/movie.cpp b/engines/myst3/movie.cpp 5 5 index bb163e82b8..00eee8832e 100644 … … 15 15 16 16 if (_isLastFrame) { 17 ``` 17 }}} 18 18 19 19 But for one thing it may not be the best way to do so, and for another I'm afraid it would introduce frame skipping where it's not desired. As I said, it's just an experiment to see the difference.