Skip to content

Commit 42b7688

Browse files
committed
gpujpegtool: print itereleaved as yes/no
1 parent 62cca34 commit 42b7688

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ static int print_image_info_jpeg(const char *filename, int verbose) {
204204
if (gpujpeg_decoder_get_image_info2(jpeg, len, &info, verbose, GPUJPEG_COUNT_SEG_COUNT_REQ) == 0) {
205205
print_gpujpeg_image_parameters(info.param_image, false,
206206
gpujpeg_subsampling_get_name(info.param.comp_count, info.param.sampling_factor));
207-
printf("interleaved: %d\n", info.param.interleaved);
207+
printf("interleaved: %s\n", info.param.interleaved ? "yes" : "no");
208208
printf("header type: %s\n", gpujpeg_header_type_get_name(info.header_type));
209209
printf("orientation: %s\n", gpujpeg_orientation_get_name(info.metadata.orientation));
210210
if ( info.segment_count ) {

0 commit comments

Comments
 (0)