I did make a little progress yesterday but I seem to only be allowed to post here once every 24h so I'm going to ask a whole bunch of questions related to this all at once now.
I found that I can use these codecs instead of the ones I mentioned above,
avcodec_find_decoder_by_name("hevc_rkmpp");
or
avcodec_find_decoder_by_name("h264_rkmpp");
Those both now decode and even if I haven't yet been able to display them (I'll get to that tonight I think) I have confirmed decode success by converting and writing out a single frame to an png image.
Q1: But how do I do zero copy drm display with this setup? My program on RPi4 does zero copy by sending a dma buf to the opengl call,
const EGLImage image = eglCreateImageKHR( egl_display,
EGL_NO_CONTEXT,
EGL_LINUX_DMA_BUF_EXT,
NULL, attribs);
But here when I ask for AV_PIX_FMT_DRM_PRIME I get a pix_fmt value of 0. (drm prime should have 181)
codec_context->pix_fmt = AV_PIX_FMT_DRM_PRIME; // Does not work
The program does still on the OPi5 display the GUI using kmsdrm when I run it on the tty. (using SDL2)
But that does not seem to extend to ffmpeg.
I have figured out that mpp is a thing for Rockchip and that does seem to have its own kmsdrm display techniques.
Is that what I'll need to use?
Q2: I read someone say that with a future mainline kernel support and upgrade to 6.x that v4l2 and standard drm display should become available.
Can anyone confirm if this is true? And also if this is likely to happen in near future or is a quite some time yet?
Q3: What are the libavcodec-dev et al on the OPi5 Armbian distro's coming from?
Are they some special Rockchip forks or are they the ffmpeg master with just config options?
Cheers!