Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-23 | FFMpeg switched to Git, so update link to original smacker decoder. | Eugene Sandulenko | |
svn-id: r49166 | |||
2010-05-23 | Move Mohawk's QuickTime code to graphics/ (and QDM2 to sound, disabled when ↵ | Matthew Hoops | |
Mohawk is not enabled) so SCI can use the code. svn-id: r49165 | |||
2010-05-20 | Add a pause level system to VideoDecoder (blatantly ripped off from Engine) ↵ | Matthew Hoops | |
and adapt Mohawk to it. svn-id: r49120 | |||
2010-05-18 | Add a new class 'RewindableVideoDecoder' that allows a video to be rewound ↵ | Matthew Hoops | |
and have QTPlayer inherit from that. svn-id: r49084 | |||
2010-05-18 | Committing the rest of the VideoDecoder Rewrite from patch #2963496. | Matthew Hoops | |
svn-id: r49079 | |||
2010-05-18 | Fix currentFrame semantics in Flic player | Ori Avtalion | |
svn-id: r49073 | |||
2010-05-17 | Change VideoDecoder::getCurFrame() to mean the last frame drawn instead of ↵ | Matthew Hoops | |
the next frame to draw. This is patch 1 from patch #2963496 (VideoDecoder Rewrite). svn-id: r49063 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-03-15 | Changing Imd::renderFrame() and Vmd::renderFrame() to properly clip the ↵ | Sven Hesse | |
drawing area to prevent overdrawing without producing garbage output svn-id: r48264 | |||
2010-03-15 | The frame coordinate cropping for IMDs is wrong, and should be unnecessary ↵ | Sven Hesse | |
anyway, since Imd::renderFrame() should already check for overblitting. This fixes bug #2969904 ("GOB3: Graphical Glitch in finished cutscene") svn-id: r48262 | |||
2010-03-11 | Removing a debug warning() and adding some comments | Sven Hesse | |
svn-id: r48236 | |||
2010-03-11 | Adding support for the very primitive and simply early IMD format used in ↵ | Sven Hesse | |
Fascination svn-id: r48233 | |||
2010-03-08 | Remove unnecessary #includes | Max Horn | |
svn-id: r48185 | |||
2010-02-06 | Revert r47944: useless debug messages, sorry for the wrong commit | Arnaud Boutonné | |
svn-id: r47946 | |||
2010-02-06 | Add an assert to avoid a crash when printing the character 0x00. | Arnaud Boutonné | |
svn-id: r47944 | |||
2010-02-05 | Silence a valgrind warning. The sound buffer should be created with malloc ↵ | Matthew Hoops | |
and not new[]. svn-id: r47896 | |||
2010-02-05 | Have SCI look through the patches directory (except in KQ6 where the patches ↵ | Matthew Hoops | |
in that directory are broken) to fix some GK1 Windows problems. Add the MSRLE codec to AVI (from DrMcCoy's Dark Seed II engine, with permission). GK1 Windows now will play the credits video. svn-id: r47894 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-22 | Silenced some more cppcheck warnings. Some of these may seem silly, but the way | Torbjörn Andersson | |
I figure it the changes are harmless at worst, and making them will make it easier to find real errors in the (still quite long) list of warnings. svn-id: r47443 | |||
2010-01-19 | Move raw audio flags from sound/mixer.h to sound/raw.h | Max Horn | |
svn-id: r47395 | |||
2010-01-19 | Get rid of Mixer::FLAG_AUTOFREE. | Max Horn | |
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369 | |||
2010-01-09 | Add Mixer::getElapsedTime() method returning a Timestamp, thus offering a ↵ | Max Horn | |
higher precision than Mixer::getSoundElapsedTime(). Convert some video code to use it. svn-id: r47213 | |||
2010-01-09 | Yup, not checking for stereo sound was an accident here | Sven Hesse | |
svn-id: r47195 | |||
2010-01-08 | Move DisposeAfterUse::Flag from Common to global namespace, and into a new ↵ | Max Horn | |
header common/types.h svn-id: r47180 | |||
2010-01-08 | Rename QueuedAudioStream to QueuingAudioStream | Max Horn | |
svn-id: r47179 | |||
2010-01-08 | Switch Tinsel, MADE and some of the video players to QueuedAudioStream | Max Horn | |
svn-id: r47178 | |||
2009-12-30 | The wrapper for the VMD decoder is only used in the SCI engine for SCI32 ↵ | Filippos Karapetis | |
games, so moved it inside the engine, instead of common code. Added support for VMD video playing from the "play_video" console command svn-id: r46737 | |||
2009-12-29 | Fix warning | Eugene Sandulenko | |
svn-id: r46726 | |||
2009-12-29 | Added a thin wrapper around the VMD player class, so that it can be used ↵ | Filippos Karapetis | |
with the common VideoPlayer interface, to be used with videos from SCI32 games svn-id: r46715 | |||
2009-12-29 | Adding a getFrameWaitTime() method to get the frame waiting time instead of ↵ | Sven Hesse | |
directly waiting svn-id: r46712 | |||
2009-12-29 | Adding CoktelVideo::hasExtraData(void), for checking if /any/ extra data ↵ | Sven Hesse | |
files are embedded in the video file svn-id: r46710 | |||
2009-12-06 | Adding support for mono signed 16bit little-endian uncompressed PCM audio ↵ | Sven Hesse | |
(thank you, clone :)) svn-id: r46270 | |||
2009-11-30 | Only print sound information if there actually is sound (preventing a ↵ | Sven Hesse | |
division by 0 exception) svn-id: r46210 | |||
2009-11-30 | Properly clear the chunk headers again on closing | Sven Hesse | |
svn-id: r46209 | |||
2009-11-28 | Adding a parameter to the AviDecoder constructor to allow changing the ↵ | Sven Hesse | |
SoundType (instead of it being fixed to Plain) svn-id: r46170 | |||
2009-11-28 | Fixing a valgrind warning by memsetting _palette | Sven Hesse | |
svn-id: r46169 | |||
2009-11-27 | Fixing an invalid read in the destructor | Sven Hesse | |
svn-id: r46164 | |||
2009-11-27 | 00AM is another compressed frame type, fixing this (thanks to digitall for ↵ | Sven Hesse | |
figuring that out :D) svn-id: r46163 | |||
2009-11-27 | Extended the AviDecoder a bit | Sven Hesse | |
svn-id: r46162 | |||
2009-11-25 | Typo | Filippos Karapetis | |
svn-id: r46135 | |||
2009-11-24 | Fix incorrectly placed doxygen comments; replace Common::ID2string by ↵ | Max Horn | |
Common::tag2string svn-id: r46127 | |||
2009-11-11 | Add missing ")" in #if check. | Johannes Schickel | |
svn-id: r45834 | |||
2009-11-10 | Move definition of stdint types to the only file that needs them (mpeg_player.h) | Max Horn | |
svn-id: r45820 | |||
2009-10-18 | Introduced new type Common::DisposeAfterUse::Flag | Max Horn | |
svn-id: r45233 | |||
2009-10-16 | Override getAudioLag() in the AviDecoder (blatantly borrowed from the ↵ | Matthew Hoops | |
SmackerDecoder). svn-id: r45172 | |||
2009-10-16 | Converting AVIPlayer into a class that inherits from VideoDecoder and adapt ↵ | Matthew Hoops | |
SCI to use this. Also, moving the codec and Codec class into their own folder. (Based on a patch by md5) svn-id: r45170 | |||
2009-10-16 | Added a new convenience method to the video player, which adds the event of ↵ | Filippos Karapetis | |
skipping videos with the escape key by default, thereby simplifying the video playing code in all places where it's used svn-id: r45151 | |||
2009-10-14 | gob: fix a regression in Bargon Attack intro caused by a fix of Ween ↵ | Arnaud Boutonné | |
problems. Still requires a more proper fix, but at least it doesn't hang anymore (closing bug #2878717) svn-id: r45080 | |||
2009-09-30 | Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other ↵ | Max Horn | |
things) svn-id: r44495 |