Alyssa Milburn
c39245b771
VIDEO: Remove incorrect TO_LE_16 calls from Bink audio code.
2011-08-06 10:44:16 +02:00
Sven Hesse
62862ecb23
VIDEO: Don't depend on IEEE floats for Bink audio
2011-07-24 23:56:56 +02:00
Littleboy
da60ff3ded
JANITORIAL: Fix MSVC warnings
...
- Conversion from double to float
- Unary minus operator applied to unsigned type
- ARRAYSIZE redefinition
2011-07-19 14:12:07 -04:00
Matthew Hoops
d38fa57d1b
VIDEO: Fix typo with last commit
2011-07-19 10:15:51 -04:00
Matthew Hoops
7484ba037c
VIDEO: Better handle failing loading Smacker videos
2011-07-19 09:41:31 -04:00
Matthew Hoops
724d7ef101
VIDEO: Use C++ versions of exp/ldexp
...
Should fix compilation on Mac PPC, and MinGW32 on buildbot
2011-07-19 07:35:40 -04:00
Filippos Karapetis
e1ca235c44
BINK decoder: Fixed compilation with MSVC
2011-07-19 10:50:48 +03:00
D G Turner
54f25aa843
COMMON: Renamed Integer Log2 function from log2 to intLog2.
...
This avoids naming collisions with system libraries on some platforms
i.e. DS, DC where the log2 is realised by macro.
2011-07-19 02:29:13 +01:00
clone2727
6370984b22
Merge pull request #50 from clone2727/bink
...
Add support for Bink video to SCUMM HE
2011-07-18 16:04:39 -07:00
Matthew Hoops
a50abde1b1
BUILD: Allow for disabling Bink support
2011-07-13 12:08:26 -04:00
Matthew Hoops
f0cc1eb58b
VIDEO: Add more to the BinkDecoder class comment
2011-07-02 21:11:21 -04:00
Matthew Hoops
ccfb7cb86f
VIDEO: Remember to call reset() from BinkDecoder::close()
2011-07-02 19:53:15 -04:00
Matthew Hoops
7c28d22ca0
VIDEO: Fix mismatched new[]/free
2011-07-02 19:37:46 -04:00
Matthew Hoops
82ed30817d
VIDEO: Cleanup Bink a bit
...
- Fix playing videos back-to-back
- Silence a cast warning
2011-07-02 19:23:49 -04:00
Johannes Schickel
7e4224e52a
COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined.
2011-07-03 00:16:07 +02:00
Matthew Hoops
4c065363a0
VIDEO: Fix Bink RDFT stereo
...
Thanks to DrMcCoy
2011-07-02 17:32:36 -04:00
Matthew Hoops
fffe7a9cc0
VIDEO: Remove Bink header check from Smacker
2011-07-02 16:37:24 -04:00
Matthew Hoops
4ace7f626b
VIDEO: Add Bink video decoder
...
Based on eos' code which is in turn based on FFmpeg's code
2011-07-02 16:36:37 -04:00
Max Horn
88913c0139
ALL: Remove trailing whitespaces
...
This tries to make our code a bit more compliant with our code formatting
conventions. For future use, this is the command I used:
git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//'
2011-06-20 00:59:48 +02:00
Matthew Hoops
547fd1bdca
COMMON: Cleanup QuickTime variable and struct naming
2011-06-03 00:58:29 -04:00
Matthew Hoops
2e06681698
COMMON: Begin objectifying QuickTimeParser::SampleDesc further
...
This is preparation for multiple video and audio tracks
2011-06-02 23:44:40 -04:00
Max Horn
9db33ea544
ALL: Removed last traces of the MPEG2 code
2011-06-01 23:17:43 +02:00
Matthew Hoops
aa49b38c5a
Merge remote branch 'upstream/master' into t7g-ios
...
Conflicts:
engines/groovie/script.cpp
2011-05-31 14:16:29 -04:00
Max Horn
717a7accf5
BUILD: Always enable indeo3 codec
2011-05-25 13:24:37 +02:00
strangerke
69b1485a22
GIT: Clean up: Suppress SVN tags, now useless
2011-05-12 01:16:22 +02:00
Matthew Hoops
a1d41da096
Merge remote branch 'upstream/master' into t7g-ios
...
Conflicts:
audio/decoders/qdm2.h
common/util.cpp
engines/groovie/music.cpp
engines/groovie/resource.h
video/qt_decoder.cpp
video/qt_decoder.h
2011-05-11 00:30:28 -04:00
Max Horn
89f40bc02a
VIDEO: Cleanup mixed array / type declaration
2011-05-03 13:25:01 +02:00
Ori Avtalion
a896125ee4
VIDEO: Fix flic decoder not including rect.h which is used inline
2011-05-01 18:48:42 +03:00
Johannes Schickel
71bdb86e02
Merge pull request #16 "Add a PixelFormat to Graphics::Surface.".
...
For further discussion check here:
https://github.com/scummvm/scummvm/pull/16
Conflicts:
graphics/png.cpp
2011-05-01 16:54:45 +02:00
Ori Avtalion
c46e4a47f2
VIDEO: Fix compilation on SCUMM_BIG_ENDIAN backends
2011-04-28 20:00:19 +03:00
Ori Avtalion
9414d7a6e2
JANITORIAL: Reduce header dependencies in shared code
...
Some backends may break as I only compiled SDL
2011-04-28 15:08:58 +03:00
Ori Avtalion
845db59e08
VIDEO: Fix incorrect, renamed, guard for TrueMotion1 support
2011-04-28 14:05:45 +03:00
Ori Avtalion
cd6ee0589d
JANITORIAL: Format forward declarations to follow convention
2011-04-28 12:20:34 +03:00
Johannes Schickel
79ed190523
VIDEO: Set up the pixel format for the TrueMotion1 codec properly.
2011-04-17 22:09:55 +02:00
Johannes Schickel
da734a4af0
ALL/GRAPHICS: Remove Surface::bytesPerPixel.
2011-04-17 21:27:34 +02:00
Johannes Schickel
f90bbf9cfa
VIDEO: Prefer Surface::format over Surface::bytesPerPixel.
2011-04-17 20:55:49 +02:00
Johannes Schickel
5e279996eb
VIDEO: Prefer Surface::create taking a PixelFormat over the one taking a byte depth.
...
Certain codecs seem to use a Surface with Bpp 2, but do not have any proper
format description. Whoever is maintaining these should check this commit and
fix the format properly.
2011-04-17 16:35:12 +02:00
Matthew Hoops
3f124ae6bb
VIDEO: Fix QuickTime videos without a video stream
...
Just in case anyone uses just that instead of Audio::makeQuickTimeStream()...
2011-04-14 10:31:20 -04:00
Matthew Hoops
76105b29b7
AUDIO: Split the QuickTimeAudioDecoder into a new header file
...
(Mirroring the new adpcm_intern.h file)
2011-04-14 10:25:02 -04:00
Max Horn
84184aabc0
ALL: colour -> color
2011-04-14 14:12:35 +02:00
Matthew Hoops
6d153f311c
Merge remote branch 'upstream/master' into t7g-ios
...
Conflicts:
video/qt_decoder.cpp
2011-04-13 16:04:29 -04:00
Max Horn
8f70e089ac
VIDEO: Use shared ADPCM data tables in VMDDecoder
2011-04-13 12:48:58 +02:00
Max Horn
0ce2ca4e00
COMMON: Replace MKID_BE by MKTAG
...
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-04-12 16:53:15 +02:00
Matthew Hoops
faee277978
COMMON: Add a DisposeAfterUse flag to QuickTimeParser
2011-04-08 17:04:29 -04:00
Matthew Hoops
88ebf13077
AUDIO: Allow for seeking in a QuickTimeAudioStream
2011-04-08 10:54:13 -04:00
Matthew Hoops
8cf73e3fb4
AUDIO: Split QuickTime audio into a new class
...
Standalone QuickTime files can now be played as an AudioStream
2011-04-07 19:40:07 -04:00
Matthew Hoops
d718755d73
VIDEO: Cleanup
...
The VideoDecoder interface to the QuickTimeParser uses almost entirely ScummVM code now, with only trace amounts remaining from FFmpeg.
2011-04-07 00:47:29 -04:00
Matthew Hoops
db71efd94f
VIDEO: Split the QuickTime parser from the QuickTime VideoDecoder
2011-04-07 00:21:48 -04:00
Matthew Hoops
b71d2038ae
VIDEO: Begin splitting video-specific QuickTime sample description code
2011-04-06 23:06:44 -04:00
Matthew Hoops
82a417b40c
VIDEO: Fix broken for statement
2011-04-06 22:21:49 -04:00