aboutsummaryrefslogtreecommitdiff
path: root/video/codecs
AgeCommit message (Collapse)Author
2013-04-18VIDEO: Remove unused CDToonsDecoder::_currentFrame member varMax Horn
2013-01-24JANITORIAL: Fix ){ -> ) {Einar Johan Trøan Sømåen
2012-12-04VIDEO: Add some documentation to Codec and its derivativesMatthew Hoops
2012-12-04VIDEO: Improve performance of the Cinepak decoderMatthew Hoops
2012-11-18VIDEO: Fix SVQ1 videos to error out on B Frames.D G Turner
2012-11-18VIDEO: Fix compiler warning in SVQ1 codec.D G Turner
2012-11-14VIDEO: Improve a Cinepak heuristicMatthew Hoops
Brings it inline with the FFmpeg/libav version again
2012-09-19VIDEO: Fix SVQ1 color on right/bottom bordersMatthew Hoops
2012-09-18GRAPHICS: Implement different luminance rangesMatthew Hoops
Bink and Theora are now much improved
2012-09-17GRAPHICS: Rework YUV->RGB code a bitMatthew Hoops
2012-08-27Revert "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-12VIDEO: Make rpza decode to its own pixel formatMatthew Hoops
2012-06-11VIDEO: Cleanup QTRLEMatthew 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-14GRAPHICS: Make YUV410 conversion code use bilinear interpolationMatthew Hoops
SVQ1 no longer looks blocky and now looks a lot closer to what QuickTime outputs
2012-04-14VIDEO: Change 'class' to 'struct' to match declarationOri Avtalion
2012-04-08VIDEO: Clean up the SVQ1 codeMatthew 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: Add initial framework and data tables for Sorenson SVQ1 decoder.D G Turner
This is based on the SVQ1 decoder from FFMPEG.
2012-03-20GRAPHICS: Convert JPEG to the ImageDecoder APIMatthew Hoops
2011-11-21ALL: Remove unnecessary forward declarations.Christoph Mallon
2011-10-07VIDEO: Fix Cinepak variant detectionMatthew Hoops
2011-07-03COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined.Johannes Schickel
2011-06-20ALL: Remove trailing whitespacesMax Horn
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//'
2011-05-31Merge remote branch 'upstream/master' into t7g-iosMatthew Hoops
Conflicts: engines/groovie/script.cpp
2011-05-25BUILD: Always enable indeo3 codecMax Horn
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-05-11Merge remote branch 'upstream/master' into t7g-iosMatthew Hoops
Conflicts: audio/decoders/qdm2.h common/util.cpp engines/groovie/music.cpp engines/groovie/resource.h video/qt_decoder.cpp video/qt_decoder.h
2011-05-03VIDEO: Cleanup mixed array / type declarationMax Horn
2011-05-01Merge pull request #16 "Add a PixelFormat to Graphics::Surface.".Johannes Schickel
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp
2011-04-28VIDEO: Fix compilation on SCUMM_BIG_ENDIAN backendsOri Avtalion
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2011-04-28JANITORIAL: Format forward declarations to follow conventionOri Avtalion
2011-04-17VIDEO: Set up the pixel format for the TrueMotion1 codec properly.Johannes Schickel