Remove libdav1d decoder from the codec_list.c

Since, this repo provides support for av1 HW decoding using v4l2_requests api. Including libdav1d in the codec list would cause the codec2 service to pick it up whenever any av1 video is played and this would leave us with software decoding and would leave out
hw decoding.

Signed-off-by: Venkata Atchuta Bheemeswara Sarma Darbha <vdarbha0473@gmail.com>
This commit is contained in:
Venkata Atchuta Bheemeswara Sarma Darbha 2026-04-18 20:45:21 -05:00
parent 135263a5bb
commit 5dbfbaa935

View file

@ -685,11 +685,10 @@ static const FFCodec * const codec_list[] = {
&ff_vplayer_decoder,
&ff_webvtt_decoder,
&ff_xsub_decoder,
&ff_libdav1d_decoder,
&ff_av1_decoder,
&ff_bintext_decoder,
&ff_xbin_decoder,
&ff_idf_decoder,
&ff_av1_decoder,
&ff_vnull_decoder,
&ff_anull_decoder,
NULL };