# CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec" data-uid="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec" class="text-break">CBlkWTDataSrcDec Interface
</h1>
  <div class="markdown level0 summary"><p>This abstract class defines methods to transfer wavelet data in a
code-block by code-block basis, for the decoder side. In each call to
'getCodeBlock()' or 'getInternCodeBlock()' a new code-block is
returned. The code-blocks are returned in no specific order.</p>
<pre><code>       &lt;p&gt;This class is the source of data, in general, for the inverse wavelet
       transforms. See the 'InverseWT' class.&lt;/p&gt;
</code></pre>
</div>
  <div class="markdown level0 conceptual"></div>
  <h6><strong>Namespace</strong>: <a class="xref" href="CSJ2K.j2k.wavelet.synthesis.html">CSJ2K.j2k.wavelet.synthesis</a></h6>
  <h6><strong>Assembly</strong>: C1.WPF.ReportViewer.4.6.2.dll</h6>
  <h5 id="CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public interface CBlkWTDataSrcDec : InvWTData, MultiResImgData</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public Interface CBlkWTDataSrcDec
    Inherits InvWTData, MultiResImgData</code></pre>
  </div>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getCodeBlock_System_Int32_System_Int32_System_Int32_CSJ2K_j2k_wavelet_synthesis_SubbandSyn_CSJ2K_j2k_image_DataBlk_" data-uid="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getCodeBlock(System.Int32,System.Int32,System.Int32,CSJ2K.j2k.wavelet.synthesis.SubbandSyn,CSJ2K.j2k.image.DataBlk)">
          <a class="xref" href="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getCodeBlock.html#CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getCodeBlock_System_Int32_System_Int32_System_Int32_CSJ2K_j2k_wavelet_synthesis_SubbandSyn_CSJ2K_j2k_image_DataBlk_">getCodeBlock(int, int, int, SubbandSyn, DataBlk)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the specified code-block in the current tile for the specified
component, as a copy (see below).</p>
<pre><code>       &lt;p&gt;The returned code-block may be progressive, which is indicated by
       the 'progressive' variable of the returned 'DataBlk' object. If a
       code-block is progressive it means that in a later request to this
       method for the same code-block it is possible to retrieve data which is
       a better approximation, since meanwhile more data to decode for the
       code-block could have been received. If the code-block is not
       progressive then later calls to this method for the same code-block
       will return the exact same data values.&lt;/p&gt;&lt;p&gt;The data returned by this method is always a copy of the internal
       data of this object, if any, and it can be modified &quot;in place&quot; without
       any problems after being returned. The 'offset' of the returned data is 
       0, and the 'scanw' is the same as the code-block width. See the
       'DataBlk' class.&lt;/p&gt;
</code></pre>
</td>
      </tr>
      <tr>
        <td id="CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getFixedPoint_System_Int32_" data-uid="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getFixedPoint(System.Int32)">
          <a class="xref" href="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getFixedPoint.html#CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getFixedPoint_System_Int32_">getFixedPoint(int)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the position of the fixed point in the specified component, or
equivalently the number of fractional bits. This is the position of the
least significant integral (i.e. non-fractional) bit, which is
equivalent to the number of fractional bits. For instance, for
fixed-point values with 2 fractional bits, 2 is returned. For
floating-point data this value does not apply and 0 should be
returned. Position 0 is the position of the least significant bit in
the data.</p>
</td>
      </tr>
      <tr>
        <td id="CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getInternCodeBlock_System_Int32_System_Int32_System_Int32_CSJ2K_j2k_wavelet_synthesis_SubbandSyn_CSJ2K_j2k_image_DataBlk_" data-uid="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getInternCodeBlock(System.Int32,System.Int32,System.Int32,CSJ2K.j2k.wavelet.synthesis.SubbandSyn,CSJ2K.j2k.image.DataBlk)">
          <a class="xref" href="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getInternCodeBlock.html#CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getInternCodeBlock_System_Int32_System_Int32_System_Int32_CSJ2K_j2k_wavelet_synthesis_SubbandSyn_CSJ2K_j2k_image_DataBlk_">getInternCodeBlock(int, int, int, SubbandSyn, DataBlk)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the specified code-block in the current tile for the specified
component (as a reference or copy).</p>
<pre><code>       &lt;p&gt;The returned code-block may be progressive, which is indicated by
       the 'progressive' variable of the returned 'DataBlk' object. If a
       code-block is progressive it means that in a later request to this
       method for the same code-block it is possible to retrieve data which is
       a better approximation, since meanwhile more data to decode for the
       code-block could have been received. If the code-block is not
       progressive then later calls to this method for the same code-block
       will return the exact same data values.&lt;/p&gt;&lt;p&gt;The data returned by this method can be the data in the internal
       buffer of this object, if any, and thus can not be modified by the
       caller. The 'offset' and 'scanw' of the returned data can be
       arbitrary. See the 'DataBlk' class.&lt;/p&gt;
</code></pre>
</td>
      </tr>
      <tr>
        <td id="CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getNomRangeBits_System_Int32_" data-uid="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getNomRangeBits(System.Int32)">
          <a class="xref" href="CSJ2K.j2k.wavelet.synthesis.CBlkWTDataSrcDec.getNomRangeBits.html#CSJ2K_j2k_wavelet_synthesis_CBlkWTDataSrcDec_getNomRangeBits_System_Int32_">getNomRangeBits(int)</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
    </tbody>
  </table>
  <h3 id="seealso">See Also</h3>
  <div class="seealso">
      <div><a class="xref" href="CSJ2K.j2k.wavelet.synthesis.InvWTData.html">InvWTData</a></div>
      <div><a class="xref" href="CSJ2K.j2k.wavelet.WaveletTransform.html">WaveletTransform</a></div>
      <div><a class="xref" href="CSJ2K.j2k.wavelet.synthesis.InverseWT.html">InverseWT</a></div>
  </div>

</div>
