fix wrong git ignore

This commit is contained in:
Adrian Zürcher
2025-12-15 17:44:00 +01:00
parent ed9f31bb96
commit 8f313c00f0
126 changed files with 70589 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package core
import "errors"
var (
// ErrUnsupportedEncodingParameters error indicates that encoding/decoding was attempted with unsupported
// encoding parameters.
// For example when trying to encode with an unsupported Predictor (flate).
ErrUnsupportedEncodingParameters = errors.New("unsupported encoding parameters")
ErrNoCCITTFaxDecode = errors.New(" CCITTFaxDecode encoding is not yet implemented")
ErrNoJBIG2Decode = errors.New(" JBIG2Decode encoding is not yet implemented")
ErrNoJPXDecode = errors.New(" JPXDecode encoding is not yet implemented")
)