aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/rlf_animation.cpp
AgeCommit message (Collapse)Author
2013-10-20ZVISION: Style modifing by astyle.Marisa-Chan
2013-10-04ZVISION: Fix signed/unsigned mismatchRichieSams
2013-10-04ZVISION: Fix nested template formattingRichieSams
2013-10-02ZVISION: Standardize includes order and formatRichieSams
Format is: common/scummsys.h (Only if a .cpp file) header file for this file (Only if a .cpp file) zengine includes other includes, grouped by module
2013-10-02ZVISION: Convert _completeFrames to an ArrayRichieSams
2013-10-02ZVISION: Remove global const variablesRichieSams
Instead, use ColorMasks
2013-10-02ZVISION: Convert all for-loops to use pre-increment instead of post-incrementRichieSams
2013-10-02ZVISION: Add debug levelsRichieSams
2013-09-15ZVISION: Fix signed/unsigned mismatchRichieSams
2013-09-09ZVISION: Cleanup _currentFrameBuffer during descructionRichieSams
2013-09-09ZVISION: Let Rlf animations output Surfaces instead of uint16 arraysRichieSams
2013-09-07ZVISION: Allow RLF seeking without returning a frameRichieSams
2013-09-03ZVISION: Fix signed/unsigned mismatchrichiesams
2013-09-03ZVISION: Cleanup all used memory in RLF animationsrichiesams
2013-09-24ZVISION: Convert RLF animations to RBG 565richiesams
This is part of a series of commits converting all game assets to RBG 565 from RBG 555. The argument is that certain backends do not support RGB 555.
2013-08-28ZVISION: Remove RlfAnimation::getPreviousFrame()richiesams
I realized that RlfAnimations don't use B-frames, therefore, can not easily go backwards.
2013-08-28ZVISION: Fix signed/unsigned mismatchrichiesams
2013-08-28ZVISION: Remove extraneous semicolonrichiesams
2013-08-24ZVISION: Fix signed/unsigned mismatchrichiesams
2013-08-24ZVISION: Cast completeFrame and frameNumber to int so their difference can ↵richiesams
go negative
2013-08-24ZVISION: Fix signed/unsigned mismatchrichiesams
2013-08-24ZVISION: Add TODO's about the verbosity of the frame decoding overflow warningrichiesams
2013-08-24ZVISION: Check if we can use getNextFrame() or getPreviousFrame() before ↵richiesams
using getFrameData()
2013-08-24ZVISION: Fix error: decrementing instead of incrementingrichiesams
2013-08-20ZVISION: Implement streaming support for RlfAnimationsrichiesams
2013-08-20ZVISION: Handle rlf frame transitions internallyrichiesams
Animations use incremental frame changes. That is, only a few frames are complete (I-frames), the rest are just the pixels that change between the current frame and both the previous frame and the next frame (B-frames). See https://en.wikipedia.org/wiki/Video_compression_picture_types
2013-08-20ZVISION: Convert abs() to ABS() to ensure portabilityrichiesams
2013-08-20ZVISION: Normalize comment alignmentrichiesams
2013-08-20ZVISION: Fix seek() whence argumentrichiesams
2013-08-20ZVISION: Create class to parse RLF animation filesrichiesams