mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
occasionally crashes encode with the SEI data #183
Labels
No labels
bug
enhancement
help wanted
invalid
pull-request
question
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: starred/ffmpeg-rockchip#183
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @barryzheng on GitHub (Jun 27, 2025).
Descripiton:
When encoding, I use the
av_frame_make_writableandav_frame_new_side_datainterfaces to add SEI information. After encoding, when releasing the AVFrame resources usingav_frame_unref, the program occasionally crashes. The stack trace indicates that the issue occurs when freeing the resourceswipe_side_data, error shown:`
`
please check it, Thanks.
@nyanmisaka commented on GitHub (Jun 27, 2025):
According to the logs, the crash happens outside of
rkmppenc.c. I don't see a direct correlation that this is due to rkmpp encoder. rkmpp won't modify sidedata that you create and allocate yourself.Also try to verify your program with software encoders - libx264 and libx265.
@nyanmisaka commented on GitHub (Jul 1, 2025):
Any updates?