| OLD | NEW |
| 1 /* | 1 /* |
| 2 * The copyright in this software is being made available under the 2-clauses | 2 * The copyright in this software is being made available under the 2-clauses |
| 3 * BSD License, included below. This software may be subject to other third | 3 * BSD License, included below. This software may be subject to other third |
| 4 * party and contributor rights, including patent rights, and no such rights | 4 * party and contributor rights, including patent rights, and no such rights |
| 5 * are granted under this license. | 5 * are granted under this license. |
| 6 * | 6 * |
| 7 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium | 7 * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium |
| 8 * Copyright (c) 2002-2014, Professor Benoit Macq | 8 * Copyright (c) 2002-2014, Professor Benoit Macq |
| 9 * Copyright (c) 2001-2003, David Janssens | 9 * Copyright (c) 2001-2003, David Janssens |
| 10 * Copyright (c) 2002-2003, Yannick Verschueren | 10 * Copyright (c) 2002-2003, Yannick Verschueren |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 /** | 42 /** |
| 43 @file cio.h | 43 @file cio.h |
| 44 @brief Implementation of a byte input-output process (CIO) | 44 @brief Implementation of a byte input-output process (CIO) |
| 45 | 45 |
| 46 The functions in CIO.C have for goal to realize a byte input / output process. | 46 The functions in CIO.C have for goal to realize a byte input / output process. |
| 47 */ | 47 */ |
| 48 | 48 |
| 49 /** @defgroup CIO CIO - byte input-output stream */ | 49 /** @defgroup CIO CIO - byte input-output stream */ |
| 50 /*@{*/ | 50 /*@{*/ |
| 51 | 51 |
| 52 #include "opj_config.h" | 52 #include "opj_config_private.h" |
| 53 | 53 |
| 54 /* ----------------------------------------------------------------------- */ | 54 /* ----------------------------------------------------------------------- */ |
| 55 | 55 |
| 56 #if defined(OPJ_BIG_ENDIAN) | 56 #if defined(OPJ_BIG_ENDIAN) |
| 57 #define opj_write_bytes opj_write_bytes_BE | 57 #define opj_write_bytes opj_write_bytes_BE |
| 58 #define opj_read_bytes opj_read_bytes_BE | 58 #define opj_read_bytes opj_read_bytes_BE |
| 59 #define opj_write_double opj_write_double_BE | 59 #define opj_write_double opj_write_double_BE |
| 60 #define opj_read_double opj_read_double_BE | 60 #define opj_read_double opj_read_double_BE |
| 61 #define opj_write_float opj_write_float_BE | 61 #define opj_write_float opj_write_float_BE |
| 62 #define opj_read_float opj_read_float_BE | 62 #define opj_read_float opj_read_float_BE |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 OPJ_BOOL opj_stream_default_seek (OPJ_OFF_T p_nb_bytes, void * p_user_data); | 390 OPJ_BOOL opj_stream_default_seek (OPJ_OFF_T p_nb_bytes, void * p_user_data); |
| 391 | 391 |
| 392 /* ----------------------------------------------------------------------- */ | 392 /* ----------------------------------------------------------------------- */ |
| 393 /*@}*/ | 393 /*@}*/ |
| 394 | 394 |
| 395 /*@}*/ | 395 /*@}*/ |
| 396 | 396 |
| 397 | 397 |
| 398 #endif /* __CIO_H */ | 398 #endif /* __CIO_H */ |
| 399 | 399 |
| OLD | NEW |