Пример #1
0
        private bool _needsEob;          // indicates whether or not we have compressed any data

        public FastEncoder(bool doGZip)
        {
            _usingGzip = doGZip;
            _inputWindow = new FastEncoderWindow();
            _inputBuffer = new DeflateInput();
            _output = new Output();
            _currentMatch = new Match();
        }
Пример #2
0
        private bool _needsEob;               // indicates whether or not we have compressed any data

        public FastEncoder(bool doGZip)
        {
            _usingGzip    = doGZip;
            _inputWindow  = new FastEncoderWindow();
            _inputBuffer  = new DeflateInput();
            _output       = new Output();
            _currentMatch = new Match();
        }