Index: third_party/libopenjpeg20/tcd.h |
diff --git a/third_party/libopenjpeg20/tcd.h b/third_party/libopenjpeg20/tcd.h |
index 9bef0fe7d9c3e11fe795b80bc37682f21ad6c44b..07f8379afd48cf307051fe2f7cb2fb0ac282d849 100644 |
--- a/third_party/libopenjpeg20/tcd.h |
+++ b/third_party/libopenjpeg20/tcd.h |
@@ -262,10 +262,11 @@ OPJ_BOOL opj_tcd_init( opj_tcd_t *p_tcd, |
* @param p_tcd the tile decoder. |
* @param p_tile_no the index of the tile received in sequence. This not necessarily lead to the |
* tile at index p_tile_no. |
+ * @param p_manager the event manager. |
* |
* @return true if the remaining data is sufficient. |
*/ |
-OPJ_BOOL opj_tcd_init_decode_tile(opj_tcd_t *p_tcd, OPJ_UINT32 p_tile_no); |
+OPJ_BOOL opj_tcd_init_decode_tile(opj_tcd_t *p_tcd, OPJ_UINT32 p_tile_no, opj_event_mgr_t* p_manager); |
void opj_tcd_makelayer_fixed(opj_tcd_t *tcd, OPJ_UINT32 layno, OPJ_UINT32 final); |
@@ -295,7 +296,7 @@ OPJ_UINT32 opj_tcd_get_decoded_tile_size (opj_tcd_t *p_tcd ); |
* @param p_data_written pointer to an int that is incremented by the number of bytes really written on p_dest |
* @param p_len Maximum length of the destination buffer |
* @param p_cstr_info Codestream information structure |
- * @return true if the coding is successfull. |
+ * @return true if the coding is successful. |
*/ |
OPJ_BOOL opj_tcd_encode_tile( opj_tcd_t *p_tcd, |
OPJ_UINT32 p_tile_no, |
@@ -312,12 +313,14 @@ Decode a tile from a buffer into a raw image |
@param len Length of source buffer |
@param tileno Number that identifies one of the tiles to be decoded |
@param cstr_info FIXME DOC |
+@param manager the event manager. |
*/ |
OPJ_BOOL opj_tcd_decode_tile( opj_tcd_t *tcd, |
OPJ_BYTE *src, |
OPJ_UINT32 len, |
OPJ_UINT32 tileno, |
- opj_codestream_index_t *cstr_info); |
+ opj_codestream_index_t *cstr_info, |
+ opj_event_mgr_t *manager); |
/** |
@@ -337,11 +340,12 @@ OPJ_UINT32 opj_tcd_get_encoded_tile_size ( opj_tcd_t *p_tcd ); |
* |
* @param p_tcd TCD handle. |
* @param p_tile_no current tile index to encode. |
+ * @param p_manager the event manager. |
* |
* @return true if the encoding values could be set (false otherwise). |
*/ |
OPJ_BOOL opj_tcd_init_encode_tile ( opj_tcd_t *p_tcd, |
- OPJ_UINT32 p_tile_no ); |
+ OPJ_UINT32 p_tile_no, opj_event_mgr_t* p_manager ); |
/** |
* Copies tile data from the given memory block onto the system. |