Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add supported containers to play vvc codec of file #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DecoderPluginVLC/vvc_demux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static int ProbeVVC(const uint8_t* p_peek, size_t i_peek, vvc_probe_ctx_t* p_ctx
int VvcDecoder::OpenDemux(vlc_object_t* p_this)
{
vvc_probe_ctx_t ctx = { 0, 0, 0 };
const char* rgi_psz_ext[] = { ".h266", ".266", ".bin", ".bit", ".raw", NULL };
const char* rgi_psz_ext[] = { ".h266", ".266", ".bin", ".bit", ".raw", ".vvc", ".mp4", ".mkv", ".webm", ".m4v", NULL };
const char* rgi_psz_mime[] = { "video/H266", "video/h266", "video/vvc", NULL };

demux_sys_t* p_sys;
Expand Down