Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-04-14 | GOB: Reduce audio header dependencies | Ori Avtalion | |
2014-02-18 | GOB: Make GPL headers consistent in themselves. | Johannes Schickel | |
2012-06-07 | GOB: Add a way to reopen currently opened IMD/VMD videos | Sven Hesse | |
This is a workaround for how Lost in Time behaves in combination with changes I made to the DataIO code for running Urban Runner on low-memory devices. Urban Runner's intro are far to big to have them copied into memory for these devices, so I made the DataIO code return a SafeSeekableSubReadStream into the opened archive stream instead. Unfortunately, Lost in Time might not close a video file when it closes the data file which it was originally in, especially when loading a saved game. Since the video player needs to be able to gaplessly continue a video and there does not, by itself, close the video if not requested by the scripts, this leads to reading out of an already closed stream in certain cases. So, to worka round this issues, the video player tries to reopen each currently opened video after a data archive was closed, to make sure that that video is still available. If not, the video is closed. | |||
2011-09-08 | GOB: Made some static data const. | Johannes Schickel | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-01-24 | GOB: Wait for the exact moment of the video sound's end | Sven Hesse | |
This should fix all cut-off sound issues in Urban Runner svn-id: r55503 | |||
2011-01-23 | VIDEO: Move video classes to Video:: namespace | Eugene Sandulenko | |
svn-id: r55479 | |||
2011-01-23 | GRAPHICS: Move graphics/video/ to video/. Step 1/2 | Eugene Sandulenko | |
svn-id: r55473 | |||
2011-01-23 | GOB: Pass engine pause to the VideoPlayer and decoders | Sven Hesse | |
Entering the GMM or the debug console during a video will not mess up audio/video sync anymore. svn-id: r55466 | |||
2011-01-22 | GOB: Hacking in multiple live videos | Sven Hesse | |
Needed for Bambou. The narrator voice and the "Do you want to quit?" voices are live videos that should continue while the live video buttons are playing. svn-id: r55443 | |||
2011-01-22 | GOB: Extend the good-measure wait to all videos with sound | Sven Hesse | |
Fixes a glitch in Bambou, where the intro movie is cut off to soon. svn-id: r55432 | |||
2011-01-22 | GOB: Fix some of the live-video glitchyness | Sven Hesse | |
svn-id: r55421 | |||
2011-01-22 | GOB: Actually, startFrame == -2 seems to be the only live video flag | Sven Hesse | |
svn-id: r55418 | |||
2011-01-20 | GOB: Implement looping live videos | Sven Hesse | |
Needed for the buttons in the Playtoons series svn-id: r55359 | |||
2011-01-20 | GOB: Make blocking videos default | Sven Hesse | |
svn-id: r55354 | |||
2011-01-20 | GOB: Use Surface::blit() in VideoPlayer::copyFrame() | Sven Hesse | |
svn-id: r55344 | |||
2011-01-20 | GOB: Make Urban Runner's "3D view" work again | Sven Hesse | |
svn-id: r55340 | |||
2011-01-19 | GOB: Implement "live" (non-blocking) videos | Sven Hesse | |
Many thanks to SylvainTV. :) Urban Runner might actually be completeable now. One caveat: Hotspots at that hotel sequence are a bit glitchy... svn-id: r55333 | |||
2011-01-16 | GOB: Allow true-color VMD cursors | Sven Hesse | |
svn-id: r55264 | |||
2011-01-16 | GOB: Add the property switchColorMode | Sven Hesse | |
To allow the videoplayer (and ultimatively the demoplayer) to switch color modes if necessary. svn-id: r55262 | |||
2010-11-19 | ALL: Push down deps on stream.h from .h to .cpp files | Max Horn | |
svn-id: r54358 | |||
2010-09-30 | GOB: Change all drawing to use class Surface | Sven Hesse | |
svn-id: r52947 | |||
2010-08-08 | GOB: Handle VMD subtitles again | Sven Hesse | |
svn-id: r51916 | |||
2010-08-08 | GOB: Fix playing of sound VMDs with a starting frame != 0 | Sven Hesse | |
svn-id: r51910 | |||
2010-08-08 | GOB: Adapt the remaining bits to the new VideoPlayer interface | Sven Hesse | |
svn-id: r51895 | |||
2010-08-08 | GOB: Add copyFrame | Sven Hesse | |
svn-id: r51893 | |||
2010-08-08 | GOB: Make the demoplayer use the new VideoPlayer interface | Sven Hesse | |
svn-id: r51885 | |||
2010-08-08 | VIDEO/GOB: Stub hasEmbeddedFile / getEmbeddedFile | Sven Hesse | |
Stubbing CoktelDecoder::hasEmbeddedFile() and CoktelDecoder::getEmbeddedFile(), formerly hasExtraData/getExtraData. svn-id: r51875 | |||
2010-08-08 | GOB: Minor cleanup | Sven Hesse | |
svn-id: r51873 | |||
2010-08-08 | VIDEO/GOB: Fix IMD playing | Sven Hesse | |
Fix IMD playing for some fringe cases, especially when seeking beforehand. svn-id: r51871 | |||
2010-08-08 | VIDEO/GOB: Implement IMD frame rendering | Sven Hesse | |
svn-id: r51867 | |||
2010-08-08 | GOB: Make o2_playImd use the new VideoPlayer interface | Sven Hesse | |
svn-id: r51864 | |||
2010-08-08 | GOB: Basic video playback using the new interface | Sven Hesse | |
Implement basic video playback using the new VideoPlayer interface. Still quite stubby, still lots of stuff missing. svn-id: r51856 | |||
2010-08-08 | GOB: Implement the new VideoPlayer::openVideo function further | Sven Hesse | |
svn-id: r51853 | |||
2010-08-08 | GOB: Stub the new VideoPlayer interface | Sven 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-08 | VIDEO: Stub a VideoDecoder-like CoktelDecoder | Sven 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-03-11 | Adding support for the early Fascination IMD format | Sven Hesse | |
svn-id: r48234 | |||
2009-07-24 | CoktelVideo cleanup: Splitting up some IMD methods and removing the obsolete ↵ | Sven Hesse | |
notifyPaused() svn-id: r42715 | |||
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-17 | Adding 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-05 | Added a Key and ShortKey enum | Sven Hesse | |
svn-id: r42121 | |||
2009-06-06 | Fixing the Woodruff intro: Using a flag that's /not/ already used be the scripts | Sven Hesse | |
svn-id: r41306 | |||
2009-06-06 | Demoplayer: | Sven Hesse | |
- Fixing the flawed double mode - Adding an "auto" double mode, where the videos get scaled if possible svn-id: r41294 | |||
2009-05-31 | GOB: Replaced many uses of strdupcpy by Common::String | Max Horn | |
svn-id: r41077 | |||
2009-05-21 | Moved the Coktel video player into its own subdirectory | Filippos Karapetis | |
svn-id: r40755 | |||
2009-05-20 | Moving CoktelVideo (IMD/VMD) and the Indeo3 code (needed for Urban Runner's ↵ | Sven Hesse | |
VMDs) to graphics/video/ svn-id: r40744 | |||
2009-04-29 | Playing half-sized videos fullscreen in the demoplayer | Sven Hesse | |
svn-id: r40211 | |||
2009-04-24 | The video now works correctly in the non-interactive Urban Runner demo | Sven Hesse | |
svn-id: r40128 | |||
2008-12-16 | Rotating the object backwards in the magnifing view works now | Sven Hesse | |
svn-id: r35396 | |||
2008-12-16 | First step at getting the magnifier and memory view corrected | Sven Hesse | |
svn-id: r35389 |