diff options
| author | Mickael Savinaud <savmickael@users.noreply.github.com> | 2012-10-29 22:06:28 +0000 |
|---|---|---|
| committer | Mickael Savinaud <savmickael@users.noreply.github.com> | 2012-10-29 22:06:28 +0000 |
| commit | 4d32395fe18618f99cc0e797a45d58b4aaf1be96 (patch) | |
| tree | 01e8a8821c7a8e8db356cd4cd2ed73121a323e6c /src/lib | |
| parent | a6a141d3262edfb741b564afadd5614089614858 (diff) | |
[trunk]OPJ_STREAM_READ is now equal to OPJ_TRUE and OPJ_STREAM_WRITE to OPJ_FALSE
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/openjp2/openjpeg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/openjp2/openjpeg.h b/src/lib/openjp2/openjpeg.h index 44fb8492..d560e304 100644 --- a/src/lib/openjp2/openjpeg.h +++ b/src/lib/openjp2/openjpeg.h @@ -486,9 +486,9 @@ typedef void * opj_codec_t; * Stream open flags. */ /** The stream was opened for reading. */ -#define OPJ_STREAM_READ 0x0001 +#define OPJ_STREAM_READ OPJ_TRUE /** The stream was opened for writing. */ -#define OPJ_STREAM_WRITE 0x0002 +#define OPJ_STREAM_WRITE OPJ_FALSE |
