BitMiracle.LibJpeg.Classic.Internal.jpeg_input_controller.jpeg_input_controller C# (CSharp) Method

jpeg_input_controller() public method

Initialize the input controller module. This is called only once, when the decompression object is created.
public jpeg_input_controller ( jpeg_decompress_struct cinfo ) : System
cinfo jpeg_decompress_struct
return System
        public jpeg_input_controller(jpeg_decompress_struct cinfo)
        {
            m_cinfo = cinfo;

            /* Initialize state: can't use reset_input_controller since we don't
            * want to try to reset other modules yet.
            */
            m_inheaders = 1;
        }