X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fopenjpip%2Fbyte_manager.h;fp=src%2Flib%2Fopenjpip%2Fbyte_manager.h;h=3c7a91bef54d163aaf1acba85cfa24b8acf0b7a5;hb=1b72e85dc9a2b55c9142a74fb5b93338d59f92f0;hp=02c806e0b3f1485db20ae32b1669d56e0c4d0025;hpb=7a2773d3bab5c078d19edc7326957e95202a593c;p=openjpeg.git diff --git a/src/lib/openjpip/byte_manager.h b/src/lib/openjpip/byte_manager.h index 02c806e0..3c7a91be 100644 --- a/src/lib/openjpip/byte_manager.h +++ b/src/lib/openjpip/byte_manager.h @@ -42,7 +42,7 @@ typedef uint64_t Byte8_t; /** * fetch bytes of data in file stream * - * @param[in] fd file discriptor + * @param[in] fd file descriptor * @param[in] offset start Byte position * @param[in] size Byte length * @return pointer to the fetched data @@ -53,7 +53,7 @@ Byte_t * fetch_bytes(int fd, OPJ_OFF_T offset, OPJ_SIZE_T size); /** * fetch a 1-byte Byte codes in file stream * - * @param[in] fd file discriptor + * @param[in] fd file descriptor * @param[in] offset start Byte position * @return fetched codes */ @@ -62,7 +62,7 @@ Byte_t fetch_1byte(int fd, OPJ_OFF_T offset); /** * fetch a 2-byte big endian Byte codes in file stream * - * @param[in] fd file discriptor + * @param[in] fd file descriptor * @param[in] offset start Byte position * @return fetched codes */ @@ -71,7 +71,7 @@ Byte2_t fetch_2bytebigendian(int fd, OPJ_OFF_T offset); /** * fetch a 4-byte big endian Byte codes in file stream * - * @param[in] fd file discriptor + * @param[in] fd file descriptor * @param[in] offset start Byte position * @return fetched codes */ @@ -80,7 +80,7 @@ Byte4_t fetch_4bytebigendian(int fd, OPJ_OFF_T offset); /** * fetch a 8-byte big endian Byte codes in file stream * - * @param[in] fd file discriptor + * @param[in] fd file descriptor * @param[in] offset start Byte position * @return fetched codes */ @@ -122,7 +122,7 @@ void modify_4Bytecode(Byte4_t code, Byte_t *stream); /** * Get file size * - * @param[in] fd file discriptor + * @param[in] fd file descriptor * @return file size */ OPJ_OFF_T get_filesize(int fd);