diff options
Diffstat (limited to 'lib/jpegli/encode_streaming.h')
-rw-r--r-- | lib/jpegli/encode_streaming.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/jpegli/encode_streaming.h b/lib/jpegli/encode_streaming.h new file mode 100644 index 0000000..69acff4 --- /dev/null +++ b/lib/jpegli/encode_streaming.h @@ -0,0 +1,21 @@ +// Copyright (c) the JPEG XL Project Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +#ifndef LIB_JPEGLI_ENCODE_STREAMING_H_ +#define LIB_JPEGLI_ENCODE_STREAMING_H_ + +#include "lib/jpegli/encode_internal.h" + +namespace jpegli { + +void ComputeCoefficientsForiMCURow(j_compress_ptr cinfo); + +void ComputeTokensForiMCURow(j_compress_ptr cinfo); + +void WriteiMCURow(j_compress_ptr cinfo); + +} // namespace jpegli + +#endif // LIB_JPEGLI_ENCODE_STREAMING_H_ |