- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/jp2/ReaderWriterJP2.cpp
r12952 r13041 302 302 jas_image_t* jimage = jas_image_decode(in, -1, opt); // last is the option string whatto put there? 303 303 if(opt) delete[] opt; 304 305 if (!jimage) return ReadResult::FILE_NOT_HANDLED; 304 305 if (!jimage) return ReadResult::FILE_NOT_HANDLED; 306 306 307 307 int internalFormat = jimage->numcmpts_; … … 512 512 513 513 jas_stream_t* out = jas_stream_memopen(0, 0); 514 if (!out) 514 if (!out) 515 515 return WriteResult::ERROR_IN_WRITING_FILE; 516 516
