mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
Added the WAVPACK extension to the input tab's "add file" dialog.
This commit is contained in:
parent
eba5731ef6
commit
4c124c2120
@ -651,7 +651,7 @@ tab_input::on_add_file(wxCommandEvent &evt) {
|
||||
media_files += wxT("*.idx;*.m4a;*.mp2;*.mp3;*.mka;"
|
||||
"*.mkv;*.mov;*.mp4;*.ogm;*.ogg;"
|
||||
"*.ra;*.ram;*.rm;*.rmvb;*.rv;"
|
||||
"*.srt;*.ssa;*.tta;*.wav;)|"
|
||||
"*.srt;*.ssa;*.tta;*.wav;*.wv)|"
|
||||
"*.aac;*.ac3;*.ass;*.avi;*.dts;");
|
||||
if (capabilities[wxT("FLAC")] == wxT("true"))
|
||||
media_files += wxT("*.flac;");
|
||||
@ -678,7 +678,9 @@ tab_input::on_add_file(wxCommandEvent &evt) {
|
||||
"SSA/ASS text subtitles (*.ssa;*.ass)|*.ssa;*.ass|"
|
||||
"TTA (The lossless True Audio codec) (*.tta)|*.tta|"
|
||||
"VobSub subtitles (*.idx)|*.idx|"
|
||||
"WAVE (uncompressed PCM) (*.wav)|*.wav|" ALLFILES);
|
||||
"WAVE (uncompressed PCM) (*.wav)|*.wav|"
|
||||
"WAVPACK v4 (*.wv)|*.wv|"
|
||||
ALLFILES);
|
||||
wxFileDialog dlg(NULL, wxT("Choose an input file"), last_open_dir, wxT(""),
|
||||
media_files, wxOPEN);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user