Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-20 | VIDEO: The getTimeToNextFrame override is useless now | Sven Hesse | |
svn-id: r55341 | |||
2011-01-20 | GOB: Make Urban Runner's "3D view" work again | Sven Hesse | |
svn-id: r55340 | |||
2011-01-19 | VIDEO: Recreate the audiostream if necessary | Sven Hesse | |
svn-id: r55324 | |||
2011-01-19 | VIDEO: Don't segfault when no audiostream is present | Sven Hesse | |
svn-id: r55322 | |||
2011-01-19 | VIDEO: Don't assert() when a needed codec isn't compiled in | Sven Hesse | |
svn-id: r55317 | |||
2011-01-18 | GRAPHICS: Add a getSurface() function to JPEG to automatically convert to RGB | Matthew Hoops | |
svn-id: r55301 | |||
2011-01-18 | GOB: Fix Woodruff video offsets | Sven Hesse | |
svn-id: r55288 | |||
2011-01-18 | VIDEO: Clip render rect to the surface's dimension | Sven Hesse | |
...And not to the video's. Oops :P svn-id: r55285 | |||
2011-01-17 | GOB: Fix the flow rate gauge in Urban Runner | Sven Hesse | |
svn-id: r55275 | |||
2011-01-16 | VIDEO: Implement internal-codec 24bpp VMDs | Sven Hesse | |
svn-id: r55265 | |||
2011-01-16 | VIDEO: Implement internal-codec 16bit VMDs | Sven Hesse | |
svn-id: r55263 | |||
2011-01-16 | VIDEO: Add color mode methods | Sven Hesse | |
To query the video's color mode and notifying the decoder that the system's color mode changed. svn-id: r55259 | |||
2011-01-16 | VIDEO: Add range checks to deLZ77() | Sven Hesse | |
svn-id: r55258 | |||
2011-01-16 | VIDEO: Simplying the video buffers | Sven Hesse | |
svn-id: r55257 | |||
2011-01-14 | VIDEO: Reset the pause start time when seeking while paused | Matthew Hoops | |
svn-id: r55239 | |||
2011-01-13 | GRAPHICS: Begin to parse Win1 fonts based on our sole Hugo1 sample (still WIP) | Matthew Hoops | |
svn-id: r55227 | |||
2011-01-13 | GRAPHICS: Use the pixel height instead of the ascent as the WinFont height | Matthew Hoops | |
svn-id: r55224 | |||
2011-01-11 | VIDEO: Fix QuickTime timing when seeking without audio (thanks bgK) | Matthew Hoops | |
svn-id: r55211 | |||
2011-01-11 | VIDEO: Add seeking capability to QuickTimeDecoder | Matthew Hoops | |
svn-id: r55203 | |||
2011-01-11 | VIDEO: Add a SeekableVideoDecoder class | Matthew Hoops | |
svn-id: r55202 | |||
2011-01-08 | BUILD: Include scummsys.h to force rebuild after reconfigure | Sven Hesse | |
svn-id: r55157 | |||
2011-01-08 | BUILD: Include scummsys.h to force rebuild after reconfigure (thanks LordHoto) | Willem Jan Palenstijn | |
svn-id: r55156 | |||
2011-01-07 | GRAPHICS: Some basic documentation for Font. | Johannes Schickel | |
svn-id: r55143 | |||
2011-01-07 | GRAPHICS: Add some doxygen comments to Surface. | Johannes Schickel | |
svn-id: r55142 | |||
2011-01-05 | VIDEO: Mirror QuickTime's mishandling of its own mdat atoms | Matthew Hoops | |
While the specs say that the 'mdat' ("media data") atom is required in all QuickTime files, QuickTime makes no check if the atom is actually present. This allows for some videos with typos in the atom tag in them to play in QuickTime anyway. The offsets in the 'stco' atom are only used instead. This will fix a video in DS2 Mac and a music file in IHNM Mac (although this is not needed for either just yet). svn-id: r55125 | |||
2011-01-04 | GRAPHICS: Add support for Windows FON/FNT fonts | Matthew Hoops | |
As required by Hugo and Mohawk. svn-id: r55120 | |||
2011-01-02 | VIDEO: Stop leaking surface data in several codecs. | Alyssa Milburn | |
svn-id: r55095 | |||
2010-12-19 | GRAPHICS: Fixed code analysis warnings (bug #3087917) | Filippos Karapetis | |
svn-id: r54964 | |||
2010-12-16 | VIDEO: Add CDToons decoder | Alyssa Milburn | |
svn-id: r54936 | |||
2010-12-16 | VIDEO: Extend Codec to support internal palettes | Matthew Hoops | |
svn-id: r54932 | |||
2010-12-16 | VIDEO: Make Codec::decodeImage() return a const Surface pointer | Matthew Hoops | |
svn-id: r54930 | |||
2010-12-16 | VIDEO: Remove the need to call updateAudioBuffer() externally for QuickTime | Matthew Hoops | |
svn-id: r54929 | |||
2010-12-16 | VIDEO: Make VideoDecoder::getPalette() return a const byte pointer | Matthew Hoops | |
svn-id: r54928 | |||
2010-12-16 | VIDEO: Make VideoDecoder::decodeNextFrame() return a const Surface pointer | Matthew Hoops | |
svn-id: r54927 | |||
2010-12-10 | VIDEO: Fix QuickTimeDecoder::hasDirtyPalette() by allocating the palette ↵ | Matthew Hoops | |
only for 8bpp videos svn-id: r54849 | |||
2010-12-09 | VIDEO: Allow for 8bpp Cinepak videos | Matthew Hoops | |
svn-id: r54841 | |||
2010-12-09 | VIDEO: Implement multiple video codec support for QuickTime | Matthew Hoops | |
svn-id: r54840 | |||
2010-12-09 | VIDEO: Fix a truncation in the SMC decoder (thanks, fuzzie) | Matthew Hoops | |
svn-id: r54839 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-19 | ALL: Push down deps on stream.h from .h to .cpp files | Max Horn | |
svn-id: r54358 | |||
2010-11-17 | GRAPHICS: colour -> color | Max Horn | |
svn-id: r54287 | |||
2010-11-16 | COMMON: Simplify DECLARE_SINGLETON macro | Max Horn | |
This makes it possible to write DECLARE_SINGLETON(foo); instead of DECLARE_SINGLETON(foo) without causing a warning about an extra semicolon. The extra semicolon helps some editors at parsing the C++ code. svn-id: r54258 | |||
2010-11-13 | VIDEO: Switch Truemotion 1 to RGB565 for potential use with SCI CLUT tables | Matthew Hoops | |
svn-id: r54231 | |||
2010-11-11 | VIDEO: Add support for DK3 in videos; fix sample rate location | Matthew Hoops | |
svn-id: r54205 | |||
2010-11-11 | VIDEO: Cleanup AVI audio in preparation for DK3 | Matthew Hoops | |
svn-id: r54200 | |||
2010-11-11 | VIDEO: Add the TrueMotion 1 codec for Phantasmagoria 2 | Matthew Hoops | |
Based on the FFmpeg decoder. Only the 16bpp version has been implemented (and all that should be needed). The videos I have tried work fine with the codec. The audio does not yet play in these videos, but I hope to work on DK3 IMA ADPCM soon. svn-id: r54194 | |||
2010-11-10 | GRAPHICS: Enforce alphabetical order on the codec objects | Matthew Hoops | |
svn-id: r54191 | |||
2010-11-08 | VIDEO: PreIMD: End frame when stream depleted | Sven Hesse | |
As happens for the last frames in the Fascination videos. svn-id: r54144 | |||
2010-11-07 | GRAPHICS: Cleanup advmame scaler code; don't include assert.h | Max Horn | |
svn-id: r54104 | |||
2010-11-05 | GRAPHICS/SJIS: cleanup | Florian Kagerer | |
svn-id: r54099 |