diff --git a/packages/qoi/decode.ts b/packages/qoi/decode.ts index ea8286c..5c23b6b 100644 --- a/packages/qoi/decode.ts +++ b/packages/qoi/decode.ts @@ -12,8 +12,8 @@ */ /** - * Notice: I (Jamie Sinclair) have copied this code from the JPEG encode module - * and modified it to decode JPEG images. + * Notice: I (Jamie Sinclair) have copied this code from the original and modified + * to align with the jSquash project structure. */ import type { QOIModule } from './codec/dec/qoi_dec.js'; diff --git a/packages/qoi/encode.ts b/packages/qoi/encode.ts index 4cd741b..ab2ff74 100644 --- a/packages/qoi/encode.ts +++ b/packages/qoi/encode.ts @@ -12,9 +12,8 @@ */ /** - * Notice: I (Jamie Sinclair) have modified this file. - * Updated to support a partial subset of Jpeg encoding options to be provided. - * The jpeg options are defaulted to defaults from the meta.ts file. + * Notice: I (Jamie Sinclair) have copied this code from the original and modified + * to align with the jSquash project structure. */ import type { QOIModule } from './codec/enc/qoi_enc.js';