STYLE: Add a lot of comments for the CMake build system
[openjpeg.git] / mj2 / mj2_convert.h
1 #include "mj2.h"
2
3 #ifndef __MJ2_CONVERT_H
4 #define __MJ2_CONVERT_H
5
6 int imagetoyuv(j2k_image_t * img, j2k_cp_t * cp, char *outfile);
7
8 int imagetobmp(j2k_image_t * img, j2k_cp_t * cp, char *outfile);
9
10 int yuvtoimage(FILE *yuvfile, mj2_tk_t * tk, j2k_image_t * img, 
11                int frame_num, int subsampling_dx, int subsampling_dy);
12
13 int yuv_num_frames(mj2_tk_t * tk, FILE *f);
14
15
16 #endif