CSJ2K.j2k.entropy.encoder.StdEntropyCoder.nextTile C# (CSharp) 메소드

nextTile() 공개 메소드

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
리턴 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();
		}