aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-13AUDIO: Clean up QDM2 getVlc2() function.D G Turner
2012-04-13AUDIO: Initial Refactoring of QDM2 to use Common::BitStream.D G Turner
This removes the internal getBitContext bitwise reading code and replaces with Common::BitStream. However, this breaks the codec as in one location, the internal buffer of getBitContext reader is used and this can't be directly replaced. This will need to be understood and rewritten.
2012-04-13VIDEO: Fix SMK 16bit audio on BE systemsSven Hesse
2012-04-10AUDIO: Force QuickTime stereo samples to mono if neededMatthew Hoops
The number of channels in AAC can differ from the actual number of channels needed making us require this. The channel count inside the container is always the correct one.
2012-04-08GRAPHICS: Add comments on which engines use the decodersMatthew Hoops
2012-04-08VIDEO: Clean up the SVQ1 codeMatthew Hoops
2012-04-08MOHAWK: Enable the SVQ1 intro for Myst ME MacMatthew Hoops
2012-04-08VIDEO: Minor update to SVQ1 decoder, reversing sense of return flags.D G Turner
This changes the decoder function return flag meaning from "result error" to "resultValid". This makes it more consistent with normal C standard of returning 0 on success.
2012-04-08VIDEO: Fix SVQ1 plane pitchMatthew Hoops
All the Myst intro videos now decode correctly
2012-04-08VIDEO: Minor updates to SVQ1 decoder, mainly return flags to bool.D G Turner
Since the returned int values from the decoding functions are just 0 for good or -1 for error, have changed these into an errorFlag bool. This improves readability and cleans up some of the error checking code. In addition, have fixed some oversights in formatting spacing for readability.
2012-04-08VIDEO: Change SVQ1 decoder to skip rather than decode embedded string.D G Turner
This string field is not used and this avoids having to include a xor table.
2012-04-08VIDEO: Fix segfaults on different sized SVQ1 framesMatthew Hoops
2012-04-08VIDEO: Fix endian issue with SVQ1Matthew Hoops
2012-04-08VIDEO: Add Missing Half-Pel Motion Compensation Code to SVQ1 Codec.D G Turner
Graphics output is now _almost_ correct.
2012-04-08VIDEO: Rework SVQ1 codebooks so they're endian-safeMatthew Hoops
2012-04-08VIDEO: Workaround for out of buffer accesses in SVQ1 codec.D G Turner
This is a temporary workaround during development. Keyframe (I) decoding is now working correctly, but Deltaframe (P) is still giving corrupted output...
2012-04-08VIDEO: Correct delete type in SVQ1 decoder.D G Turner
2012-04-08VIDEO: Correct SVQ1 Header Decoding and Last Frame Buffering.D G Turner
Header was incorrectly documnented in reference documents. Corrected with reference to FFMPEG. Also, added missing buffering of last frame for P frame decoding.
2012-04-08VIDEO: Rewrite the SVQ1 VLC code to use Common::HuffmanMatthew Hoops
2012-04-08VIDEO: SVQ1 - Add table_size default setting for VLC Table setup.D G Turner
2012-04-08VIDEO: Fix remaining missing code (getVlc2()) in SVQ1 Codec.D G Turner
2012-04-08VIDEO: Add remaining SVQ1 code derived from FFMPEG.D G Turner
This still requires some work to make it usuable, mainly changing the Variable Length Code reader to work with Common::BitStream input.
2012-04-08VIDEO: Corrected minor mistake in SVQ1 decoder.D G Turner
2012-04-08VIDEO: Update SVQ1 WIP with minor corrections.D G Turner
This mainly fixes the Bitstream to Big Endian, MSB to LSB.
2012-04-08VIDEO: Migrate SVQ1 codec WIP to Common::BitStream.D G Turner
2012-04-08VIDEO: Hookup SVQ1 codec to build system and QT Decoder.D G Turner
2012-04-08VIDEO: Add initial framework and data tables for Sorenson SVQ1 decoder.D G Turner
This is based on the SVQ1 decoder from FFMPEG.
2012-04-08GRAPHICS: Add YUV410 to RGB Conversion Functions, required for SVQ1.D G Turner
Thanks to clone2727 for these.
2012-04-04SCUMM: Fix spelling of lengthJoel Teichroeb
2012-04-04PARALLACTION: Fix spelling of lengthJoel Teichroeb
2012-04-04COMMON: Fix spelling of lengthJoel Teichroeb
2012-04-05KYRA: Silence const away cast warning by using non-const versions of strpbrk ↵Johannes Schickel
and strchr.
2012-04-05GROOVIE: Do not cast away const qualifier.Johannes Schickel
2012-04-05SWORD25: Do not cast away const qualifier.Johannes Schickel
2012-04-05SCI: Do not cast away const qualifier.Johannes Schickel
2012-04-04Merge pull request #221 from klusark/constJohannes Schickel
Fix casting away const
2012-04-04SCUMM/ARM: Fix crashes in ARM asm costume rendererWillem Jan Palenstijn
It was possible to bypass the initialization of r11, and mask was being read before the corresponding bounds check. Thanks to fuzzie for analysis and LordHoto for testing. This fixes bug #3500023 and a crash in the DOTT ending.
2012-04-04SCI: Bugfix for the GetAngle workaroundsFilippos Karapetis
Return a fake value instead of leaving random values in the accumulator
2012-04-03GRAPHICS: Fix casting away constJoel Teichroeb
2012-04-03SCUMM: Fix casting away constJoel Teichroeb
2012-04-02AGOS: Expand fix for bug #3512776 - SIMON1DOS French: Subtitle glitch in ↵Travis Howell
introduction.
2012-04-02IPHONE: Use InternalEvent directly.Johannes Schickel
2012-04-02IPHONE: Move event fetching implementation to iPhoneView.Johannes Schickel
2012-04-02IPHONE: Protect access to the event list via a mutex.Johannes Schickel
2012-04-02IPHONE: Use Common::List to store the event queue.Johannes Schickel
2012-04-01Merge pull request #219 from bohm/masterDavid Turner
GUI: Scrollbar button highlighting fix.
2012-04-01BASE: Construct empty String instead of using "".Johannes Schickel
2012-04-01AGOS: Fix bug #3512776 - SIMON1DOS French: Subtitle glitch in introduction.Travis Howell
2012-04-01SCI: Add workaround for SQ1SCI to fix engine abort in bug #3513765.D G Turner
This occurs while Roger is trying to move around the Pilot Droid in Ulence Flats.
2012-04-01SCI: Change the fix for the SQ1 PAvoider call to apply in all rooms againFilippos Karapetis
This bad call can be made in all rooms in Ulence Flats, after getting the Pilot Droid. Properly fixes script bug #3513207