Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-21 | VIDEO: QT: Make sure all the edits are in the media bounds | Bastien Bouclet | |
In the Spanish version of Riven, the last edit of the video ogk.mov ends one frame after the end of the media causing the playback to fail without this check. Fixes Trac#10633. | |||
2018-07-20 | VIDEO: Warn instead of error when unhandled TXTS stream found in AVI | Eric Fry | |
2018-06-29 | VIDEO: fix seeking to first/second frame if it exceeds uint16 | Andrei Prykhodko | |
2018-06-29 | VIDEO: Fix seeking the the last frame of QT videos while playing backwards | Bastien Bouclet | |
Fixes Trac#10590. | |||
2018-06-15 | VIDEO: fix rewinding of FLIC files | whiterandrek | |
2018-05-17 | VIDEO: Add PRINCE to list of engines using the FLIC decoder | Adrian Frühwirth | |
2018-05-17 | VIDEO: FLIC: Fix decoding of BYTE_RUN/FLI_BRUN chunks | whiterandrek | |
Our decoder currently only supports the standard FLC format which does not rely on the stored packet count (which is part of the FLI format and limited to 255 packets per line). Instead, the image width should be used as criterion when decoding a frame which allows for more than 255 packets per line. See also https://www.compuphase.com/flic.htm | |||
2018-04-19 | JANITORIAL: Fix whitespace | Adrian Frühwirth | |
2017-11-02 | VIDEO: Express VideoDecoder::endOfVideo using easier to understand logic | Bastien Bouclet | |
2017-10-08 | VIDEO: BINK: Fix plane data clobbering caused by incorrect pitch value | Bastien Bouclet | |
When decoding blocks, the YUV planes' pitches were computed using the target video surface size instead of the block based size, resulting in decoded plane data being overwritten for some video sizes. Affected videos are LEOS-11102.bik and LEOS-11152.bik from Myst III. | |||
2017-09-21 | VIDEO: Change QT edit list to a Common::Array | Bastien Bouclet | |
And fix an out of bounds acces when seeking to the end of a video. Skipping samples is needed even when seeking through silent edits because a silent stream is queued for those. Fixes #10219. | |||
2017-09-11 | JANITORIAL: Silence GCC 7 warnings | Torbjörn Andersson | |
These fall throughs have to be deliberate, or they wouldn't have to check if mode equals 2 in the mode == 2 cases. | |||
2017-09-04 | VIDEO: Fix reverse playback right to the very start of the video | Paul Gilbert | |
2017-09-03 | VIDEO: Simplify AVIDecoder reverse playback special handling | Paul Gilbert | |
2017-09-03 | VIDEO: Fix reverse playback in AVIDecoder | Paul Gilbert | |
2017-08-24 | VIDEO: Use new BitStreamMemory class for PSXStreamDecoder | Willem Jan Palenstijn | |
2017-08-24 | VIDEO: Use new BitStreamMemory class for SmackerDecoder | Willem Jan Palenstijn | |
2017-08-24 | COMMON: Remove BitStream base class to allow inlining calls | Willem Jan Palenstijn | |
All users of BitStream were in fact using a specific, hardcoded variant, so we can hardcode that variant, removing the need for virtual calls, and enabling inlining. | |||
2017-08-20 | VIDEO: Support old-style stereo in VMDs | Colin Snover | |
This format is used by the stereo audio VMDs in Lighthouse. | |||
2017-07-27 | VIDEO: Allow setting the mixer sound type used to play audio tracks | Bastien Bouclet | |
2017-07-22 | VIDEO: Fix AVIDecoder skipping alternate frames in reverse playback | Paul Gilbert | |
2017-06-30 | VIDEO: Refactor AVIDecoder for better handling of transparency track | Paul Gilbert | |
A lot of the standard VideoDecoder methods were still treating the transparency track as part of the video, so methods like getFrameCount would return double the amount it should be. This refactoring properly separates the transparency track into a separate field entirely. | |||
2017-06-30 | VIDEO: Add method to VideoDecoder to erase a track | Paul Gilbert | |
2017-06-25 | VIDEO: Fix transparency track seeking in AVIDecoder | Paul Gilbert | |
2017-06-17 | VIDEO: Wrap out-of-range VMD audio samples instead of clipping | Colin Snover | |
The 16-bit DPCM decompressors in SSCI and Urban Runner use a 16-bit register to store sample data, without any special handling of overflow. As such, out-of-range samples simply wrap around, rather than getting clipped. It is not totally clear if the wrapping behaviour was intentionally exploited to handle extreme transients, but in any case, videos like GK2 5280.VMD that generate samples outside the signed 16-bit range cause a loud pop when using clipping, but play back correctly when wrapping. | |||
2017-04-29 | VIDEO: Unexpose audio sync API in AdvancedVMDDecoder | Colin Snover | |
This change was inadvertently added in commit 44dd029cb17160316b2015321a0a53f8854b6dd3 but is not actually used. | |||
2017-01-11 | IMAGE: Return correct pixel format for Indeo3 | Colin Snover | |
This gives Indeo3 the same behavior as other codecs when encapsulated in a container that provides bit depth information (e.g. AVI). Closes #888. | |||
2017-01-10 | VIDEO: Fix Two Further Signed vs. Unsigned Compiler Warnings. | D G Turner | |
2016-12-29 | VIDEO: Further work on 2-track AVI videos | Paul Gilbert | |
It turns out that at least one video in Starship Titanic, for the Lift Indicator, has only a single transparency frame in track 2. The added code, therefore, when it doesn't find an index entry for the desired frame number, works backwards until it finds a valid frame (likely frame 0), and then scans forward. If it hits the end of the video, then it simply uses whatever last frame it last decoded. | |||
2016-12-29 | VIDEO: Add support for AVI 2-track videos with missing track 2 indexes | Paul Gilbert | |
2016-12-05 | VIDEO: Add reverse playback support to AviDecoder | Paul Gilbert | |
2016-10-18 | VIDEO: Fix an off-by-one check in VideoDecoder::getTrack | Bastien Bouclet | |
2016-10-15 | Merge pull request #838 from bluegr/chewy | Eugene Sandulenko | |
Chewy: Esc from F5. New WIP engine. | |||
2016-10-12 | VIDEO: Support rewind on AVI files with multiple video tracks | Paul Gilbert | |
2016-10-11 | VIDEO: Fix video playback for zvision AVI videos | Paul Gilbert | |
2016-10-06 | VIDEO: Expose the bitCount of AVIVideoTrack bitmap headers | Paul Gilbert | |
2016-10-03 | VIDEO: Simplify AVIDecoder index handling for second video track | Paul Gilbert | |
2016-10-02 | VIDEO: Implement seeking for AVI videos with a transparency video track | Paul Gilbert | |
2016-10-03 | VIDEO: Allow parts of the FLIC decoder to be overriden by child classes | Filippos Karapetis | |
This is needed by the specialized FLIC video decoder used in the chewy engine | |||
2016-10-02 | TITANIC: Fix AVIDecoder to properly handle transparency video tracks | Paul Gilbert | |
2016-10-02 | TITANIC: Remove track select logic from AVIDecoder | Paul Gilbert | |
2016-09-29 | SCI32: Implement kSetHotRectangles | Colin Snover | |
Used only by chapter 7 of Phant1. | |||
2016-09-10 | COMMON: Converted Common::BitStream to use DisposeAfterUse | Paul Gilbert | |
2016-09-03 | JANITORIAL: Make GPL headers uniform | Eugene Sandulenko | |
2016-08-01 | Merge pull request #786 from dreammaster/titanic | Eugene Sandulenko | |
TITANIC: Starship Titanic engine | |||
2016-07-25 | VIDEO: Hid verbose debug output deeper | Eugene Sandulenko | |
2016-07-17 | VIDEO: Add titanic to list of engines using AVIDecoder | Paul Gilbert | |
2016-07-17 | VIDEO: Handle STRN chunks in AVI file streams to set stream name | Paul Gilbert | |
2016-07-17 | VIDEO: Add support for a track filtering callback function | Paul Gilbert | |
This is needed for Starship Titanic, where videos can have a secondary video track. It was simpler to use the callback as a means to select one video track each across two decoders than trying to make VideoDecoder and/or AVIDecoder support decoding from multiple video tracks simultaneously | |||
2016-07-15 | VIDEO: Respect RIFF filesize field when decoding AVI files | Paul Gilbert | |
Starship Titanic in particular needs this, since some of the videos have extra junk at the end of the file, such as ycursors.avi, and parsing fails if we don't respect the filesize field |