diff --git a/demux/demux_lavf.c b/demux/demux_lavf.c index 75a47ed3ad..182642494e 100644 --- a/demux/demux_lavf.c +++ b/demux/demux_lavf.c @@ -184,6 +184,7 @@ static const struct format_hack format_hacks[] = { // In theory, such streams might contain timestamps, but virtually none do. {"h264", .if_flags = AVFMT_NOTIMESTAMPS }, {"hevc", .if_flags = AVFMT_NOTIMESTAMPS }, + {"vvc", .if_flags = AVFMT_NOTIMESTAMPS }, // Some Ogg shoutcast streams are essentially concatenated OGG files. They // reset timestamps, which causes all sorts of problems. diff --git a/demux/demux_mkv.c b/demux/demux_mkv.c index 443cec03a5..9bee8a4011 100644 --- a/demux/demux_mkv.c +++ b/demux/demux_mkv.c @@ -1461,6 +1461,7 @@ static const char *const mkv_video_tags[][2] = { {"V_DIRAC", "dirac"}, {"V_PRORES", "prores"}, {"V_MPEGH/ISO/HEVC", "hevc"}, + {"V_MPEGI/ISO/VVC", "vvc"}, {"V_SNOW", "snow"}, {"V_AV1", "av1"}, {"V_PNG", "png"},