[trunk] Fix some C90 issues.

This commit is contained in:
Mathieu Malaterre 2012-09-10 09:42:29 +00:00
parent 20beb093a1
commit 3991bbe595
5 changed files with 45 additions and 45 deletions

View File

@ -109,10 +109,10 @@ int main(int argc, char *argv[]) {
movie = (opj_mj2_t*) dinfo->mj2_handle; movie = (opj_mj2_t*) dinfo->mj2_handle;
mj2_setup_decoder(movie, &parameters); mj2_setup_decoder(movie, &parameters);
if (mj2_read_struct(file, movie)) // Creating the movie structure if (mj2_read_struct(file, movie)) /* Creating the movie structure*/
return 1; return 1;
// Decode first video track /* Decode first video track */
tnum = 0; tnum = 0;
while (movie->tk[tnum].track_type != 0) while (movie->tk[tnum].track_type != 0)
tnum ++; tnum ++;
@ -124,9 +124,9 @@ int main(int argc, char *argv[]) {
for (snum=0; snum < track->num_samples; snum++) for (snum=0; snum < track->num_samples; snum++)
{ {
sample = &track->sample[snum]; sample = &track->sample[snum];
frame_codestream = (unsigned char*) malloc (sample->sample_size-8); // Skipping JP2C marker frame_codestream = (unsigned char*) malloc (sample->sample_size-8); /* Skipping JP2C marker*/
fseek(file,sample->offset+8,SEEK_SET); fseek(file,sample->offset+8,SEEK_SET);
fread(frame_codestream,sample->sample_size-8,1, file); // Assuming that jp and ftyp markers size do fread(frame_codestream,sample->sample_size-8,1, file); /* Assuming that jp and ftyp markers size do*/
sprintf(outfilename,"%s_%05d.j2k",argv[2],snum); sprintf(outfilename,"%s_%05d.j2k",argv[2],snum);
outfile = fopen(outfilename, "wb"); outfile = fopen(outfilename, "wb");

View File

@ -1236,10 +1236,10 @@ void mj2_write_stsd(mj2_tk_t * tk, opj_cio_t *cio)
if (tk->track_type == 0) { if (tk->track_type == 0) {
mj2_write_smj2(tk, cio); mj2_write_smj2(tk, cio);
} else if (tk->track_type == 1) { } else if (tk->track_type == 1) {
// Not implemented /* Not implemented*/
} }
if (tk->track_type == 2) { if (tk->track_type == 2) {
// Not implemented /* Not implemented*/
} }
@ -1287,10 +1287,10 @@ int mj2_read_stsd(mj2_tk_t * tk, opj_image_t * img, opj_cio_t *cio)
return 1; return 1;
} }
} else if (tk->track_type == 1) { } else if (tk->track_type == 1) {
len_2skip = cio_read(cio, 4); // Not implemented -> skipping box len_2skip = cio_read(cio, 4); /* Not implemented -> skipping box*/
cio_skip(cio,len_2skip - 4); cio_skip(cio,len_2skip - 4);
} else if (tk->track_type == 2) { } else if (tk->track_type == 2) {
len_2skip = cio_read(cio, 4); // Not implemented -> skipping box len_2skip = cio_read(cio, 4); /* Not implemented -> skipping box*/
cio_skip(cio,len_2skip - 4); cio_skip(cio,len_2skip - 4);
} }
@ -2111,7 +2111,7 @@ int mj2_read_mdhd(mj2_tk_t * tk, opj_cio_t *cio)
mj2_box_t box; mj2_box_t box;
mj2_read_boxhdr(&box, cio); mj2_read_boxhdr(&box, cio);
if (!(MJ2_MHDR == box.type || MJ2_MDHD == box.type)) { // Kakadu writes MHDR instead of MDHD if (!(MJ2_MHDR == box.type || MJ2_MDHD == box.type)) { /* Kakadu writes MHDR instead of MDHD*/
opj_event_msg(cio->cinfo, EVT_ERROR, "Error: Expected MDHD Marker\n"); opj_event_msg(cio->cinfo, EVT_ERROR, "Error: Expected MDHD Marker\n");
return 1; return 1;
} }
@ -2765,7 +2765,7 @@ void mj2_destroy_decompress(opj_mj2_t *movie) {
tk = &movie->tk[i]; tk = &movie->tk[i];
if (tk->name_size != 0) if (tk->name_size != 0)
opj_free(tk->name); opj_free(tk->name);
if (tk->track_type == 0) {// Video track if (tk->track_type == 0) {/* Video track*/
if (tk->jp2_struct.comps != NULL) if (tk->jp2_struct.comps != NULL)
opj_free(tk->jp2_struct.comps); opj_free(tk->jp2_struct.comps);
if (tk->jp2_struct.cl != NULL) if (tk->jp2_struct.cl != NULL)
@ -2821,20 +2821,20 @@ void mj2_setup_encoder(opj_mj2_t *movie, mj2_cparameters_t *parameters) {
if(movie && parameters) { if(movie && parameters) {
opj_jp2_t *jp2_struct; opj_jp2_t *jp2_struct;
movie->num_htk = 0; // No hint tracks movie->num_htk = 0; /* No hint tracks*/
movie->num_stk = 0; // No sound tracks movie->num_stk = 0; /* No sound tracks*/
movie->num_vtk = 1; // One video track movie->num_vtk = 1; /* One video track*/
movie->brand = MJ2_MJ2; // One brand: MJ2 movie->brand = MJ2_MJ2; /* One brand: MJ2*/
movie->num_cl = 2; // Two compatible brands: MJ2 and MJ2S movie->num_cl = 2; /* Two compatible brands: MJ2 and MJ2S*/
movie->cl = (unsigned int*) opj_malloc(movie->num_cl * sizeof(unsigned int)); movie->cl = (unsigned int*) opj_malloc(movie->num_cl * sizeof(unsigned int));
movie->cl[0] = MJ2_MJ2; movie->cl[0] = MJ2_MJ2;
movie->cl[1] = MJ2_MJ2S; movie->cl[1] = MJ2_MJ2S;
movie->minversion = 0; // Minimum version: 0 movie->minversion = 0; /* Minimum version: 0 */
movie->tk = (mj2_tk_t*) opj_malloc(sizeof(mj2_tk_t)); //Memory allocation for the video track movie->tk = (mj2_tk_t*) opj_malloc(sizeof(mj2_tk_t)); /*Memory allocation for the video track*/
movie->tk[0].track_ID = 1; // Track ID = 1 movie->tk[0].track_ID = 1; /* Track ID = 1 */
movie->tk[0].track_type = 0; // Video track movie->tk[0].track_type = 0; /* Video track */
movie->tk[0].Dim[0] = parameters->Dim[0]; movie->tk[0].Dim[0] = parameters->Dim[0];
movie->tk[0].Dim[1] = parameters->Dim[1]; movie->tk[0].Dim[1] = parameters->Dim[1];
movie->tk[0].w = parameters->w; movie->tk[0].w = parameters->w;
@ -2848,7 +2848,7 @@ void mj2_setup_encoder(opj_mj2_t *movie, mj2_cparameters_t *parameters) {
movie->tk[0].depth = parameters->prec; movie->tk[0].depth = parameters->prec;
jp2_struct = &movie->tk[0].jp2_struct; jp2_struct = &movie->tk[0].jp2_struct;
jp2_struct->numcomps = parameters->numcomps; // NC jp2_struct->numcomps = parameters->numcomps; /* NC */
jp2_struct->comps = (opj_jp2_comps_t*) opj_malloc(jp2_struct->numcomps * sizeof(opj_jp2_comps_t)); jp2_struct->comps = (opj_jp2_comps_t*) opj_malloc(jp2_struct->numcomps * sizeof(opj_jp2_comps_t));
jp2_struct->precedence = 0; /* PRECEDENCE*/ jp2_struct->precedence = 0; /* PRECEDENCE*/
jp2_struct->approx = 0; /* APPROX*/ jp2_struct->approx = 0; /* APPROX*/
@ -2884,7 +2884,7 @@ void mj2_destroy_compress(opj_mj2_t *movie) {
tk = &movie->tk[i]; tk = &movie->tk[i];
if (tk->name_size != 0) if (tk->name_size != 0)
opj_free(tk->name); opj_free(tk->name);
if (tk->track_type == 0) {// Video track if (tk->track_type == 0) {/* Video track*/
if (tk->jp2_struct.comps != NULL) if (tk->jp2_struct.comps != NULL)
opj_free(tk->jp2_struct.comps); opj_free(tk->jp2_struct.comps);
if (tk->jp2_struct.cl != NULL) if (tk->jp2_struct.cl != NULL)

View File

@ -67,12 +67,12 @@ unsigned int yuv_num_frames(mj2_tk_t * tk, char *infile)
return (unsigned int)(end_of_f / frame_size); return (unsigned int)(end_of_f / frame_size);
} }
// ----------------------- /* ----------------------- */
// /* */
// /* */
// YUV to IMAGE /* YUV to IMAGE */
// /* */
// ----------------------- /* ----------------------- */
opj_image_t *mj2_image_create(mj2_tk_t * tk, opj_cparameters_t *parameters) opj_image_t *mj2_image_create(mj2_tk_t * tk, opj_cparameters_t *parameters)
{ {
@ -169,12 +169,12 @@ char yuvtoimage(mj2_tk_t * tk, opj_image_t * img, int frame_num, opj_cparameters
// ----------------------- /* ----------------------- */
// /* */
// /* */
// IMAGE to YUV /* IMAGE to YUV */
// /* */
// ----------------------- /* ----------------------- */
opj_bool imagetoyuv(opj_image_t * img, char *outfile) opj_bool imagetoyuv(opj_image_t * img, char *outfile)
@ -263,12 +263,12 @@ opj_bool imagetoyuv(opj_image_t * img, char *outfile)
return OPJ_TRUE; return OPJ_TRUE;
} }
// ----------------------- /* ----------------------- */
// /* */
// /* */
// IMAGE to BMP /* IMAGE to BMP */
// /* */
// ----------------------- /* ----------------------- */
int imagetobmp(opj_image_t * img, char *outfile) { int imagetobmp(opj_image_t * img, char *outfile) {
int w,wr,h,hr,i,pad; int w,wr,h,hr,i,pad;
@ -353,11 +353,11 @@ int imagetobmp(opj_image_t * img, char *outfile) {
for (i = 0; i < wr * hr; i++) { for (i = 0; i < wr * hr; i++) {
unsigned char R, G, B; unsigned char R, G, B;
/* a modifier */ /* a modifier */
// R = img->comps[0].data[w * h - ((i) / (w) + 1) * w + (i) % (w)]; /* R = img->comps[0].data[w * h - ((i) / (w) + 1) * w + (i) % (w)];*/
R = img->comps[0].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)]; R = img->comps[0].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
// G = img->comps[1].data[w * h - ((i) / (w) + 1) * w + (i) % (w)]; /* G = img->comps[1].data[w * h - ((i) / (w) + 1) * w + (i) % (w)];*/
G = img->comps[1].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)]; G = img->comps[1].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
// B = img->comps[2].data[w * h - ((i) / (w) + 1) * w + (i) % (w)]; /* B = img->comps[2].data[w * h - ((i) / (w) + 1) * w + (i) % (w)];*/
B = img->comps[2].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)]; B = img->comps[2].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
fprintf(f, "%c%c%c", B, G, R); fprintf(f, "%c%c%c", B, G, R);

View File

@ -179,7 +179,7 @@ opj_bool j2k_add_marker(opj_codestream_info_t *cstr_info, unsigned short int typ
cstr_info->marknum = 0; cstr_info->marknum = 0;
cstr_info->maxmarknum = 0; cstr_info->maxmarknum = 0;
/* opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory to add a marker\n"); */ /* opj_event_msg_v2(p_manager, EVT_ERROR, "Not enough memory to add a marker\n"); */
// TODO_test_add_marker_result; /* TODO_test_add_marker_result;*/
return OPJ_FALSE; return OPJ_FALSE;
} }
cstr_info->marker = new_marker; cstr_info->marker = new_marker;

View File

@ -327,7 +327,7 @@ void jpwl_epb_write(opj_j2k_t *j2k, jpwl_epb_ms_t *epb, unsigned char *buf) {
/* update markers struct */ /* update markers struct */
j2k_add_marker(j2k->cstr_info, J2K_MS_EPB, -1, epb->Lepb + 2); j2k_add_marker(j2k->cstr_info, J2K_MS_EPB, -1, epb->Lepb + 2);
}; }
jpwl_epc_ms_t *jpwl_epc_create(opj_j2k_t *j2k, opj_bool esd_on, opj_bool red_on, opj_bool epb_on, opj_bool info_on) { jpwl_epc_ms_t *jpwl_epc_create(opj_j2k_t *j2k, opj_bool esd_on, opj_bool red_on, opj_bool epb_on, opj_bool info_on) {
@ -1190,7 +1190,7 @@ void jpwl_epc_write(opj_j2k_t *j2k, jpwl_epc_ms_t *epc, unsigned char *buf) {
/* update markers struct */ /* update markers struct */
j2k_add_marker(j2k->cstr_info, J2K_MS_EPC, -1, epc->Lepc + 2); j2k_add_marker(j2k->cstr_info, J2K_MS_EPC, -1, epc->Lepc + 2);
}; }
int jpwl_esds_add(opj_j2k_t *j2k, jpwl_marker_t *jwmarker, int *jwmarker_num, int jpwl_esds_add(opj_j2k_t *j2k, jpwl_marker_t *jwmarker, int *jwmarker_num,
int comps, unsigned char addrm, unsigned char ad_size, int comps, unsigned char addrm, unsigned char ad_size,