Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-14 | VIDEO: Improve a Cinepak heuristic | Matthew Hoops | |
Brings it inline with the FFmpeg/libav version again | |||
2012-11-14 | VIDEO: Clarify some VideoDecoder documentation | Matthew Hoops | |
2012-10-23 | VIDEO: Mark Theora-decoder as used by Wintermute. | Einar Johan Trøan Sømåen | |
2012-10-12 | VIDEO: Fix edits with scales not divisible by the media scale | Matthew Hoops | |
QuickTime docs aren't completely clear on this, but from samples it's clear that the value needs to be rounded | |||
2012-10-12 | VIDEO: Fix choosing of the correct edit when seeking | Matthew Hoops | |
Previously it could be off-by-one | |||
2012-09-26 | JANITORIAL: Remove trailing whitespaces. | Johannes Schickel | |
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//' | |||
2012-09-23 | VIDEO: Make sure track pause status is reset upon stop too | Matthew Hoops | |
2012-09-22 | VIDEO: Fix pausing audio in videos | Matthew Hoops | |
2012-09-21 | VIDEO: Make getCurFrame declaration consistent | Willem Jan Palenstijn | |
The declaration used int32 while the definition used int. This should fix building on AmigaOS4 (bug #3570577). | |||
2012-09-20 | Merge pull request #275 from clone2727/pegasus | clone2727 | |
Pegasus engine (The Journeyman Project: Pegasus Prime) | |||
2012-09-19 | VIDEO: Fix SVQ1 color on right/bottom borders | Matthew Hoops | |
2012-09-19 | VIDEO: Fix getTime() after a stop() call | 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-09-16 | VIDEO: Indent with tab, not spaces. | Torbjörn Andersson | |
2012-09-12 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
Conflicts: AUTHORS | |||
2012-09-11 | VIDEO: Do not close/rewind videos after a stop() | Matthew Hoops | |
It makes more sense to do this more like a hard "pause" and let the caller stop()/rewind() if they want | |||
2012-09-07 | VIDEO: Add support for odd-sized Bink-videos | Einar Johan Trøan Sømåen | |
2012-09-05 | Merge remote branch 'upstream/master' into pegasus | Matthew Hoops | |
2012-09-05 | VIDEO: Restrict setEndTime()'s affects to videos that are playing | Matthew Hoops | |
2012-09-01 | VIDEO: Constified a temporary | Bertrand Augereau | |
2012-08-31 | ALL: Mark off some things as used by Pegasus | Matthew Hoops | |
2012-08-31 | VIDEO: Improve setEndTime() | Matthew Hoops | |
endOfVideo() and needsUpdate() are now more accurate | |||
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-08-27 | VIDEO: Fix "empty" AVI frames | Matthew Hoops | |
2012-08-26 | VIDEO: Fix compilation with some compilers | Matthew Hoops | |
2012-08-26 | COMMON: Add MKTAG16 for 16-bit multi-character constants | Matthew Hoops | |
2012-08-25 | VIDEO: Remove obsolete FIXME in the FLIC code | Matthew Hoops | |
2012-08-23 | VIDEO: Adjust start time after calling rewind() in start() | Matthew Hoops | |
This wasn't an actual bug, but it makes more sense this way | |||
2012-08-23 | VIDEO: Update the isPlaying() comment | Matthew Hoops | |
2012-08-20 | VIDEO: Implement rewinding Smacker audio tracks | Matthew Hoops | |
2012-08-16 | VIDEO: Cleanup VideoDecoder a bit | Matthew Hoops | |
Functions and their comments now line up better | |||
2012-08-16 | VIDEO: Merge AdvancedVideoDecoder into VideoDecoder | Matthew Hoops | |
2012-08-16 | VIDEO: Rename setStopTime() to setEndTime() | Matthew Hoops | |
To better differentiate with stop() | |||
2012-08-16 | VIDEO: Remove setSystemPalette() | Matthew Hoops | |
2012-08-16 | VIDEO: Begin removing some of the deprecated functions from VideoDecoder | Matthew Hoops | |
2012-08-16 | VIDEO: Remove the Coktel video code from using the VideoDecoder API | Matthew Hoops | |
After discussing with DrMcCoy, we felt this the best way to proceed. A wrapper class that implements AdvancedVideoDecoder is still around for use in SCI. | |||
2012-08-13 | VIDEO: Convert TheoraDecoder to the new AdvancedVideoDecoder API | Matthew Hoops | |
2012-08-12 | VIDEO: Move TheoraDecoder to video/ | Matthew Hoops | |
2012-08-12 | VIDEO: Convert FlicDecoder to the new AdvancedVideoDecoder API | Matthew Hoops | |
The video no longer automatically loops (unused in-tree) and must have rewind() called manually | |||
2012-08-12 | VIDEO: Don't allow adding external stream files to unopened videos | Matthew Hoops | |
2012-08-12 | VIDEO: Add set/getStopTime functions to AdvancedVideoDecoder | Matthew Hoops | |
A video can now be stopped at a requested time | |||
2012-08-07 | VIDEO: Fix getTime() when a video is not playing | Matthew Hoops | |
2012-07-29 | VIDEO: Move Track's start()/stop() functions to AudioTrack | Matthew Hoops | |
2012-07-27 | VIDEO: Remove now unused Rewindable and Seekable classes | Matthew Hoops | |
2012-07-27 | VIDEO: Adapt QuickTimeDecoder to the AdvancedVideoDecoder API | Matthew Hoops | |
2012-07-27 | VIDEO: Add functions for getting TrackList iterators internally | Matthew Hoops | |
2012-07-27 | VIDEO: Cleanup AdvancedVideoDecoder | Matthew Hoops | |
2012-07-27 | VIDEO: Remove Track::getStartTime() | Matthew Hoops | |
That should be handled internally instead | |||
2012-07-26 | VIDEO: Reset pause time when seeking/rewinding | Matthew Hoops | |