diff mbox series

[FFmpeg-devel] avcodec/omx: Mark codec as hardware accelerated

Message ID 20240704222143.31721-2-aicommander@gmail.com
State New
Headers show
Series [FFmpeg-devel] avcodec/omx: Mark codec as hardware accelerated | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 fail Make fate failed
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Cameron Gutman July 4, 2024, 10:21 p.m. UTC
This allows applications to preferentially select OpenMAX IL codecs
over software-only codecs using the standard AV_CODEC_CAP_HARDWARE
capability flag rather than requiring custom codec-specific logic.

Signed-off-by: Cameron Gutman <aicommander@gmail.com>
---
 libavcodec/omx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/libavcodec/omx.c b/libavcodec/omx.c
index 86913237b2..87f6c4b5c8 100644
--- a/libavcodec/omx.c
+++ b/libavcodec/omx.c
@@ -948,7 +948,7 @@  const FFCodec ff_mpeg4_omx_encoder = {
     FF_CODEC_ENCODE_CB(omx_encode_frame),
     .close            = omx_encode_end,
     .p.pix_fmts       = omx_encoder_pix_fmts,
-    .p.capabilities   = AV_CODEC_CAP_DELAY,
+    .p.capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_HARDWARE,
     .caps_internal    = FF_CODEC_CAP_INIT_CLEANUP,
     .p.priv_class     = &omx_mpeg4enc_class,
 };
@@ -969,7 +969,7 @@  const FFCodec ff_h264_omx_encoder = {
     FF_CODEC_ENCODE_CB(omx_encode_frame),
     .close            = omx_encode_end,
     .p.pix_fmts       = omx_encoder_pix_fmts,
-    .p.capabilities   = AV_CODEC_CAP_DELAY,
+    .p.capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_HARDWARE,
     .caps_internal    = FF_CODEC_CAP_INIT_CLEANUP,
     .p.priv_class     = &omx_h264enc_class,
 };