JANITORIAL: Remove more trailing spaces
This commit is contained in:
parent
dead4aa014
commit
355c4fa646
60 changed files with 211 additions and 211 deletions
|
@ -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();
|
||||
|
|
|
@ -610,7 +610,7 @@ int Indeo4Decoder::decodePlaneSubdivision() {
|
|||
if (_ctx._gb->getBits(2) != 3)
|
||||
return 0;
|
||||
return 4;
|
||||
|
||||
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -535,7 +535,7 @@ void QTRLEDecoder::createSurface() {
|
|||
if (_surface) {
|
||||
_surface->free();
|
||||
delete _surface;
|
||||
}
|
||||
}
|
||||
|
||||
_surface = new Graphics::Surface();
|
||||
_surface->create(_paddedWidth, _height, getPixelFormat());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue