From e76bfba1cf5060da309db26e827c3769a57c702e Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 30 Apr 2026 12:12:07 -0300 Subject: [PATCH] avformat/mov: request parsing for LCEVC streams Given that no standalone decoder will be present, use a parser to get stream information that's not reported by the container. Signed-off-by: James Almer --- libavformat/mov.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/mov.c b/libavformat/mov.c index a449a61354..f01ec86236 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -3042,6 +3042,7 @@ static int mov_finalize_stsd_codec(MOVContext *c, AVIOContext *pb, case AV_CODEC_ID_PRORES: case AV_CODEC_ID_APV: case AV_CODEC_ID_EVC: + case AV_CODEC_ID_LCEVC: case AV_CODEC_ID_AV1: /* field_order detection of H264 requires parsing */ case AV_CODEC_ID_H264: