aboutsummaryrefslogtreecommitdiff
path: root/engines/made/pmvplayer.cpp
AgeCommit message (Collapse)Author
2016-05-02MADE: CleanupEugene Sandulenko
2015-07-19MADE: Fix movie audio glitches caused by reset of audio decoderWillem Jan Palenstijn
The sound buffer used in decompressSound() is now stored so that it can be re-used in the next call of decompressSound, specifically in chunk type 1. This caused some clicking/static in the intro of Return to Zork. Thanks to eriktorbjorn for noticing the glitch and writing most of the patch.
2015-01-28MADE: Initialize some variablesStrangerke
2014-02-18MADE: Make GPL headers consistent in themselves.Johannes Schickel
2013-08-03MADE: Take advantage of Surface::getPixels.Johannes Schickel
2013-08-03MADE: Prefer getBasePtr over direct Surface::pixels access.Johannes Schickel
2012-06-16MADE: Get rid of casts on OSystem::copyRectToScreen calls.Johannes Schickel
2011-10-09MADE: Minimize #include usage.Johannes Schickel
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-17MADE: Prefer Surface::create taking a PixelFormat over the one taking a byte ↵Johannes Schickel
depth.
2011-04-12COMMON: Replace MKID_BE by MKTAGMax Horn
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro.
2011-03-29JANITORIAL: Remove/comment unused varsdhewg
Found by GCC 4.6's -Wunused-but-set-variable
2011-02-09AUDIO: Rename sound/ dir to audio/Max Horn
svn-id: r55850
2010-04-12AUDIO: Rename Mixer::playInputStream to playStreamMax Horn
svn-id: r48637
2010-01-26Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵Max Horn
sound/decoders/ svn-id: r47579
2010-01-19Move raw audio flags from sound/mixer.h to sound/raw.hMax Horn
svn-id: r47395
2010-01-19Get rid of Mixer::FLAG_AUTOFREE.Max Horn
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369
2010-01-08Rename QueuedAudioStream to QueuingAudioStreamMax Horn
svn-id: r47179
2010-01-08Switch Tinsel, MADE and some of the video players to QueuedAudioStreamMax Horn
svn-id: r47178
2010-01-03Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is nullTorbjörn Andersson
before freeing it, which isn't necessary. svn-id: r46941
2009-10-04Applied patch #2872409 "MADE engine fixes" by agent-q, with one small ↵Filippos Karapetis
modification (initialized _soundStarted in the ScriptFunctions constructor) svn-id: r44589
2009-08-18- PMV player: Use frame count from PVM file and fix incorrect "invalid chunk ↵Benjamin Haisch
type" warning - Fix sprite drawing glitch with vertically flipped sprites (bug #2825925) svn-id: r43521
2009-03-12PMV player: stop reallocating the frame buffer on every frame, if its size ↵Filippos Karapetis
hasn't been changed svn-id: r39354
2009-01-22- Added support for The Manhole EGA versionBenjamin Haisch
- Support for 'chunked' picture resources and EGA pictures - Improved the mouth sync in RtZ (still not perfect, though) - Removed obsolete TODOs - Fixed sfPlayMovie to return if the movie playback was aborted or not; this is used by RtZ to determine if it should display the credits screen after the intro movie svn-id: r35997
2009-01-14Fixed warnings.Torbjörn Andersson
svn-id: r35859
2009-01-13- PMV video headers are evaluated correctly nowFilippos Karapetis
- PMV video is now stopped correctly if the end of the video has been reached. Removed a relevant hack, which was caused due to an invalid memory read svn-id: r35849
2009-01-01Whoa! Removing trailing spaces.Eugene Sandulenko
svn-id: r35648
2008-11-07Implemented RTL supportBenjamin Haisch
svn-id: r34933
2008-09-06Got rid of File::eof()Max Horn
svn-id: r34396
2008-06-27- Fixed umlauts in printTextBenjamin Haisch
- Don't exit when a pmv video couldn't be found svn-id: r32817
2008-05-20Clarification about the weird sound frequencies in PMV videosFilippos Karapetis
svn-id: r32198
2008-05-19RtZ: Fixed bug which caused PMV videos to look odd (noticeable in the intro ↵Benjamin Haisch
movie) and optimized frame decompression code. svn-id: r32182
2008-05-08Silenced MSVC warnings about uninitialized variablesFilippos Karapetis
svn-id: r31946
2008-05-08Possibly fixed the sound stuttering in the PMV videos and added frame ↵Benjamin Haisch
skipping based on the Gob engine's IMD/VMD player. svn-id: r31944
2008-05-07- cmd_return now exits the game if it returns from the main functionBenjamin Haisch
- Implemented cmd_exit - PmvPlayer now exits "more gracefully" when the application is closed while playing svn-id: r31930
2008-04-29Fixed crash that occurred when skipping a video while MIDI music was activeFilippos Karapetis
svn-id: r31775
2008-04-25Center videos to screenFilippos Karapetis
svn-id: r31715
2008-04-21Some palette related fixesFilippos Karapetis
svn-id: r31650
2008-04-21Code mergeFilippos Karapetis
svn-id: r31648
2008-04-21Added missing ScummVM headersFilippos Karapetis
svn-id: r31647
2008-04-21Performed some optimizations to the PMV playerFilippos Karapetis
svn-id: r31644
2008-04-21Fixed palette handling in PMV videos.Benjamin Haisch
svn-id: r31641
2008-04-20Made the sound less choppy. Though we may have to do some kind of doubleTorbjörn Andersson
buffering here to completely fix the problem. svn-id: r31627
2008-04-20Compilation fixes by lordhotoFilippos Karapetis
svn-id: r31619
2008-04-20Catch EVENT_QUIT events, too. I realize that g_system->quit() isn't the nicestTorbjörn Andersson
way to quit a game, but it beats not being able to quit at all. svn-id: r31617
2008-04-20Changed spaces to tabs.Torbjörn Andersson
svn-id: r31610
2008-04-20Initial import of the work in progress MADE engineFilippos Karapetis
svn-id: r31599