summaryrefslogtreecommitdiff
path: root/libopenjpeg/dwt.h
diff options
context:
space:
mode:
authorYannick Verschueren <unknown@unknown>2004-03-05 14:42:53 +0000
committerYannick Verschueren <unknown@unknown>2004-03-05 14:42:53 +0000
commit1f7520c88bebce9f3c2c91c8b3e9be562ef44927 (patch)
treeeffb6ce39402d6bc3c109cde3154eea3c73d2baa /libopenjpeg/dwt.h
parent8ed5edaefaa3fddec7f35e3284e58068a93e5514 (diff)
Update to version 0.9 : option -reduce added on decoder
Diffstat (limited to 'libopenjpeg/dwt.h')
-rw-r--r--libopenjpeg/dwt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libopenjpeg/dwt.h b/libopenjpeg/dwt.h
index fc0bfa51..8f38bb9e 100644
--- a/libopenjpeg/dwt.h
+++ b/libopenjpeg/dwt.h
@@ -51,7 +51,7 @@ void dwt_encode(int *a, int w, int h, tcd_tilecomp_t * tilec, int l);
* row_tilec : tile component information (previous tile on the same row)
* col_tilec : tile component information (previous tile on the same column)
*/
-void dwt_decode(int *a, int w, int h, tcd_tilecomp_t * tilec, int l);//, tcd_tilecomp_t * row_tilec, tcd_tilecomp_t * col_tilec);
+void dwt_decode(int *a, int w, int h, tcd_tilecomp_t * tilec, int l, int stop);
/*
* Get the gain of a subband for the reversible DWT
@@ -82,7 +82,7 @@ void dwt_encode_real(int *a, int w, int h, tcd_tilecomp_t * tilec, int l);
* h: height of the component
* l: number of decomposition levels in the DWT
*/
-void dwt_decode_real(int *a, int w, int h, tcd_tilecomp_t * tilec, int l);//, tcd_tilecomp_t * row_tilec, tcd_tilecomp_t * col_tilec);
+void dwt_decode_real(int *a, int w, int h, tcd_tilecomp_t * tilec, int l, int stop);
/*
* Get the gain of a subband for the irreversible DWT
* orient: number that identifies the subband (0->LL, 1->HL, 2->LH, 3->HH)