Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-17 | VIDEO: Fix a typo in the include guard | Matthew Hoops | |
2014-01-17 | VIDEO: Add MJPEG support | Matthew Hoops | |
2014-01-17 | VIDEO: Rename the Motion JPEG decoder to JPEG to better reflect its purpose | Matthew Hoops | |
This JPEG is separate from the modified JPEG format used in MJPEG | |||
2013-11-26 | SYMBIAN OS:Use defaults for data types also for Symbian OS! | anotherguest | |
2013-10-04 | ZVISION: Re-enable Truemotion plugin guard, but add a case for ZVISION | RichieSams | |
2013-09-04 | Merge branch 'master' into zvision | RichieSams | |
2013-09-03 | VIDEO: Fix memory leak in TrueMotion1 header buffer | richiesams | |
Cleanup _buf before returning, even if we don't actually decode | |||
2013-08-15 | Merge branch 'master' into zvision | richiesams | |
2013-08-11 | VIDEO: Disable SCI_32 plugin guard for DUCK Truemotion | richiesams | |
ZVision AVI videos use DUCK Truemotion | |||
2013-08-03 | VIDEO: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | VIDEO: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-07-14 | JANITORIAL: Remove trailing whitespace | Sven Hesse | |
2013-07-05 | Merge pull request #343 from clone2727/mpeg2-avi | clone2727 | |
Add back support for sword1/2 MPEG-2 cutscenes | |||
2013-06-30 | VIDEO: Fix Indeo3 luma scale | Matthew Hoops | |
Now black is really black | |||
2013-06-30 | VIDEO: Switch Indeo3 decoding to using the common YUV410 conversion code | Matthew Hoops | |
It now runs much faster and looks better too. Thanks to DrMcCoy for testing. | |||
2013-06-30 | VIDEO: Add hypothetical 32bpp support | Sven Hesse | |
2013-06-19 | VIDEO: Add an MPEG 1/2 decoder | Matthew Hoops | |
2013-04-18 | VIDEO: Remove unused CDToonsDecoder::_currentFrame member var | Max Horn | |
2013-01-24 | JANITORIAL: Fix ){ -> ) { | Einar Johan Trøan Sømåen | |
2012-12-04 | VIDEO: Add some documentation to Codec and its derivatives | Matthew Hoops | |
2012-12-04 | VIDEO: Improve performance of the Cinepak decoder | Matthew Hoops | |
2012-11-18 | VIDEO: Fix SVQ1 videos to error out on B Frames. | D G Turner | |
2012-11-18 | VIDEO: Fix compiler warning in SVQ1 codec. | D G Turner | |
2012-11-14 | VIDEO: Improve a Cinepak heuristic | Matthew Hoops | |
Brings it inline with the FFmpeg/libav version again | |||
2012-09-19 | VIDEO: Fix SVQ1 color on right/bottom borders | Matthew Hoops | |
2012-09-18 | GRAPHICS: Implement different luminance ranges | Matthew Hoops | |
Bink and Theora are now much improved | |||
2012-09-17 | GRAPHICS: Rework YUV->RGB code a bit | Matthew Hoops | |
2012-08-27 | Revert "VIDEO: Rework SVQ1 codebooks so they're endian-safe" | Matthew Hoops | |
This reverts commit 1ca81ee6ecff15c843c04a51c8757be5a685edc2. I was wrong about them not being endian-safe before. Don't stone me. Conflicts: video/codecs/svq1.cpp | |||
2012-06-12 | VIDEO: Make rpza decode to its own pixel format | Matthew Hoops | |
2012-06-11 | VIDEO: Cleanup QTRLE | Matthew Hoops | |
In particular, the colors are not converted to the screen format upon decoding. The code should also now work with 32bpp screen formats. | |||
2012-04-14 | GRAPHICS: Make YUV410 conversion code use bilinear interpolation | Matthew Hoops | |
SVQ1 no longer looks blocky and now looks a lot closer to what QuickTime outputs | |||
2012-04-14 | VIDEO: Change 'class' to 'struct' to match declaration | Ori Avtalion | |
2012-04-08 | VIDEO: Clean up the SVQ1 code | Matthew Hoops | |
2012-04-08 | VIDEO: 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-08 | VIDEO: Fix SVQ1 plane pitch | Matthew Hoops | |
All the Myst intro videos now decode correctly | |||
2012-04-08 | VIDEO: 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-08 | VIDEO: 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-08 | VIDEO: Fix segfaults on different sized SVQ1 frames | Matthew Hoops | |
2012-04-08 | VIDEO: Fix endian issue with SVQ1 | Matthew Hoops | |
2012-04-08 | VIDEO: Add Missing Half-Pel Motion Compensation Code to SVQ1 Codec. | D G Turner | |
Graphics output is now _almost_ correct. | |||
2012-04-08 | VIDEO: Rework SVQ1 codebooks so they're endian-safe | Matthew Hoops | |
2012-04-08 | VIDEO: 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-08 | VIDEO: Correct delete type in SVQ1 decoder. | D G Turner | |
2012-04-08 | VIDEO: 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-08 | VIDEO: Rewrite the SVQ1 VLC code to use Common::Huffman | Matthew Hoops | |
2012-04-08 | VIDEO: SVQ1 - Add table_size default setting for VLC Table setup. | D G Turner | |
2012-04-08 | VIDEO: Fix remaining missing code (getVlc2()) in SVQ1 Codec. | D G Turner | |
2012-04-08 | VIDEO: 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-08 | VIDEO: Corrected minor mistake in SVQ1 decoder. | D G Turner | |
2012-04-08 | VIDEO: Update SVQ1 WIP with minor corrections. | D G Turner | |
This mainly fixes the Bitstream to Big Endian, MSB to LSB. |