avformat/mov: add m4v to allowed extensions

M4V is a standard extension for MPEG-4 video files, commonly used by
Apple devices and software. While it is functionally similar to MP4,
it was missing from the list of recognized extensions for the
MOV/MP4 demuxer.
This commit is contained in:
tark1998
2026-03-18 14:56:57 +09:00
committed by Jun Zhao
parent dfa53aae5f
commit 442e6c80bf

View File

@@ -11797,7 +11797,7 @@ const FFInputFormat ff_mov_demuxer = {
.p.name = "mov,mp4,m4a,3gp,3g2,mj2",
.p.long_name = NULL_IF_CONFIG_SMALL("QuickTime / MOV"),
.p.priv_class = &mov_class,
.p.extensions = "mov,mp4,m4a,3gp,3g2,mj2,psp,m4b,ism,ismv,isma,f4v,avif,heic,heif",
.p.extensions = "mov,mp4,m4a,3gp,3g2,mj2,psp,m4v,m4b,ism,ismv,isma,f4v,avif,heic,heif",
.p.flags = AVFMT_NO_BYTE_SEEK | AVFMT_SEEK_TO_PTS | AVFMT_SHOW_IDS,
.priv_data_size = sizeof(MOVContext),
.flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,