aboutsummaryrefslogtreecommitdiff
path: root/video
AgeCommit message (Collapse)Author
2012-08-16VIDEO: Begin removing some of the deprecated functions from VideoDecoderMatthew Hoops
2012-08-16VIDEO: Remove the Coktel video code from using the VideoDecoder APIMatthew Hoops
After discussing with DrMcCoy, we felt this the best way to proceed. A wrapper class that implements AdvancedVideoDecoder is still around for use in SCI.
2012-08-13VIDEO: Convert TheoraDecoder to the new AdvancedVideoDecoder APIMatthew Hoops
2012-08-12VIDEO: Move TheoraDecoder to video/Matthew Hoops
2012-08-12VIDEO: Convert FlicDecoder to the new AdvancedVideoDecoder APIMatthew Hoops
The video no longer automatically loops (unused in-tree) and must have rewind() called manually
2012-08-12VIDEO: Don't allow adding external stream files to unopened videosMatthew Hoops
2012-08-12VIDEO: Add set/getStopTime functions to AdvancedVideoDecoderMatthew Hoops
A video can now be stopped at a requested time
2012-08-07VIDEO: Fix getTime() when a video is not playingMatthew Hoops
2012-07-29VIDEO: Move Track's start()/stop() functions to AudioTrackMatthew Hoops
2012-07-27VIDEO: Remove now unused Rewindable and Seekable classesMatthew Hoops
2012-07-27VIDEO: Adapt QuickTimeDecoder to the AdvancedVideoDecoder APIMatthew Hoops
2012-07-27VIDEO: Add functions for getting TrackList iterators internallyMatthew Hoops
2012-07-27VIDEO: Cleanup AdvancedVideoDecoderMatthew Hoops
2012-07-27VIDEO: Remove Track::getStartTime()Matthew Hoops
That should be handled internally instead
2012-07-26VIDEO: Reset pause time when seeking/rewindingMatthew Hoops
2012-07-26VIDEO: Force an update after a seekMatthew Hoops
2012-07-26VIDEO: Document more of AdvancedVideoDecoderMatthew Hoops
2012-07-26VIDEO: Move findNextVideoTrack() to protectedMatthew Hoops
2012-07-26VIDEO: Ignore finished video tracks in findNextVideoTrack()Matthew Hoops
2012-07-25VIDEO: Convert Bink to the new AdvancedVideoDecoder APIMatthew Hoops
2012-07-25VIDEO: Add functions for default high color PixelFormatMatthew Hoops
To be used by video that converts from YUV to RGB
2012-07-25VIDEO: Add internal helper function for checking on video track end statusMatthew Hoops
2012-07-25VIDEO: Stop and restart tracks when seeking/rewindingMatthew Hoops
2012-07-24VIDEO: Convert DXADecoder to the AdvancedVideoDecoder APIMatthew Hoops
2012-07-24VIDEO: Add helper functions to easily add an external audio trackMatthew Hoops
2012-07-23VIDEO: Rewrite SmackerDecoder to use the new APIMatthew Hoops
2012-07-23VIDEO: Set _startTime when rewinding and seekingMatthew Hoops
2012-07-22VIDEO: Rewrite the AVI code to use AdvancedVideoDecoderMatthew Hoops
In addition to using the new API, it should theoretically support multiple audio and video tracks now but that has not been tested.
2012-07-22VIDEO: Merge the three Fixed* VideoTrack classesMatthew Hoops
Avoids diamond inheritance, which makes it impossible to downcast without rtti
2012-07-22VIDEO: Hold tracks in an Array instead of a ListMatthew Hoops
Decoders such as AVI will need to access them by index
2012-07-22VIDEO: Take audio start time into account when syncing to audioMatthew Hoops
2012-07-22VIDEO: Make seek/rewind functions in AdvancedVideoDecoder virtualMatthew Hoops
This is to allow for seeking in videos where not everything is indexed
2012-07-21VIDEO: Add StreamFileAudioTrack wrapperMatthew Hoops
2012-07-21VIDEO: Don't try to sync video off of finished audio tracksMatthew Hoops
2012-07-21VIDEO: Move PSXStreamDecoder to the new VideoDecoder APIMatthew Hoops
2012-07-21VIDEO: Fix AudioTrack::endOfTrack()Matthew Hoops
2012-07-21VIDEO: Allow for disabling of automatic audio sync in AdvancedVideoDecoderMatthew Hoops
2012-07-21VIDEO: Fix volume/balance settings in AdvancedVideoDecoderMatthew Hoops
2012-07-21VIDEO: When adding tracks, keep them in sync with the main video statusMatthew Hoops
2012-07-21VIDEO: Add getDuration() and getStartTime() functions to TrackMatthew Hoops
The AdvancedVideoDecoder::getDuration() function now attempts to calculate duration based on the longest track.
2012-07-21VIDEO: Add getWidth()/getHeight()/getPixelFormat() functions to VideoTrackMatthew Hoops
The default implementations of those functions in AdvancedVideoDecoder now call into them.
2012-07-20VIDEO: Add first draft of the new VideoDecoder APIMatthew Hoops
It is currently named "AdvancedVideoDecoder" until all current VideoDecoders are converted to the new API.
2012-06-12VIDEO: Make rpza decode to its own pixel formatMatthew Hoops
2012-06-11VIDEO: Cleanup QTRLEMatthew Hoops
In particular, the colors are not converted to the screen format upon decoding. The code should also now work with 32bpp screen formats.
2012-06-07GOB: Add a way to reopen currently opened IMD/VMD videosSven Hesse
This is a workaround for how Lost in Time behaves in combination with changes I made to the DataIO code for running Urban Runner on low-memory devices. Urban Runner's intro are far to big to have them copied into memory for these devices, so I made the DataIO code return a SafeSeekableSubReadStream into the opened archive stream instead. Unfortunately, Lost in Time might not close a video file when it closes the data file which it was originally in, especially when loading a saved game. Since the video player needs to be able to gaplessly continue a video and there does not, by itself, close the video if not requested by the scripts, this leads to reading out of an already closed stream in certain cases. So, to worka round this issues, the video player tries to reopen each currently opened video after a data archive was closed, to make sure that that video is still available. If not, the video is closed.
2012-05-28VIDEO: Add volume/balance control to VideoDecoderMatthew Hoops
2012-05-12VIDEO: Make seekToTime() take a const Timestamp referenceMatthew Hoops
2012-05-12VIDEO: Change getElapsedTime() into getTime()Matthew Hoops
This name change accompanies a slight meaning change; now it means the current time position from the beginning of the video and not from starting the video.
2012-05-12VIDEO: Update seekToTime() comments to require subframe accuracy nowMatthew Hoops
2012-04-15VIDEO: Create the QuickTime scaled surface after reading in a frameMatthew Hoops
Fixes issues where the codec hasn't been initialized