CSJ2K.j2k.entropy.encoder.StdEntropyCoder.nextTile C# (CSharp) Method

nextTile() public method

Advances to the next tile, in standard scan-line order (by rows then columns). An NoNextElementException is thrown if the current tile is the last one (i.e. there is no next tile).

This default implementation just advances to the next tile in the source.

public nextTile ( ) : void
return void
		public override void  nextTile()
		{
			// Reset the tilespecific variables
			if (finishedTileComponent != null)
			{
				for (int c = src.NumComps - 1; c >= 0; c--)
				{
					finishedTileComponent[c] = false;
				}
			}
			base.nextTile();
		}