From 355c4fa646c375c2ac42450871ff3d9221d1719d Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 9 Oct 2016 15:02:02 +0200 Subject: JANITORIAL: Remove more trailing spaces --- image/codecs/indeo/indeo.h | 8 ++++---- image/codecs/indeo4.cpp | 2 +- image/codecs/indeo5.cpp | 2 +- image/codecs/qtrle.cpp | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'image') diff --git a/image/codecs/indeo/indeo.h b/image/codecs/indeo/indeo.h index 696b7d0260..336685f625 100644 --- a/image/codecs/indeo/indeo.h +++ b/image/codecs/indeo/indeo.h @@ -24,8 +24,8 @@ #include "graphics/surface.h" #include "image/codecs/codec.h" -/* Common structures, macros, and base class shared by both Indeo4 and - * Indeo5 decoders, derived from ffmpeg. We don't currently support Indeo5 +/* Common structures, macros, and base class shared by both Indeo4 and + * Indeo5 decoders, derived from ffmpeg. We don't currently support Indeo5 * decoding, but just in case we eventually need it, this is kept as a separate * file like it is in ffmpeg. * @@ -343,7 +343,7 @@ struct AVFrame { * Constructor */ AVFrame(); - + /** * Destructor */ @@ -564,7 +564,7 @@ protected: virtual int decodeMbInfo(IVIBandDesc *band, IVITile *tile) = 0; /** - * Decodes the Indeo frame from the bit reader already + * Decodes the Indeo frame from the bit reader already * loaded into the context */ int decodeIndeoFrame(); diff --git a/image/codecs/indeo4.cpp b/image/codecs/indeo4.cpp index feee811cf0..6ceb3b2aa5 100644 --- a/image/codecs/indeo4.cpp +++ b/image/codecs/indeo4.cpp @@ -610,7 +610,7 @@ int Indeo4Decoder::decodePlaneSubdivision() { if (_ctx._gb->getBits(2) != 3) return 0; return 4; - + default: return 0; } diff --git a/image/codecs/indeo5.cpp b/image/codecs/indeo5.cpp index 522722f73a..e3f424957e 100644 --- a/image/codecs/indeo5.cpp +++ b/image/codecs/indeo5.cpp @@ -459,7 +459,7 @@ int Indeo5Decoder::decode_gop_header() { mbSize = _ctx._gb->getBit(); blkSize = 8 >> _ctx._gb->getBit(); mbSize = blkSize << (!mbSize ? 1 : 0); - + if (p == 0 && blkSize == 4) { warning("4x4 luma blocks are unsupported!"); return -2; diff --git a/image/codecs/qtrle.cpp b/image/codecs/qtrle.cpp index 8a83cfa2bd..700e2e1756 100644 --- a/image/codecs/qtrle.cpp +++ b/image/codecs/qtrle.cpp @@ -535,7 +535,7 @@ void QTRLEDecoder::createSurface() { if (_surface) { _surface->free(); delete _surface; - } + } _surface = new Graphics::Surface(); _surface->create(_paddedWidth, _height, getPixelFormat()); -- cgit v1.2.3