aboutsummaryrefslogtreecommitdiff
path: root/video/avi_decoder.cpp
AgeCommit message (Collapse)Author
2018-07-20VIDEO: Warn instead of error when unhandled TXTS stream found in AVIEric Fry
2017-09-04VIDEO: Fix reverse playback right to the very start of the videoPaul Gilbert
2017-09-03VIDEO: Simplify AVIDecoder reverse playback special handlingPaul Gilbert
2017-09-03VIDEO: Fix reverse playback in AVIDecoderPaul Gilbert
2017-07-27VIDEO: Allow setting the mixer sound type used to play audio tracksBastien Bouclet
2017-07-22VIDEO: Fix AVIDecoder skipping alternate frames in reverse playbackPaul Gilbert
2017-06-30VIDEO: Refactor AVIDecoder for better handling of transparency trackPaul 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-25VIDEO: Fix transparency track seeking in AVIDecoderPaul Gilbert
2017-01-10VIDEO: Fix Two Further Signed vs. Unsigned Compiler Warnings.D G Turner
2016-12-29VIDEO: Further work on 2-track AVI videosPaul 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-29VIDEO: Add support for AVI 2-track videos with missing track 2 indexesPaul Gilbert
2016-12-05VIDEO: Add reverse playback support to AviDecoderPaul Gilbert
2016-10-12VIDEO: Support rewind on AVI files with multiple video tracksPaul Gilbert
2016-10-11VIDEO: Fix video playback for zvision AVI videosPaul Gilbert
2016-10-03VIDEO: Simplify AVIDecoder index handling for second video trackPaul Gilbert
2016-10-02VIDEO: Implement seeking for AVI videos with a transparency video trackPaul Gilbert
2016-10-02TITANIC: Fix AVIDecoder to properly handle transparency video tracksPaul Gilbert
2016-10-02TITANIC: Remove track select logic from AVIDecoderPaul Gilbert
2016-08-01Merge pull request #786 from dreammaster/titanicEugene Sandulenko
TITANIC: Starship Titanic engine
2016-07-25VIDEO: Hid verbose debug output deeperEugene Sandulenko
2016-07-17VIDEO: Handle STRN chunks in AVI file streams to set stream namePaul Gilbert
2016-07-17VIDEO: Add support for a track filtering callback functionPaul 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-15VIDEO: Respect RIFF filesize field when decoding AVI filesPaul 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
2015-08-30VIDEO: Switch to all packetized streams for AVIMatthew Hoops
ZVision does not currently, but that's OK
2015-08-30VIDEO: Add support for MP3 in AVIMatthew Hoops
2015-04-11IMAGE: Allow for choosing dither typeMatthew Hoops
2015-04-11VIDEO: Allow AVI tracks to be dithered via the CodecMatthew Hoops
Video for Windows made the Codec do the dithering work
2014-11-02VIDEO: Separate AVI video and audio track readingMatthew Hoops
Relying on the videos to have 'initial frames' for audio tracks is not the best way to handle AVI videos. Now videos without initial frames (or broken interleaving) will buffer properly.
2014-10-28VIDEO: Remove trailing whitespaceFilippos Karapetis
2014-09-28VIDEO: Fix seeking in AVI videos with no initial audio framesMatthew Hoops
2014-06-08AUDIO: Added stup for MP3 audiostreams in AVIEugene Sandulenko
This is used in German release of Full Pipe. Unfortunately our current MP3 decoder cannot work with streamed MP3s, and bails out at the AVI header since there is no full MP3 header yet.
2014-05-27VIDEO: Document PRMI as being Premiere metadataMatthew Hoops
2014-05-27VIDEO: Handle Truemotion dimensions speciallyMatthew Hoops
Truemotion uses its own demuxer and seems to follow its own AVI rules. Work around it by coercing the video's dimensions to use the codec's internal dimensions.
2014-03-02VIDEO: Handle the raw AVI video chunk the same as the othersMatthew Hoops
2014-02-28IMAGE: Share the same pool of codecs between bitmap and AVIMatthew Hoops
2014-02-28VIDEO: Use the bitmap header compression field for AVI codecsMatthew Hoops
2014-02-28IMAGE: Make Codec take a stream reference; change function name to decodeFrameMatthew Hoops
2014-02-28IMAGE: Move video codecs to image/Matthew Hoops
2014-02-18VIDEO: Make GPL headers consistent in themselves.Johannes Schickel
2014-02-07VIDEO: Add additional FourCC appearing in some Zvision engine game versionsEugene Sandulenko
2014-01-17VIDEO: Add MJPEG supportMatthew Hoops
2014-01-11VIDEO: Improve support for multiple AVI audio tracksMatthew Hoops
2014-01-05VIDEO: Handle the AVI 'JUNQ' and 'dmlh' chunk headersFilippos Karapetis
These are used by Full Pipe's intro videos
2013-11-25VIDEO: Ensure debug output of the first AVI indexMatthew Hoops
2013-11-25VIDEO: Handle prematurely ending AVI videosMatthew Hoops
2013-11-25VIDEO: Ignore AVI strn metadataMatthew Hoops
2013-11-23VIDEO: Fix awful thinko from 55791d5fc1Matthew Hoops
2013-11-23VIDEO: Fix AVI indexes with absolute offsetsMatthew Hoops
2013-09-24Merge branch 'master' into zvisionWillem Jan Palenstijn
Conflicts: video/avi_decoder.cpp
2013-08-28VIDEO: Add support for seeking in AVI videos with an indexMatthew Hoops
Rewinding will work in any AVI video