diff options
Diffstat (limited to 'third_party/libopenjpeg20/image.h')
-rw-r--r-- | third_party/libopenjpeg20/image.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/third_party/libopenjpeg20/image.h b/third_party/libopenjpeg20/image.h index e0e2772d40..bad83c6135 100644 --- a/third_party/libopenjpeg20/image.h +++ b/third_party/libopenjpeg20/image.h @@ -1,6 +1,6 @@ /* - * The copyright in this software is being made available under the 2-clauses - * BSD License, included below. This software may be subject to other third + * The copyright in this software is being made available under the 2-clauses + * BSD License, included below. This software may be subject to other third * party and contributor rights, including patent rights, and no such rights * are granted under this license. * @@ -28,8 +28,8 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef __IMAGE_H -#define __IMAGE_H +#ifndef OPJ_IMAGE_H +#define OPJ_IMAGE_H /** @file image.h @brief Implementation of operations on images (IMAGE) @@ -55,14 +55,16 @@ opj_image_t* opj_image_create0(void); /** * Updates the components characteristics of the image from the coding parameters. * - * @param p_image_header the image header to update. - * @param p_cp the coding parameters from which to update the image. + * @param p_image_header the image header to update. + * @param p_cp the coding parameters from which to update the image. */ -void opj_image_comp_header_update(opj_image_t * p_image, const struct opj_cp* p_cp); +void opj_image_comp_header_update(opj_image_t * p_image, + const struct opj_cp* p_cp); -void opj_copy_image_header(const opj_image_t* p_image_src, opj_image_t* p_image_dest); +void opj_copy_image_header(const opj_image_t* p_image_src, + opj_image_t* p_image_dest); /*@}*/ -#endif /* __IMAGE_H */ +#endif /* OPJ_IMAGE_H */ |