mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
Question: getting raw data out of RGA filters #181
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#181
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 @oryjkov on GitHub (Jun 13, 2025).
I would like to set up an ffmpeg pipeline that uses RGA filters to scale and crop a video and produce 2 outputs.
hevc_rkmpp -> mp4 file. This works just fine.vpp_rkrga (format bgr24) -> raw file output. This one fails as it seems that vpp_rkrga has the data in hw buffer and I don't know how to get it out of it.I managed to make it work with
vpp_rkrga -> mjpeg_encoder -> my program -> jpeg decoder.This works fine, but it seems silly to have JPEG in the middle. Anyway to avoid it?
@nyanmisaka commented on GitHub (Jun 13, 2025):
@oryjkov commented on GitHub (Jun 13, 2025):
oh wow, thank you, I'll give this a try
@oryjkov commented on GitHub (Jun 13, 2025):
Wonderful, this works. Thanks a lot, appreciate the help.