Skip to content

Commit

Permalink
VIDEO: Remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed Oct 28, 2014
1 parent 614de0d commit b845d41
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions video/avi_decoder.cpp
Expand Up @@ -149,7 +149,7 @@ bool AVIDecoder::parseNextChunk() {
skipChunk(size);
break;
case ID_IDX1:
readOldIndex(size);
readOldIndex(size);
break;
default:
error("Unknown tag \'%s\' found", tag2str(tag));
Expand Down Expand Up @@ -528,7 +528,7 @@ bool AVIDecoder::seekIntern(const Audio::Timestamp &time) {
// Recreate the audio stream
audioTrack->resetStream();

uint framesNeeded = _header.initialFrames;
uint framesNeeded = _header.initialFrames;
if (framesNeeded == 0)
framesNeeded = 1;

Expand Down Expand Up @@ -623,7 +623,7 @@ void AVIDecoder::readOldIndex(uint32 size) {
OldIndex firstEntry;
firstEntry.id = _fileStream->readUint32BE();
firstEntry.flags = _fileStream->readUint32LE();
firstEntry.offset = _fileStream->readUint32LE();
firstEntry.offset = _fileStream->readUint32LE();
firstEntry.size = _fileStream->readUint32LE();

// Check if the offset is already absolute
Expand Down

0 comments on commit b845d41

Please sign in to comment.