aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/videoplayer.cpp
AgeCommit message (Collapse)Author
2010-08-08GOB: Make the demoplayer use the new VideoPlayer interfaceSven Hesse
svn-id: r51885
2010-08-08GOB: Fix another another with continuing videosSven Hesse
svn-id: r51883
2010-08-08GOB: Fix video continuingSven Hesse
svn-id: r51878
2010-08-08VIDEO/GOB: Stub hasEmbeddedFile / getEmbeddedFileSven Hesse
Stubbing CoktelDecoder::hasEmbeddedFile() and CoktelDecoder::getEmbeddedFile(), formerly hasExtraData/getExtraData. svn-id: r51875
2010-08-08GOB: Minor cleanupSven Hesse
svn-id: r51873
2010-08-08GOB: Fix video workaround detectionSven Hesse
svn-id: r51872
2010-08-08VIDEO/GOB: Implement IMD frame renderingSven Hesse
svn-id: r51867
2010-08-08VIDEO/GOB: Implement IMD frame decodingSven Hesse
Rendering the frame video data is still stubbed out. svn-id: r51866
2010-08-08VIDEO/GOB: Implement IMD loadingSven Hesse
svn-id: r51865
2010-08-08GOB: Make o2_playImd use the new VideoPlayer interfaceSven Hesse
svn-id: r51864
2010-08-08GOB: Hook the new IMDDecoder into VideoPlayerSven Hesse
svn-id: r51863
2010-08-08GOB: Properly utilize FixedRateVideoDecoder::getTimeToNextFrame()Sven Hesse
svn-id: r51861
2010-08-08VIDEO/GOB: Add CoktelDecoder::getDirtyRects()Sven Hesse
This allows for the client code to only update the parts of the video frames that actually changed. svn-id: r51859
2010-08-08VIDEO/GOB: Add CoktelDecoder::setXY()Sven Hesse
This allows for positioning the video within the video memory. svn-id: r51858
2010-08-08VIDEO/GOB: Add setSurfaceMemory() to CoktelDecoderSven Hesse
This allows the video player to directly draw onto its own video memory without having to blit each frame another time. Will also be needed for proper handling of transparency in Woodruff. svn-id: r51857
2010-08-08GOB: Basic video playback using the new interfaceSven Hesse
Implement basic video playback using the new VideoPlayer interface. Still quite stubby, still lots of stuff missing. svn-id: r51856
2010-08-08GOB: Implement the new VideoPlayer::openVideo function furtherSven Hesse
svn-id: r51853
2010-08-08GOB: Add constants for different surfaces/spritesSven Hesse
Add static const int kFrontSurface = 20; static const int kBackSurface = 21; static const int kAnimSurface = 22; static const int kCursorSurface = 23; static const int kCaptureSurface = 30; to class Draw and substitute the raw numbers in other files with those aliases, for readability. svn-id: r51852
2010-08-08GOB: Stub the new VideoPlayer interfaceSven Hesse
This is will be the new, less convoluted interface for playing videos within the gob engine. No actual functionality is implemented yet, and old functions are mostly commented out for now. svn-id: r51851
2010-08-08VIDEO: Stub a VideoDecoder-like CoktelDecoderSven Hesse
This creates a new CoktelDecoder class using the VideoDecoder interface, which will eventually become the new way to decode PreIMD, IMD and VMD videos. Since the VideoPlayer in gob is not yet ready for this, we're disabling all video playback in the gob engine for now. svn-id: r51850
2010-08-04GRAPHICS: Change signature of VideoDecoder::load()Max Horn
Now takes a pointer to a stream, instead of a reference. The rational is that in all instances, callers have a pointer (and dereference it to call load), and all load implementations turn the reference back into a pointer. svn-id: r51725
2010-05-17Enforce conversion formatting on pointer casts in the DEV code.Johannes Schickel
svn-id: r49068
2010-03-11Adding support for the early Fascination IMD formatSven Hesse
svn-id: r48234
2009-10-23Gob - Fix animations without extensionArnaud Boutonné
svn-id: r45352
2009-10-18gob - Cleanup of previous modificationArnaud Boutonné
svn-id: r45228
2009-10-18gob - "Windows" Gob3 has errors in scripts, calling .IMD videos instead of ↵Arnaud Boutonné
.VMD ones. This modification fixes that. svn-id: r45226
2009-08-24Add another extension: SMDArnaud Boutonné
svn-id: r43707
2009-08-02When ESCing videos, seek to the last frame that was meant to be played. ↵Sven Hesse
Fixes graphical glitches (bug #2830985) and crashes (bug #2830988) svn-id: r42995
2009-07-24CoktelVideo cleanup: Splitting up some IMD methods and removing the obsolete ↵Sven Hesse
notifyPaused() svn-id: r42715
2009-07-24Renaming getAnchor() to getFrameCoords()Sven Hesse
svn-id: r42713
2009-07-24Adding subtitle support to WoodruffSven Hesse
svn-id: r42705
2009-07-17/Finally/ fixing the longstanding flicker bug in Woodruff. I was completely ↵Sven Hesse
mistaken about its cause, too svn-id: r42572
2009-07-17Adding a workaround for the vanishing Coh Cott bug (#1972466), which is ↵Sven Hesse
actually an error in that video file svn-id: r42570
2009-07-05Added a Key and ShortKey enumSven Hesse
svn-id: r42121
2009-06-22Adding DataIO::existData()Sven Hesse
svn-id: r41752
2009-06-06Fixing the demoplayer's auto double mode and added a REBASE0 option that ↵Sven Hesse
sets the video's X and Y coordinates to 0,0 svn-id: r41307
2009-06-06Fixing the Woodruff intro: Using a flag that's /not/ already used be the scriptsSven Hesse
svn-id: r41306
2009-06-06GOB: Got rid of class ReferenceCounter; changed SurfaceDesc::Ptr to ↵Max Horn
SurfaceDescPtr (a Common::SharedPtr); and changed many SurfaceDesc pointers to references svn-id: r41299
2009-06-06Demoplayer:Sven Hesse
- Fixing the flawed double mode - Adding an "auto" double mode, where the videos get scaled if possible svn-id: r41294
2009-05-31Fixing a regression in the VideoPlayer, introduced by Fingolfin in r41077Sven Hesse
svn-id: r41088
2009-05-31GOB: Replaced many uses of strdupcpy by Common::StringMax Horn
svn-id: r41077
2009-05-21Splitting a few helper functions out of gob.hSven Hesse
svn-id: r40765
2009-05-20Moving CoktelVideo (IMD/VMD) and the Indeo3 code (needed for Urban Runner's ↵Sven Hesse
VMDs) to graphics/video/ svn-id: r40744
2009-04-30Adding a strdup-like inline functionSven Hesse
svn-id: r40216
2009-04-29Playing half-sized videos fullscreen in the demoplayerSven Hesse
svn-id: r40211
2009-04-24The video now works correctly in the non-interactive Urban Runner demoSven Hesse
svn-id: r40128
2009-01-01Whoa! Removing trailing spaces.Eugene Sandulenko
svn-id: r35648
2008-12-16Rotating the object backwards in the magnifing view works nowSven Hesse
svn-id: r35396
2008-12-16First step at getting the magnifier and memory view correctedSven Hesse
svn-id: r35389
2008-12-15Support for Urban Runner's new cursors (frames out of 16bit color VMDs)Sven Hesse
svn-id: r35376