Skip to content

Commit

Permalink
Delete name codec AV1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamaika1 authored Dec 15, 2023
1 parent 4cac6e3 commit 29bd142
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/avifdec.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static void syntax(void)
printf(" -h,--help : Show syntax help\n");
printf(" -V,--version : Show the version number\n");
printf(" -j,--jobs J : Number of jobs (worker threads, default: 1. Use \"all\" to use all available cores)\n");
printf(" -c,--codec C : AV1 codec to use (choose from versions list below)\n");
printf(" -c,--codec C : Codec to use (choose from versions list below)\n");
printf(" -d,--depth D : Output depth [8,16]. (PNG only; For y4m, depth is retained, and JPEG is always 8bpc)\n");
printf(" -q,--quality Q : Output quality [0-100]. (JPEG only, default: %d)\n", DEFAULT_JPEG_QUALITY);
printf(" --png-compress L : Set PNG compression level (PNG only; 0-9, 0=none, 9=max). Defaults to libpng's builtin default.\n");
Expand Down Expand Up @@ -133,7 +133,7 @@ MAIN()
} else {
const char * codecName = avifCodecName(codecChoice, AVIF_CODEC_FLAG_CAN_DECODE);
if (codecName == NULL) {
fprintf(stderr, "ERROR: AV1 Codec cannot decode: %s\n", arg);
fprintf(stderr, "ERROR: Codec cannot decode: %s\n", arg);
return 1;
}
}
Expand Down Expand Up @@ -309,7 +309,7 @@ MAIN()
}
}

printf("Decoding with AV1 codec '%s' (%d worker thread%s), please wait...\n",
printf("Decoding with codec '%s' (%d worker thread%s), please wait...\n",
avifCodecName(codecChoice, AVIF_CODEC_FLAG_CAN_DECODE),
jobs,
(jobs == 1) ? "" : "s");
Expand Down

0 comments on commit 29bd142

Please sign in to comment.