COMMON: Add MKTAG16 for 16-bit multi-character constants

This commit is contained in:
Matthew Hoops 2012-08-26 12:38:35 -04:00
parent c7222ed5a4
commit 6f9d84665f
3 changed files with 10 additions and 4 deletions

View File

@ -146,6 +146,12 @@
*/
#define MKTAG(a0,a1,a2,a3) ((uint32)((a3) | ((a2) << 8) | ((a1) << 16) | ((a0) << 24)))
/**
* A wrapper macro used around two character constants, like 'wb', to
* ensure portability. Typical usage: MKTAG16('w','b').
*/
#define MKTAG16(a0,a1) ((uint16)((a1) | ((a0) << 8)))
// Functions for reading/writing native integers.
// They also transparently handle the need for alignment.

View File

@ -64,7 +64,7 @@ bool PEResources::loadFromEXE(SeekableReadStream *stream) {
if (!stream)
return false;
if (stream->readUint16BE() != 'MZ')
if (stream->readUint16BE() != MKTAG16('M', 'Z'))
return false;
stream->skip(58);

View File

@ -334,14 +334,14 @@ void AVIDecoder::readNextPacket() {
_fileStream->skip(chunkSize & 1);
if (track->getTrackType() == Track::kTrackTypeAudio) {
if (getStreamType(nextTag) != 'wb')
if (getStreamType(nextTag) != MKTAG16('w', 'b'))
error("Invalid audio track tag '%s'", tag2str(nextTag));
((AVIAudioTrack *)track)->queueSound(chunk);
} else {
AVIVideoTrack *videoTrack = (AVIVideoTrack *)track;
if (getStreamType(nextTag) == 'pc') {
if (getStreamType(nextTag) == MKTAG16('p', 'c')) {
// Palette Change
byte firstEntry = chunk->readByte();
uint16 numEntries = chunk->readByte();
@ -362,7 +362,7 @@ void AVIDecoder::readNextPacket() {
delete chunk;
videoTrack->markPaletteDirty();
} else if (getStreamType(nextTag) == 'db') {
} else if (getStreamType(nextTag) == MKTAG16('d', 'b')) {
// TODO: Check if this really is uncompressed. Many videos
// falsely put compressed data in here.
error("Uncompressed AVI frame found");