From 48fea8e434dbe8205c1f5ece111af7341bdc5652 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 17 Jan 2014 15:31:32 +0100 Subject: [PATCH] mmg: bug fix: recognize Opus as a valid codec for WebM --- ChangeLog | 5 +++++ src/mmg/mmg.cpp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index fc898fce0..5bb7bd9d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-01-17 Moritz Bunkus + + * mmg: bug fix: fixed the check for WebM-compatible track types + for Opus. + 2014-01-12 Moritz Bunkus * mkvmerge: bug fix: fixed muxing Sorenson v3 (SVQ3) video from diff --git a/src/mmg/mmg.cpp b/src/mmg/mmg.cpp index f23d59674..543c224f0 100644 --- a/src/mmg/mmg.cpp +++ b/src/mmg/mmg.cpp @@ -72,7 +72,7 @@ mmg_track_t::create_label() { bool mmg_track_t::is_webm_compatible() { - static wxRegEx re_valid_webm_codecs(wxT("VP8|Vorbis"), wxRE_ICASE); + static wxRegEx re_valid_webm_codecs(wxT("VP8|Vorbis|Opus"), wxRE_ICASE); return (is_audio() || is_video()) && re_valid_webm_codecs.Matches(ctype); }