-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added simple
avifdump
tool for aiding in AVIF debugging (work in pr…
…ogress)
- Loading branch information
Joe Drago
committed
Apr 15, 2020
1 parent
3e5134c
commit 21bc4df
Showing
4 changed files
with
101 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// Copyright 2019 Joe Drago. All rights reserved. | ||
// SPDX-License-Identifier: BSD-2-Clause | ||
|
||
#include "avif/avif.h" | ||
|
||
#include "avifutil.h" | ||
|
||
#include <stdio.h> | ||
#include <string.h> | ||
|
||
int syntax(void) | ||
{ | ||
printf("Syntax: aviffuzz input.avif\n"); | ||
return 0; | ||
} | ||
|
||
int main(int argc, char * argv[]) | ||
{ | ||
const char * inputFilename = NULL; | ||
if (argc < 2) { | ||
return 0; | ||
} | ||
inputFilename = argv[1]; | ||
|
||
FILE * inputFile = fopen(inputFilename, "rb"); | ||
if (!inputFile) { | ||
fprintf(stderr, "Cannot open file for read: %s\n", inputFilename); | ||
return 1; | ||
} | ||
fseek(inputFile, 0, SEEK_END); | ||
size_t inputFileSize = ftell(inputFile); | ||
fseek(inputFile, 0, SEEK_SET); | ||
|
||
if (inputFileSize < 1) { | ||
fprintf(stderr, "File too small: %s\n", inputFilename); | ||
fclose(inputFile); | ||
return 1; | ||
} | ||
|
||
avifRWData raw = AVIF_DATA_EMPTY; | ||
avifRWDataRealloc(&raw, inputFileSize); | ||
if (fread(raw.data, 1, inputFileSize, inputFile) != inputFileSize) { | ||
fprintf(stderr, "Failed to read %zu bytes: %s\n", inputFileSize, inputFilename); | ||
fclose(inputFile); | ||
avifRWDataFree(&raw); | ||
return 1; | ||
} | ||
|
||
fclose(inputFile); | ||
inputFile = NULL; | ||
|
||
avifDecoder * decoder = avifDecoderCreate(); | ||
avifResult result = avifDecoderParse(decoder, (avifROData *)&raw); | ||
if (result == AVIF_RESULT_OK) { | ||
printf("Image decoded: %s\n", inputFilename); | ||
|
||
int frameIndex = 0; | ||
avifBool firstImage = AVIF_TRUE; | ||
while (avifDecoderNextImage(decoder) == AVIF_RESULT_OK) { | ||
if (firstImage) { | ||
firstImage = AVIF_FALSE; | ||
avifImageDump(decoder->image); | ||
|
||
printf(" * %zu timescales per second, %2.2f seconds (%zu timescales), %d frame%s\n", | ||
decoder->timescale, | ||
decoder->duration, | ||
decoder->durationInTimescales, | ||
decoder->imageCount, | ||
(decoder->imageCount == 1) ? "" : "s"); | ||
printf(" * Frames:\n"); | ||
} | ||
|
||
printf(" * Decoded frame [%d] [pts %2.2f (%zu timescales)] [duration %2.2f (%zu timescales)]\n", | ||
frameIndex, | ||
decoder->imageTiming.pts, | ||
decoder->imageTiming.ptsInTimescales, | ||
decoder->imageTiming.duration, | ||
decoder->imageTiming.durationInTimescales); | ||
++frameIndex; | ||
} | ||
} else { | ||
printf("ERROR: Failed to decode image: %s\n", avifResultToString(result)); | ||
} | ||
|
||
avifRWDataFree(&raw); | ||
avifDecoderDestroy(decoder); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters