gcc 4.5 build fix

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40624 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2011-02-22 22:57:20 +00:00
parent 96f9949a2d
commit 53c001249b
1 changed files with 1 additions and 1 deletions

View File

@ -539,7 +539,7 @@ BMediaTrack::ReadChunk(char** _buffer, int32* _size, media_header* _header)
// of the last chunk. Asking the extractor for the current time will
// not work so well because of the chunk cache. But providing a
// "duration" field in the media_header could be useful.
fCurrentTime = fCurrentTime = _header->start_time;
fCurrentTime = _header->start_time;
fCurrentFrame = (int64)(fCurrentTime * _FrameRate() / 1000000LL);
}