[trunk] Remove remainings conversion issues in t2.c + clock.c

This commit is contained in:
Mathieu Malaterre 2014-03-03 16:08:03 +00:00
parent 7afad19c77
commit 44ca89eff7
2 changed files with 11 additions and 10 deletions

View File

@ -51,9 +51,9 @@ OPJ_FLOAT64 opj_clock(void) {
getrusage(0,&t); getrusage(0,&t);
/* (2) What is the elapsed time ? - CPU time = User time + System time */ /* (2) What is the elapsed time ? - CPU time = User time + System time */
/* (2a) Get the seconds */ /* (2a) Get the seconds */
procTime = t.ru_utime.tv_sec + t.ru_stime.tv_sec; procTime = (OPJ_FLOAT64)(t.ru_utime.tv_sec + t.ru_stime.tv_sec);
/* (2b) More precisely! Get the microseconds part ! */ /* (2b) More precisely! Get the microseconds part ! */
return ( procTime + (t.ru_utime.tv_usec + t.ru_stime.tv_usec) * 1e-6 ) ; return ( procTime + (OPJ_FLOAT64)(t.ru_utime.tv_usec + t.ru_stime.tv_usec) * 1e-6 ) ;
#endif #endif
} }

View File

@ -676,7 +676,7 @@ OPJ_BOOL opj_t2_encode_packet( OPJ_UINT32 tileno,
return OPJ_FALSE; /* modified to eliminate longjmp !! */ return OPJ_FALSE; /* modified to eliminate longjmp !! */
} }
l_nb_bytes = opj_bio_numbytes(bio); l_nb_bytes = (OPJ_UINT32)opj_bio_numbytes(bio);
c += l_nb_bytes; c += l_nb_bytes;
length -= l_nb_bytes; length -= l_nb_bytes;
@ -740,7 +740,8 @@ OPJ_BOOL opj_t2_encode_packet( OPJ_UINT32 tileno,
++band; ++band;
} }
* p_data_written += (c - dest); assert( c >= dest );
* p_data_written += (OPJ_UINT32)(c - dest);
return OPJ_TRUE; return OPJ_TRUE;
} }
@ -876,7 +877,7 @@ OPJ_BOOL opj_t2_read_packet_header( opj_t2_t* p_t2,
else { /* Normal Case */ else { /* Normal Case */
l_header_data_start = &(l_current_data); l_header_data_start = &(l_current_data);
l_header_data = *l_header_data_start; l_header_data = *l_header_data_start;
l_remaining_length = p_src_data+p_max_length-l_header_data; l_remaining_length = (OPJ_UINT32)(p_src_data+p_max_length-l_header_data);
l_modified_length_ptr = &(l_remaining_length); l_modified_length_ptr = &(l_remaining_length);
} }
@ -900,7 +901,7 @@ OPJ_BOOL opj_t2_read_packet_header( opj_t2_t* p_t2,
} }
} }
l_header_length = (l_header_data - *l_header_data_start); l_header_length = (OPJ_UINT32)(l_header_data - *l_header_data_start);
*l_modified_length_ptr -= l_header_length; *l_modified_length_ptr -= l_header_length;
*l_header_data_start += l_header_length; *l_header_data_start += l_header_length;
@ -913,7 +914,7 @@ OPJ_BOOL opj_t2_read_packet_header( opj_t2_t* p_t2,
/* INDEX >> */ /* INDEX >> */
* p_is_data_present = OPJ_FALSE; * p_is_data_present = OPJ_FALSE;
*p_data_read = l_current_data - p_src_data; *p_data_read = (OPJ_UINT32)(l_current_data - p_src_data);
return OPJ_TRUE; return OPJ_TRUE;
} }
@ -1026,7 +1027,7 @@ OPJ_BOOL opj_t2_read_packet_header( opj_t2_t* p_t2,
} }
} }
l_header_length = (l_header_data - *l_header_data_start); l_header_length = (OPJ_UINT32)(l_header_data - *l_header_data_start);
*l_modified_length_ptr -= l_header_length; *l_modified_length_ptr -= l_header_length;
*l_header_data_start += l_header_length; *l_header_data_start += l_header_length;
@ -1039,7 +1040,7 @@ OPJ_BOOL opj_t2_read_packet_header( opj_t2_t* p_t2,
/* INDEX >> */ /* INDEX >> */
*p_is_data_present = OPJ_TRUE; *p_is_data_present = OPJ_TRUE;
*p_data_read = l_current_data - p_src_data; *p_data_read = (OPJ_UINT32)(l_current_data - p_src_data);
return OPJ_TRUE; return OPJ_TRUE;
} }
@ -1162,7 +1163,7 @@ OPJ_BOOL opj_t2_read_packet_data( opj_t2_t* p_t2,
++l_band; ++l_band;
} }
*(p_data_read) = l_current_data - p_src_data; *(p_data_read) = (OPJ_UINT32)(l_current_data - p_src_data);
return OPJ_TRUE; return OPJ_TRUE;
} }