[trunk]OPJ_STREAM_READ is now equal to OPJ_TRUE and OPJ_STREAM_WRITE to OPJ_FALSE

This commit is contained in:
Mickael Savinaud 2012-10-29 22:06:28 +00:00
parent a6a141d326
commit 4d32395fe1
1 changed files with 2 additions and 2 deletions

View File

@ -486,9 +486,9 @@ typedef void * opj_codec_t;
* Stream open flags. * Stream open flags.
*/ */
/** The stream was opened for reading. */ /** The stream was opened for reading. */
#define OPJ_STREAM_READ 0x0001 #define OPJ_STREAM_READ OPJ_TRUE
/** The stream was opened for writing. */ /** The stream was opened for writing. */
#define OPJ_STREAM_WRITE 0x0002 #define OPJ_STREAM_WRITE OPJ_FALSE