BitMiracle.LibJpeg.Classic.Internal.my_upsampler.start_pass C# (CSharp) Method

start_pass() public method

Initialize for an upsampling pass.
public start_pass ( ) : void
return void
        public override void start_pass()
        {
            /* Mark the conversion buffer empty */
            m_next_row_out = m_cinfo.m_max_v_samp_factor;

            /* Initialize total-height counter for detecting bottom of image */
            m_rows_to_go = m_cinfo.m_output_height;
        }