-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
png: apng support #100
png: apng support #100
Conversation
libheif does not support animated avifs
Sync avifRGBImageAllocatePixels with github library version Signed-off-by: Zetrin0 <[email protected]>
В примере из официальной репы память в цикле выделяется, но не чистится, а указатель зануляется. Освобождаем в каждой итерации. Signed-off-by: Zetrin0 <[email protected]>
Набор для проверки |
Зачем тут коммиты про AVIF? И зачем их вообще так много? |
src/formats/png.c
Outdated
// buffer must be black and transparent at start | ||
memset(output_buffer, 0, buffer_size); | ||
|
||
for (png_uint_32 volatile frame_num = 0; frame_num < num_frames; frame_num++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
volatile??
src/formats/png.c
Outdated
} | ||
} | ||
|
||
static int decode_png_frames(struct image* ctx, png_structp png, png_infop info) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Очень длинная функция, её бы на части разбить.
И код нужно пропустить через clang-format.
src/formats/png.c
Outdated
free(ctx->frames[i].data); | ||
} | ||
|
||
tmp = realloc(ctx->frames, 1 * sizeof(*ctx->frames)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Зачем на 1 умножать?
Извиняюсь, но я не знаю. Я не очень часто отправляю PR. Я думал, что PR смержится в один коммит. |
Нужно отребейзиться на текущий мастер и засквошить свои коммиты в один через |
Возможность просматривать анимированные PNG, если в системе пропатчена libpng.