Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 1 | // Copyright 2019 Joe Drago. All rights reserved. |
| 2 | // SPDX-License-Identifier: BSD-2-Clause |
| 3 | |
| 4 | #include "avif/avif.h" |
| 5 | |
Joe Drago | ddd2345 | 2020-04-15 13:23:08 -0700 | [diff] [blame] | 6 | #include "avifjpeg.h" |
Joe Drago | c647acc | 2020-03-10 18:06:12 -0700 | [diff] [blame] | 7 | #include "avifpng.h" |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 8 | #include "avifutil.h" |
| 9 | #include "y4m.h" |
| 10 | |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 11 | #include <inttypes.h> |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 12 | #include <stdio.h> |
Joe Drago | c647acc | 2020-03-10 18:06:12 -0700 | [diff] [blame] | 13 | #include <stdlib.h> |
Joe Drago | 7f98985 | 2019-07-24 10:35:17 -0700 | [diff] [blame] | 14 | #include <string.h> |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 15 | |
Joe Drago | ddd2345 | 2020-04-15 13:23:08 -0700 | [diff] [blame] | 16 | #define DEFAULT_JPEG_QUALITY 90 |
| 17 | |
Joe Drago | c8fc62f | 2020-02-28 09:39:40 -0800 | [diff] [blame] | 18 | #define NEXTARG() \ |
| 19 | if (((argIndex + 1) == argc) || (argv[argIndex + 1][0] == '-')) { \ |
| 20 | fprintf(stderr, "%s requires an argument.", arg); \ |
| 21 | return 1; \ |
| 22 | } \ |
| 23 | arg = argv[++argIndex] |
| 24 | |
wantehchang | 37cf0c6 | 2020-03-08 17:25:18 -0700 | [diff] [blame] | 25 | static void syntax(void) |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 26 | { |
Wan-Teh Chang | a013325 | 2020-04-23 16:02:49 -0700 | [diff] [blame] | 27 | printf("Syntax: avifdec [options] input.avif output.[jpg|jpeg|png|y4m]\n"); |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 28 | printf(" avifdec --info input.avif\n"); |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 29 | printf("Options:\n"); |
Joe Drago | c8fc62f | 2020-02-28 09:39:40 -0800 | [diff] [blame] | 30 | printf(" -h,--help : Show syntax help\n"); |
Shun Sakai | 6981426 | 2020-11-06 18:38:10 +0900 | [diff] [blame] | 31 | printf(" -V,--version : Show the version number\n"); |
Joe Drago | 5a98790 | 2021-06-07 15:04:25 -0700 | [diff] [blame] | 32 | printf(" -j,--jobs J : Number of jobs (worker threads, default: 1. Use \"all\" to use all available cores)\n"); |
Joe Drago | c8fc62f | 2020-02-28 09:39:40 -0800 | [diff] [blame] | 33 | printf(" -c,--codec C : AV1 codec to use (choose from versions list below)\n"); |
Joe Drago | ddd2345 | 2020-04-15 13:23:08 -0700 | [diff] [blame] | 34 | printf(" -d,--depth D : Output depth [8,16]. (PNG only; For y4m, depth is retained, and JPEG is always 8bpc)\n"); |
Wan-Teh Chang | a013325 | 2020-04-23 16:02:49 -0700 | [diff] [blame] | 35 | printf(" -q,--quality Q : Output quality [0-100]. (JPEG only, default: %d)\n", DEFAULT_JPEG_QUALITY); |
Joe Drago | c7301f3 | 2021-07-14 14:35:36 -0700 | [diff] [blame] | 36 | printf(" --png-compress L : Set PNG compression level (PNG only; 0-9, 0=none, 9=max). Defaults to libpng's builtin default.\n"); |
Joe Drago | b7be24a | 2020-11-06 17:28:42 -0800 | [diff] [blame] | 37 | printf(" -u,--upsampling U : Chroma upsampling (for 420/422). automatic (default), fastest, best, nearest, or bilinear\n"); |
Wan-Teh Chang | d37ef74 | 2021-04-07 12:35:18 -0700 | [diff] [blame] | 38 | printf(" -r,--raw-color : Output raw RGB values instead of multiplying by alpha when saving to opaque formats\n"); |
| 39 | printf(" (JPEG only; not applicable to y4m)\n"); |
Shun Sakai | e3c279d | 2022-04-12 00:50:09 +0900 | [diff] [blame] | 40 | printf(" --index I : When decoding an image sequence or progressive image, specify which frame index to decode (Default: 0)\n"); |
Joe Drago | 8df04be | 2021-06-14 14:22:18 -0700 | [diff] [blame] | 41 | printf(" --progressive : Enable progressive AVIF processing. If a progressive image is encountered and --progressive is passed,\n"); |
| 42 | printf(" avifdec will use --index to choose which layer to decode (in progressive order).\n"); |
Joe Drago | f5b98a6 | 2021-05-10 12:25:29 -0700 | [diff] [blame] | 43 | printf(" --no-strict : Disable strict decoding, which disables strict validation checks and errors\n"); |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 44 | printf(" -i,--info : Decode all frames and display all image information instead of saving to disk\n"); |
Joe Drago | 2fadd1d | 2020-09-11 12:31:14 -0700 | [diff] [blame] | 45 | printf(" --ignore-icc : If the input file contains an embedded ICC profile, ignore it (no-op if absent)\n"); |
Wan-Teh Chang | 980d585 | 2021-08-03 20:02:38 -0700 | [diff] [blame] | 46 | printf(" --size-limit C : Specifies the image size limit (in total pixels) that should be tolerated.\n"); |
| 47 | printf(" Default: %u, set to a smaller value to further restrict.\n", AVIF_DEFAULT_IMAGE_SIZE_LIMIT); |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 48 | printf("\n"); |
Joe Drago | 14968d8 | 2019-11-11 12:07:51 -0800 | [diff] [blame] | 49 | avifPrintVersions(); |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | int main(int argc, char * argv[]) |
| 53 | { |
| 54 | const char * inputFilename = NULL; |
| 55 | const char * outputFilename = NULL; |
Joe Drago | c647acc | 2020-03-10 18:06:12 -0700 | [diff] [blame] | 56 | int requestedDepth = 0; |
Joe Drago | ede5c20 | 2020-11-11 09:42:57 -0800 | [diff] [blame] | 57 | int jobs = 1; |
Joe Drago | ddd2345 | 2020-04-15 13:23:08 -0700 | [diff] [blame] | 58 | int jpegQuality = DEFAULT_JPEG_QUALITY; |
Joe Drago | c7301f3 | 2021-07-14 14:35:36 -0700 | [diff] [blame] | 59 | int pngCompressionLevel = -1; // -1 is a sentinel to avifPNGWrite() to skip calling png_set_compression_level() |
Joe Drago | c8fc62f | 2020-02-28 09:39:40 -0800 | [diff] [blame] | 60 | avifCodecChoice codecChoice = AVIF_CODEC_CHOICE_AUTO; |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 61 | avifBool infoOnly = AVIF_FALSE; |
Joe Drago | 0a0547b | 2020-10-30 12:28:33 -0700 | [diff] [blame] | 62 | avifChromaUpsampling chromaUpsampling = AVIF_CHROMA_UPSAMPLING_AUTOMATIC; |
Joe Drago | 2fadd1d | 2020-09-11 12:31:14 -0700 | [diff] [blame] | 63 | avifBool ignoreICC = AVIF_FALSE; |
Yuan Tong | d4f317b | 2021-03-01 22:18:22 +0800 | [diff] [blame] | 64 | avifBool rawColor = AVIF_FALSE; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 65 | avifBool allowProgressive = AVIF_FALSE; |
Joe Drago | f5b98a6 | 2021-05-10 12:25:29 -0700 | [diff] [blame] | 66 | avifStrictFlags strictFlags = AVIF_STRICT_ENABLED; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 67 | uint32_t frameIndex = 0; |
Wan-Teh Chang | 980d585 | 2021-08-03 20:02:38 -0700 | [diff] [blame] | 68 | uint32_t imageSizeLimit = AVIF_DEFAULT_IMAGE_SIZE_LIMIT; |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 69 | |
| 70 | if (argc < 2) { |
wantehchang | 37cf0c6 | 2020-03-08 17:25:18 -0700 | [diff] [blame] | 71 | syntax(); |
| 72 | return 1; |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 75 | int argIndex = 1; |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 76 | while (argIndex < argc) { |
| 77 | const char * arg = argv[argIndex]; |
| 78 | |
| 79 | if (!strcmp(arg, "-h") || !strcmp(arg, "--help")) { |
wantehchang | 37cf0c6 | 2020-03-08 17:25:18 -0700 | [diff] [blame] | 80 | syntax(); |
| 81 | return 0; |
Shun Sakai | 6981426 | 2020-11-06 18:38:10 +0900 | [diff] [blame] | 82 | } else if (!strcmp(arg, "-V") || !strcmp(arg, "--version")) { |
| 83 | avifPrintVersions(); |
| 84 | return 0; |
Joe Drago | ede5c20 | 2020-11-11 09:42:57 -0800 | [diff] [blame] | 85 | } else if (!strcmp(arg, "-j") || !strcmp(arg, "--jobs")) { |
| 86 | NEXTARG(); |
Joe Drago | 5a98790 | 2021-06-07 15:04:25 -0700 | [diff] [blame] | 87 | if (!strcmp(arg, "all")) { |
Joe Drago | 4eadcc5 | 2021-06-16 11:56:34 -0700 | [diff] [blame] | 88 | jobs = avifQueryCPUCount(); |
Joe Drago | 5a98790 | 2021-06-07 15:04:25 -0700 | [diff] [blame] | 89 | } else { |
| 90 | jobs = atoi(arg); |
| 91 | if (jobs < 1) { |
| 92 | jobs = 1; |
| 93 | } |
Joe Drago | ede5c20 | 2020-11-11 09:42:57 -0800 | [diff] [blame] | 94 | } |
Joe Drago | c8fc62f | 2020-02-28 09:39:40 -0800 | [diff] [blame] | 95 | } else if (!strcmp(arg, "-c") || !strcmp(arg, "--codec")) { |
| 96 | NEXTARG(); |
| 97 | codecChoice = avifCodecChoiceFromName(arg); |
| 98 | if (codecChoice == AVIF_CODEC_CHOICE_AUTO) { |
| 99 | fprintf(stderr, "ERROR: Unrecognized codec: %s\n", arg); |
| 100 | return 1; |
| 101 | } else { |
| 102 | const char * codecName = avifCodecName(codecChoice, AVIF_CODEC_FLAG_CAN_DECODE); |
| 103 | if (codecName == NULL) { |
| 104 | fprintf(stderr, "ERROR: AV1 Codec cannot decode: %s\n", arg); |
| 105 | return 1; |
| 106 | } |
| 107 | } |
Joe Drago | c647acc | 2020-03-10 18:06:12 -0700 | [diff] [blame] | 108 | } else if (!strcmp(arg, "-d") || !strcmp(arg, "--depth")) { |
| 109 | NEXTARG(); |
| 110 | requestedDepth = atoi(arg); |
| 111 | if ((requestedDepth != 8) && (requestedDepth != 16)) { |
| 112 | fprintf(stderr, "ERROR: invalid depth: %s\n", arg); |
| 113 | return 1; |
| 114 | } |
Joe Drago | ddd2345 | 2020-04-15 13:23:08 -0700 | [diff] [blame] | 115 | } else if (!strcmp(arg, "-q") || !strcmp(arg, "--quality")) { |
| 116 | NEXTARG(); |
| 117 | jpegQuality = atoi(arg); |
Wan-Teh Chang | a013325 | 2020-04-23 16:02:49 -0700 | [diff] [blame] | 118 | if (jpegQuality < 0) { |
| 119 | jpegQuality = 0; |
Joe Drago | ddd2345 | 2020-04-15 13:23:08 -0700 | [diff] [blame] | 120 | } else if (jpegQuality > 100) { |
| 121 | jpegQuality = 100; |
| 122 | } |
Joe Drago | c7301f3 | 2021-07-14 14:35:36 -0700 | [diff] [blame] | 123 | } else if (!strcmp(arg, "--png-compress")) { |
| 124 | NEXTARG(); |
| 125 | pngCompressionLevel = atoi(arg); |
| 126 | if (pngCompressionLevel < 0) { |
| 127 | pngCompressionLevel = 0; |
| 128 | } else if (pngCompressionLevel > 9) { |
| 129 | pngCompressionLevel = 9; |
| 130 | } |
Joe Drago | 17fee3f | 2020-07-01 17:08:50 -0700 | [diff] [blame] | 131 | } else if (!strcmp(arg, "-u") || !strcmp(arg, "--upsampling")) { |
| 132 | NEXTARG(); |
Joe Drago | 0a0547b | 2020-10-30 12:28:33 -0700 | [diff] [blame] | 133 | if (!strcmp(arg, "automatic")) { |
| 134 | chromaUpsampling = AVIF_CHROMA_UPSAMPLING_AUTOMATIC; |
Joe Drago | b7be24a | 2020-11-06 17:28:42 -0800 | [diff] [blame] | 135 | } else if (!strcmp(arg, "fastest")) { |
| 136 | chromaUpsampling = AVIF_CHROMA_UPSAMPLING_FASTEST; |
| 137 | } else if (!strcmp(arg, "best")) { |
| 138 | chromaUpsampling = AVIF_CHROMA_UPSAMPLING_BEST_QUALITY; |
Joe Drago | 17fee3f | 2020-07-01 17:08:50 -0700 | [diff] [blame] | 139 | } else if (!strcmp(arg, "nearest")) { |
| 140 | chromaUpsampling = AVIF_CHROMA_UPSAMPLING_NEAREST; |
Joe Drago | 0a0547b | 2020-10-30 12:28:33 -0700 | [diff] [blame] | 141 | } else if (!strcmp(arg, "bilinear")) { |
| 142 | chromaUpsampling = AVIF_CHROMA_UPSAMPLING_BILINEAR; |
Joe Drago | 17fee3f | 2020-07-01 17:08:50 -0700 | [diff] [blame] | 143 | } else { |
| 144 | fprintf(stderr, "ERROR: invalid upsampling: %s\n", arg); |
| 145 | return 1; |
| 146 | } |
Yuan Tong | d4f317b | 2021-03-01 22:18:22 +0800 | [diff] [blame] | 147 | } else if (!strcmp(arg, "-r") || !strcmp(arg, "--raw-color")) { |
| 148 | rawColor = AVIF_TRUE; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 149 | } else if (!strcmp(arg, "--progressive")) { |
| 150 | allowProgressive = AVIF_TRUE; |
| 151 | } else if (!strcmp(arg, "--index")) { |
| 152 | NEXTARG(); |
| 153 | frameIndex = (uint32_t)atoi(arg); |
Joe Drago | f5b98a6 | 2021-05-10 12:25:29 -0700 | [diff] [blame] | 154 | } else if (!strcmp(arg, "--no-strict")) { |
| 155 | strictFlags = AVIF_STRICT_DISABLED; |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 156 | } else if (!strcmp(arg, "-i") || !strcmp(arg, "--info")) { |
| 157 | infoOnly = AVIF_TRUE; |
Joe Drago | 2fadd1d | 2020-09-11 12:31:14 -0700 | [diff] [blame] | 158 | } else if (!strcmp(arg, "--ignore-icc")) { |
| 159 | ignoreICC = AVIF_TRUE; |
Wan-Teh Chang | 980d585 | 2021-08-03 20:02:38 -0700 | [diff] [blame] | 160 | } else if (!strcmp(arg, "--size-limit")) { |
| 161 | NEXTARG(); |
| 162 | imageSizeLimit = strtoul(arg, NULL, 10); |
| 163 | if ((imageSizeLimit > AVIF_DEFAULT_IMAGE_SIZE_LIMIT) || (imageSizeLimit == 0)) { |
| 164 | fprintf(stderr, "ERROR: invalid image size limit: %s\n", arg); |
| 165 | return 1; |
| 166 | } |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 167 | } else { |
| 168 | // Positional argument |
| 169 | if (!inputFilename) { |
| 170 | inputFilename = arg; |
| 171 | } else if (!outputFilename) { |
| 172 | outputFilename = arg; |
| 173 | } else { |
| 174 | fprintf(stderr, "Too many positional arguments: %s\n", arg); |
wantehchang | 37cf0c6 | 2020-03-08 17:25:18 -0700 | [diff] [blame] | 175 | syntax(); |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 176 | return 1; |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | ++argIndex; |
| 181 | } |
| 182 | |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 183 | if (!inputFilename) { |
wantehchang | 37cf0c6 | 2020-03-08 17:25:18 -0700 | [diff] [blame] | 184 | syntax(); |
| 185 | return 1; |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 188 | if (infoOnly) { |
| 189 | if (!inputFilename || outputFilename) { |
| 190 | syntax(); |
| 191 | return 1; |
| 192 | } |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 193 | |
| 194 | avifDecoder * decoder = avifDecoderCreate(); |
| 195 | decoder->maxThreads = jobs; |
| 196 | decoder->codecChoice = codecChoice; |
Wan-Teh Chang | 980d585 | 2021-08-03 20:02:38 -0700 | [diff] [blame] | 197 | decoder->imageSizeLimit = imageSizeLimit; |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 198 | decoder->strictFlags = strictFlags; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 199 | decoder->allowProgressive = allowProgressive; |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 200 | avifResult result = avifDecoderSetIOFile(decoder, inputFilename); |
| 201 | if (result != AVIF_RESULT_OK) { |
| 202 | fprintf(stderr, "Cannot open file for read: %s\n", inputFilename); |
| 203 | avifDecoderDestroy(decoder); |
| 204 | return 1; |
| 205 | } |
| 206 | result = avifDecoderParse(decoder); |
| 207 | if (result == AVIF_RESULT_OK) { |
| 208 | printf("Image decoded: %s\n", inputFilename); |
| 209 | avifContainerDump(decoder); |
| 210 | |
| 211 | printf(" * %" PRIu64 " timescales per second, %2.2f seconds (%" PRIu64 " timescales), %d frame%s\n", |
| 212 | decoder->timescale, |
| 213 | decoder->duration, |
| 214 | decoder->durationInTimescales, |
| 215 | decoder->imageCount, |
| 216 | (decoder->imageCount == 1) ? "" : "s"); |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 217 | if (decoder->imageCount > 1) { |
| 218 | printf(" * %s Frames: (%u expected frames)\n", |
| 219 | (decoder->progressiveState != AVIF_PROGRESSIVE_STATE_UNAVAILABLE) ? "Progressive Image" : "Image Sequence", |
| 220 | decoder->imageCount); |
| 221 | } else { |
| 222 | printf(" * Frame:\n"); |
| 223 | } |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 224 | |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 225 | int currIndex = 0; |
Wan-Teh Chang | c3c8afb | 2021-07-13 16:26:51 -0700 | [diff] [blame] | 226 | avifResult nextImageResult; |
| 227 | while ((nextImageResult = avifDecoderNextImage(decoder)) == AVIF_RESULT_OK) { |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 228 | printf(" * Decoded frame [%d] [pts %2.2f (%" PRIu64 " timescales)] [duration %2.2f (%" PRIu64 " timescales)] [%ux%u]\n", |
| 229 | currIndex, |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 230 | decoder->imageTiming.pts, |
| 231 | decoder->imageTiming.ptsInTimescales, |
| 232 | decoder->imageTiming.duration, |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 233 | decoder->imageTiming.durationInTimescales, |
| 234 | decoder->image->width, |
| 235 | decoder->image->height); |
| 236 | ++currIndex; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 237 | } |
| 238 | if (nextImageResult != AVIF_RESULT_NO_IMAGES_REMAINING) { |
| 239 | printf("ERROR: Failed to decode frame: %s\n", avifResultToString(nextImageResult)); |
| 240 | avifDumpDiagnostics(&decoder->diag); |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 241 | } |
| 242 | } else { |
| 243 | printf("ERROR: Failed to decode image: %s\n", avifResultToString(result)); |
| 244 | avifDumpDiagnostics(&decoder->diag); |
| 245 | } |
| 246 | |
| 247 | avifDecoderDestroy(decoder); |
| 248 | return 0; |
Joe Drago | a0bc053 | 2020-06-26 13:08:59 -0700 | [diff] [blame] | 249 | } else { |
| 250 | if (!inputFilename || !outputFilename) { |
| 251 | syntax(); |
| 252 | return 1; |
| 253 | } |
| 254 | } |
| 255 | |
Joe Drago | ede5c20 | 2020-11-11 09:42:57 -0800 | [diff] [blame] | 256 | printf("Decoding with AV1 codec '%s' (%d worker thread%s), please wait...\n", |
| 257 | avifCodecName(codecChoice, AVIF_CODEC_FLAG_CAN_DECODE), |
| 258 | jobs, |
| 259 | (jobs == 1) ? "" : "s"); |
Joe Drago | c8fc62f | 2020-02-28 09:39:40 -0800 | [diff] [blame] | 260 | |
wantehchang | ddaa5c4 | 2020-03-08 17:23:58 -0700 | [diff] [blame] | 261 | int returnCode = 0; |
Joe Drago | 0b05eee | 2019-06-12 13:24:39 -0700 | [diff] [blame] | 262 | avifDecoder * decoder = avifDecoderCreate(); |
Joe Drago | ede5c20 | 2020-11-11 09:42:57 -0800 | [diff] [blame] | 263 | decoder->maxThreads = jobs; |
Joe Drago | 1bf61a1 | 2020-09-11 15:21:23 -0700 | [diff] [blame] | 264 | decoder->codecChoice = codecChoice; |
Wan-Teh Chang | 980d585 | 2021-08-03 20:02:38 -0700 | [diff] [blame] | 265 | decoder->imageSizeLimit = imageSizeLimit; |
Joe Drago | 9b942c2 | 2021-05-06 12:33:12 -0700 | [diff] [blame] | 266 | decoder->strictFlags = strictFlags; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 267 | decoder->allowProgressive = allowProgressive; |
Joe Drago | c647acc | 2020-03-10 18:06:12 -0700 | [diff] [blame] | 268 | |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 269 | avifResult result = avifDecoderSetIOFile(decoder, inputFilename); |
| 270 | if (result != AVIF_RESULT_OK) { |
| 271 | fprintf(stderr, "Cannot open file for read: %s\n", inputFilename); |
| 272 | returnCode = 1; |
| 273 | goto cleanup; |
| 274 | } |
Joe Drago | 2fadd1d | 2020-09-11 12:31:14 -0700 | [diff] [blame] | 275 | |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 276 | result = avifDecoderParse(decoder); |
| 277 | if (result != AVIF_RESULT_OK) { |
| 278 | fprintf(stderr, "ERROR: Failed to parse image: %s\n", avifResultToString(result)); |
| 279 | returnCode = 1; |
| 280 | goto cleanup; |
| 281 | } |
| 282 | |
| 283 | result = avifDecoderNthImage(decoder, frameIndex); |
| 284 | if (result != AVIF_RESULT_OK) { |
| 285 | fprintf(stderr, "ERROR: Failed to decode image: %s\n", avifResultToString(result)); |
| 286 | returnCode = 1; |
| 287 | goto cleanup; |
| 288 | } |
| 289 | |
| 290 | printf("Image decoded: %s\n", inputFilename); |
| 291 | printf("Image details:\n"); |
| 292 | avifImageDump(decoder->image, 0, 0, decoder->progressiveState); |
| 293 | |
| 294 | if (ignoreICC && (decoder->image->icc.size > 0)) { |
| 295 | printf("[--ignore-icc] Discarding ICC profile.\n"); |
| 296 | avifImageSetProfileICC(decoder->image, NULL, 0); |
| 297 | } |
| 298 | |
| 299 | avifAppFileFormat outputFormat = avifGuessFileFormat(outputFilename); |
| 300 | if (outputFormat == AVIF_APP_FILE_FORMAT_UNKNOWN) { |
| 301 | fprintf(stderr, "Cannot determine output file extension: %s\n", outputFilename); |
| 302 | returnCode = 1; |
| 303 | } else if (outputFormat == AVIF_APP_FILE_FORMAT_Y4M) { |
| 304 | if (!y4mWrite(outputFilename, decoder->image)) { |
Wan-Teh Chang | 01884e4 | 2020-04-27 17:33:04 -0700 | [diff] [blame] | 305 | returnCode = 1; |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 306 | } |
| 307 | } else if (outputFormat == AVIF_APP_FILE_FORMAT_JPEG) { |
| 308 | // Bypass alpha multiply step during conversion |
| 309 | if (rawColor) { |
| 310 | decoder->image->alphaPremultiplied = AVIF_TRUE; |
| 311 | } |
| 312 | if (!avifJPEGWrite(outputFilename, decoder->image, jpegQuality, chromaUpsampling)) { |
| 313 | returnCode = 1; |
| 314 | } |
| 315 | } else if (outputFormat == AVIF_APP_FILE_FORMAT_PNG) { |
Joe Drago | c7301f3 | 2021-07-14 14:35:36 -0700 | [diff] [blame] | 316 | if (!avifPNGWrite(outputFilename, decoder->image, requestedDepth, chromaUpsampling, pngCompressionLevel)) { |
Wan-Teh Chang | a013325 | 2020-04-23 16:02:49 -0700 | [diff] [blame] | 317 | returnCode = 1; |
wantehchang | ddaa5c4 | 2020-03-08 17:23:58 -0700 | [diff] [blame] | 318 | } |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 319 | } else { |
Wan-Teh Chang | 4f10704 | 2021-07-13 16:34:24 -0700 | [diff] [blame] | 320 | fprintf(stderr, "Unsupported output file extension: %s\n", outputFilename); |
wantehchang | ddaa5c4 | 2020-03-08 17:23:58 -0700 | [diff] [blame] | 321 | returnCode = 1; |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 322 | } |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 323 | |
| 324 | cleanup: |
Wan-Teh Chang | e4b118f | 2021-07-13 16:41:55 -0700 | [diff] [blame] | 325 | if (returnCode != 0) { |
| 326 | avifDumpDiagnostics(&decoder->diag); |
Joe Drago | bffba3b | 2021-05-26 15:46:10 -0700 | [diff] [blame] | 327 | } |
Wan-Teh Chang | e4b118f | 2021-07-13 16:41:55 -0700 | [diff] [blame] | 328 | avifDecoderDestroy(decoder); |
wantehchang | ddaa5c4 | 2020-03-08 17:23:58 -0700 | [diff] [blame] | 329 | return returnCode; |
Joe Drago | b2f46c1 | 2019-04-24 20:14:36 -0700 | [diff] [blame] | 330 | } |