aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/avi_surface.h
AgeCommit message (Collapse)Author
2017-09-18TITANIC: Change AVISurface _framePixels from ManagedSurface to boolPaul Gilbert
2017-09-11TITANIC: The hasAudioTiming code was just an isActive flagPaul Gilbert
2017-09-10TITANIC: Created custom stream reader to fix bad y222.avi headerPaul Gilbert
2017-07-31TITANIC: Handle brief freeze if prologue credits are skippedPaul Gilbert
2017-07-27VIDEO: Allow setting the mixer sound type used to play audio tracksBastien Bouclet
2017-07-01TITANIC: Refactor out _isReversed from AVI SurfacePaul Gilbert
2017-06-30TITANIC: Update AVISurface to use refactored AVIDecoderPaul Gilbert
2017-02-16TITANIC: Cleanup of movie flagsPaul Gilbert
2017-01-17TITANIC: Handle -1 frameNumber in AVISurface::addEvent like originalPaul Gilbert
2017-01-15TITANIC: Fix chicken dispensorPaul Gilbert
2016-12-25TITANIC: Fix compiler warningsPaul Gilbert
2016-12-07TITANIC: Further AVISurface fixes for reverse movie playbackPaul Gilbert
2016-11-28TITANIC: Transparency in movie frames now workingPaul Gilbert
Turns out the movie frames didn't need to be 32-bit, it just needed custom copying code to replace transparent pixels with the transparency color, so when blitted to the screen, the pixels aren't drawn.
2016-11-26TITANIC: Add support for 32-bit surfacesPaul Gilbert
Some of the game videos have alpha levels, which are lost if the surfaces are converted to 16-bit. This adds better support for creating 32-bit video surfaces, so the information won't be lost
2016-10-30TITANIC: Support cutscene frame counting beyond end of videoPaul Gilbert
The intro credits cutscene at least, uses an end frame beyond the video as a way of adding an extra delay after the video finishes
2016-10-30TITANIC: Fix playing past very last frame of videosPaul Gilbert
2016-10-26TITANIC: Fix hang when reaching very end of moviesPaul Gilbert
2016-10-22TITANIC: Workaround for Doorbot's 'cloak off' movie playbackPaul Gilbert
The original starts a movie for the Doorbot taking his cloak off, but then plays a cutscene of the doorbot first appearing. Because of this delay, our VideoDecoder wasn't correctly playing the movie after. To fix that, new movies are initially paused when started, and then resumed the first time we try to do events checking for it
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-10-02TITANIC: Fix AVIDecoder to properly handle transparency video tracksPaul Gilbert
2016-10-02TITANIC: Remove track select logic from AVIDecoderPaul Gilbert
2016-09-29TITANIC: Match AVISurface setup and frame rendering closer to originalPaul Gilbert
2016-09-28TITANIC: Clarify movie secondary video tracks as a transparency maskPaul Gilbert
2016-08-31TITANIC: View change animations now partially workingPaul Gilbert
2016-07-23TITANIC: Fixes for movie notification, computer game logic cleanupPaul Gilbert
2016-07-23TITANIC: Fix for movie play ranges that end at the AVI file endPaul Gilbert
2016-07-23TITANIC: Clarification and fixes for movie reverse and repeat flagsPaul Gilbert
2016-07-23TITANIC: Fixes and simplification of AVISurfacePaul Gilbert
2016-07-20TITANIC: Add movie _handled flag, simplify frame timinig codePaul Gilbert
2016-07-18TITANIC: gcc compilation fixesPaul Gilbert
2016-07-17TITANIC: Further implementation of movie frame decodingPaul Gilbert
2016-07-17TITANIC: Making the AVISurface frameInfo a video surfacePaul Gilbert
2016-07-17TITANIC: Change AVISurface to use a separate AVIDecoder for each video trackPaul Gilbert
2016-07-15TITANIC: Named two remaining OSMovie virtual methodsPaul Gilbert
2016-07-15TITANIC: Major implementation of OSMovie and AVISurface classesPaul Gilbert
2016-07-15TITANIC: Beginnings of AVISurface classPaul Gilbert