Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-17 | VIDEO: Set up the pixel format for the TrueMotion1 codec properly. | Johannes Schickel | |
2011-04-17 | ALL/GRAPHICS: Remove Surface::bytesPerPixel. | Johannes Schickel | |
2011-04-17 | VIDEO: Prefer Surface::format over Surface::bytesPerPixel. | Johannes Schickel | |
2011-04-17 | VIDEO: Prefer Surface::create taking a PixelFormat over the one taking a ↵ | Johannes Schickel | |
byte depth. Certain codecs seem to use a Surface with Bpp 2, but do not have any proper format description. Whoever is maintaining these should check this commit and fix the format properly. | |||
2011-04-14 | VIDEO: Fix QuickTime videos without a video stream | Matthew Hoops | |
Just in case anyone uses just that instead of Audio::makeQuickTimeStream()... | |||
2011-04-14 | AUDIO: Split the QuickTimeAudioDecoder into a new header file | Matthew Hoops | |
(Mirroring the new adpcm_intern.h file) | |||
2011-04-14 | ALL: colour -> color | Max Horn | |
2011-04-13 | Merge remote branch 'upstream/master' into t7g-ios | Matthew Hoops | |
Conflicts: video/qt_decoder.cpp | |||
2011-04-13 | VIDEO: Use shared ADPCM data tables in VMDDecoder | Max Horn | |
2011-04-12 | COMMON: Replace MKID_BE by MKTAG | Max Horn | |
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro. | |||
2011-04-08 | COMMON: Add a DisposeAfterUse flag to QuickTimeParser | Matthew Hoops | |
2011-04-08 | AUDIO: Allow for seeking in a QuickTimeAudioStream | Matthew Hoops | |
2011-04-07 | AUDIO: Split QuickTime audio into a new class | Matthew Hoops | |
Standalone QuickTime files can now be played as an AudioStream | |||
2011-04-07 | VIDEO: Cleanup | Matthew Hoops | |
The VideoDecoder interface to the QuickTimeParser uses almost entirely ScummVM code now, with only trace amounts remaining from FFmpeg. | |||
2011-04-07 | VIDEO: Split the QuickTime parser from the QuickTime VideoDecoder | Matthew Hoops | |
2011-04-06 | VIDEO: Begin splitting video-specific QuickTime sample description code | Matthew Hoops | |
2011-04-06 | VIDEO: Fix broken for statement | Matthew Hoops | |
2011-04-06 | VIDEO: Allow MPEG-4 containers to be parsed | Matthew Hoops | |
2011-03-29 | JANITORIAL: Remove/comment unused vars | dhewg | |
Found by GCC 4.6's -Wunused-but-set-variable | |||
2011-03-29 | VIDEO: Add a workaround for the Inca 2 wisdom gate video | Sven Hesse | |
When decompressing directly onto the output surface fails (because it's too small), retry decompressing into the video buffer first, which then gets blitted onto the output surface. | |||
2011-03-29 | VIDEO: Fix deLZ77() bound check | Sven Hesse | |
The Inca 2 video where Atahualpa walks through the gate after solving the wisdom challenge now only warns (and graphically glitches) instead of segfaulting. | |||
2011-03-21 | VIDEO: Add a getDuration() function to SeekableVideoDecoder | Matthew Hoops | |
This function returns the total duration of the video | |||
2011-03-19 | VIDEO: Changed several places that use PI to use M_PI instead | md5 | |
2011-02-15 | Merge branch 'master' into osystem-palette | Johannes Schickel | |
Conflicts: backends/platform/wii/osystem_gfx.cpp | |||
2011-02-15 | VIDEO: Adapt VideoDecoder::setSystemPalette to setPalette RGBA->RGB change. | Johannes Schickel | |
2011-02-15 | VIDEO: Add some stubs for QuickTime edit list work | Matthew Hoops | |
The edit lists are actually read in now. Minor cleanup of streams as well. | |||
2011-02-11 | VIDEO: Add another AVI stream type used by Indeo3 | Matthew Hoops | |
svn-id: r55886 | |||
2011-02-11 | VIDEO: Fix QDM2 audio | Matthew Hoops | |
A regression from r55474 svn-id: r55882 | |||
2011-02-11 | VIDEO: Fix QuickTime audio seeking | Matthew Hoops | |
svn-id: r55877 | |||
2011-02-10 | VIDEO: Added some skipping when bad data is found in Indeo3 | Sylvain Dupont | |
Some Urban Runner videos are badly encoded and contain corrupted data. When the decoder realizes that there is some bad data, it skips the rest of the frame. The original Indeo3 DLL decoder does the same. svn-id: r55876 | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-09 | VIDEO: Remove unused SeekableVideoDecoder::seekToFrame method | Max Horn | |
svn-id: r55844 | |||
2011-02-09 | VIDEO: In overloaded methods, invoke correct parent implementation | Max Horn | |
This should not cause any code behavior changes at this time, but if any of the intermediate VideoDecoder classes ever starts to overload stuff, this would become important. svn-id: r55841 | |||
2011-02-08 | VIDEO: Fix the documentation of VideoDecoder::setSystemPalette. | Johannes Schickel | |
svn-id: r55836 | |||
2011-02-08 | VIDEO: Fix the documentation of VideoDecoder::getPalette. | Johannes Schickel | |
svn-id: r55835 | |||
2011-02-07 | VIDEO: Replace Video::VideoTimestamp with Audio::Timestamp | Max Horn | |
svn-id: r55814 | |||
2011-02-07 | typo | Max Horn | |
svn-id: r55812 | |||
2011-02-07 | VIDEO: Try to clarify VideoDecoder docs a bit | Max Horn | |
Also re-arranged the methods a bit, into what I hope is a slightly more logical ordering. svn-id: r55811 | |||
2011-02-07 | VIDEO: Rename VideoDecoder::load() to loadStream() | Max Horn | |
svn-id: r55810 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2011-02-07 | VIDEO: Inline SMK palette | Max Horn | |
svn-id: r55805 | |||
2011-02-07 | VIDEO: Fix a leak in the Smacker decoder. | Alyssa Milburn | |
If audio was not yet started when a video was closed, the audio stream would be leaked. svn-id: r55802 | |||
2011-01-24 | VIDEO: Fix a gfx glitch | Sven Hesse | |
Visible in some Inca 2 videos svn-id: r55505 | |||
2011-01-24 | VIDEO: Don't fill empty sound slices at the end | Sven Hesse | |
svn-id: r55502 | |||
2011-01-23 | VIDEO: Move video classes to Video:: namespace | Eugene Sandulenko | |
svn-id: r55479 | |||
2011-01-23 | GRAPHICS: Move graphics/video/ to video/. Step 2/2 | Eugene Sandulenko | |
svn-id: r55474 | |||
2011-01-23 | GRAPHICS: Move graphics/video/ to video/. Step 1/2 | Eugene Sandulenko | |
svn-id: r55473 |