VIDEO: Fix uninitialized track pointers

This commit is contained in:
Matthew Hoops 2013-04-16 10:40:16 -04:00
parent 7d0af11deb
commit 43d264cb2f

View File

@ -151,6 +151,8 @@ static const uint32 s_huffmanACSymbols[AC_CODE_COUNT] = {
PSXStreamDecoder::PSXStreamDecoder(CDSpeed speed, uint32 frameCount) : _speed(speed), _frameCount(frameCount) {
_stream = 0;
_videoTrack = 0;
_audioTrack = 0;
}
PSXStreamDecoder::~PSXStreamDecoder() {