From 6dd009c1533bf80423f8006f87093cddc1610294 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sun, 7 Jun 2009 22:17:44 +0000 Subject: Formatting svn-id: r41354 --- graphics/video/smk_decoder.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'graphics') diff --git a/graphics/video/smk_decoder.cpp b/graphics/video/smk_decoder.cpp index 922bcbda99..9fa0b948f1 100644 --- a/graphics/video/smk_decoder.cpp +++ b/graphics/video/smk_decoder.cpp @@ -74,8 +74,7 @@ private: }; bool BitStream::getBit() { - if (_bitCount == 0) - { + if (_bitCount == 0) { assert(_buf < _end); _curByte = *_buf++; _bitCount = 8; @@ -146,8 +145,7 @@ private: }; SmallHuffmanTree::SmallHuffmanTree(BitStream &bs) - : _treeSize(0), _bs(bs) -{ + : _treeSize(0), _bs(bs) { uint32 bit = _bs.getBit(); assert(bit); @@ -239,8 +237,7 @@ private: }; BigHuffmanTree::BigHuffmanTree(BitStream &bs, int allocSize) - : _bs(bs) -{ + : _bs(bs) { uint32 bit = _bs.getBit(); if (!bit) { _tree = new uint32[1]; -- cgit v1.2.3