From bb57d33d65eecbd54b19ea29d4a5717f19441332 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 28 Dec 2004 21:16:57 +0000 Subject: [PATCH] Added MPEG PS file types to the "add input file" box. --- src/mmg/tab_input.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mmg/tab_input.cpp b/src/mmg/tab_input.cpp index c2de299ed..3a50fc3bb 100644 --- a/src/mmg/tab_input.cpp +++ b/src/mmg/tab_input.cpp @@ -649,14 +649,14 @@ tab_input::on_add_file(wxCommandEvent &evt) { if (capabilities[wxT("FLAC")] == wxT("true")) media_files += wxT("*.flac;"); media_files += wxT("*.idx;*.m4a;*.mp2;*.mp3;*.mka;" - "*.mkv;*.mov;*.mp4;*.ogm;*.ogg;" + "*.mkv;*.mov;*.mp4;*.mpeg;*.mpg;*.ogm;*.ogg;" "*.ra;*.ram;*.rm;*.rmvb;*.rv;" "*.srt;*.ssa;*.tta;*.wav;*.wv)|" "*.aac;*.ac3;*.ass;*.avi;*.dts;"); if (capabilities[wxT("FLAC")] == wxT("true")) media_files += wxT("*.flac;"); media_files += wxT("*.idx;*.m1v;*.m2v;*.m4a;*.mp2;*.mp3;*.mka;" - "*.mkv;*.mov;*.mp4;*.ogm;*.ogg;" + "*.mkv;*.mov;*.mp4;*.mpeg;*.mpg;*.ogm;*.ogg;" "*.ra;*.ram;*.rm;*.rmvb;*.rv;" "*.srt;*.ssa;*.tta;*.wav|" "AAC (Advanced Audio Coding) (*.aac;*.m4a;*.mp4)|" @@ -668,6 +668,8 @@ tab_input::on_add_file(wxCommandEvent &evt) { media_files += wxT("FLAC (Free Lossless Audio Codec) (*.flac;*.ogg)|" "*.flac;*.ogg|"); media_files += wxT("MPEG audio files (*.mp2;*.mp3)|*.mp2;*.mp3|" + "MPEG program streams (*.mpg;*.mpeg;*.m2v)|*.mpg;*.mpeg;" + "*.m2v|" "MPEG video elementary streams (*.m1v;*.m2v)|*.m1v;*.m2v|" "Matroska A/V files (*.mka;*.mkv)|*.mka;*.mkv|" "QuickTime/MP4 A/V (*.mov;*.mp4)|*.mov;*.mp4|"