mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2025-02-26 08:22:31 +00:00
Add "ogv" to the list of known file extensions
Implements bug 667.
This commit is contained in:
parent
136fc4f465
commit
f1307055b6
@ -1,5 +1,8 @@
|
||||
2011-10-30 Moritz Bunkus <moritz@bunkus.org>
|
||||
|
||||
* mmg: enhancement: Added "ogv" to the list of known file
|
||||
extensions for "Ogg/OGM audio/video files". Implements bug 667.
|
||||
|
||||
* mmg: bug fix: A utility function for breaking a line into
|
||||
multiple ones was accessing invalid memory in rare situations
|
||||
causing mmg to crash. Could happen e.g. when adding a job to the
|
||||
|
@ -41,7 +41,7 @@ file_type_t::get_supported() {
|
||||
s_supported_file_types.push_back(file_type_t(Y("Matroska audio/video files"), "mka mks mkv mk3d webm webmv webma"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("PGS/SUP subtitles"), "sup"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("QuickTime audio/video files"), "mov"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("Ogg/OGM audio/video files"), "ogg ogm"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("Ogg/OGM audio/video files"), "ogg ogm ogv"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("RealMedia audio/video files"), "ra ram rm rmvb rv"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("SRT text subtitles"), "srt"));
|
||||
s_supported_file_types.push_back(file_type_t(Y("SSA/ASS text subtitles"), "ass ssa"));
|
||||
|
Loading…
Reference in New Issue
Block a user