Beispiel #1
0
 /// <summary> Returns the reversibility of the tile-component data that is provided
 /// by the object.  Data is reversible when it is suitable for lossless and
 /// lossy-to-lossless compression.
 ///
 /// <P>Since entropy coders themselves are always reversible, it returns
 /// the reversibility of the data that comes from the 'CBlkQuantDataSrcEnc'
 /// source object (i.e. ROIScaler).
 ///
 /// </summary>
 /// <param name="t">Tile index
 ///
 /// </param>
 /// <param name="c">Component index
 ///
 /// </param>
 /// <returns> true is the data is reversible, false if not.
 ///
 /// </returns>
 /// <seealso cref="jj2000.j2k.roi.encoder.ROIScaler">
 ///
 /// </seealso>
 public virtual bool isReversible(int t, int c)
 {
     return(src.isReversible(t, c));
 }