diff options
author | compn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-04-04 20:30:49 +0000 |
---|---|---|
committer | compn <compn@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-04-04 20:30:49 +0000 |
commit | 2a18b0bf36a0f18046715759d7bec6d1422acc48 (patch) | |
tree | 1d3c5cf05bcffd9c870e3e62285f72e6a08ee342 /gui | |
parent | 133807ced37dd97a296ce1852738d5a2b91de329 (diff) |
add tivo (ty) and rm (rmvb) to file chooser, fixes bug 663
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29141 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui')
-rw-r--r-- | gui/mplayer/gtk/fs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/mplayer/gtk/fs.c b/gui/mplayer/gtk/fs.c index fb60fe887d..238697e985 100644 --- a/gui/mplayer/gtk/fs.c +++ b/gui/mplayer/gtk/fs.c @@ -69,7 +69,8 @@ char * fsVideoFilterNames[][2] = { "OGG Vorbis files (*.ogg)", "*.ogg" }, { "OGG Media files (*.ogm)", "*.ogm" }, { "QuickTime files (*.mov,*.qt,*.mp4)", "*.mov,*.qt,*.mp4" }, - { "RealVideo files (*.rm)", "*.rm" }, + { "RealVideo files (*.rm,*.rmvb)", "*.rm,*.rmvb" }, + { "Tivo files (*.ty)", "*.ty" }, { "VCD/SVCD Images (*.bin)", "*.bin" }, { "VIVO files (*.viv)", "*.viv" }, { "VOB files (*.vob)", "*.vob" }, @@ -77,7 +78,7 @@ char * fsVideoFilterNames[][2] = { "Windows Media Audio (*.wma)", "*.wma" }, { "Windows Media Video (*.wmv)", "*.wmv" }, { "Audio files", "*.mp2,*.mp3,*.mka,*.ogg,*.wav,*.wma" }, - { "Video files", "*.asf,*.avi,*.fli,*.flc,*.trp,*.divx,*.mpg,*.mpeg,*.m1v,*.flv,*.mkv,*.nuv,*.ogm,*.mov,*.qt,*.mp4,*.rm,*.bin,*.viv,*.vob,*.wmv" }, + { "Video files", "*.asf,*.avi,*.fli,*.flc,*.trp,*.divx,*.mpg,*.mpeg,*.m1v,*.flv,*.mkv,*.nuv,*.ogm,*.mov,*.qt,*.mp4,*.rm,*.rmvb,*.ty,*.bin,*.viv,*.vob,*.wmv" }, { "All files", "*" }, { NULL,NULL } }; |