]> git.sesse.net Git - vlc/commitdiff
VLC supports .vro (DVD-VR) files
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 30 Jan 2010 00:40:23 +0000 (01:40 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 30 Jan 2010 00:52:09 +0000 (01:52 +0100)
extras/package/win32/vlc.win32.nsi.in
include/vlc_interface.h
modules/gui/qt4/components/simple_preferences.cpp

index 6e1f05c8aae16581525d0aaed6324d6b9ee46762..03263263db6b14070396f0503240423d2aacf5bf 100644 (file)
@@ -255,6 +255,7 @@ FunctionEnd
   !insertmacro ${_action} ".rmvb"
   !insertmacro ${_action} ".ts"
   !insertmacro ${_action} ".vob"
+  !insertmacro ${_action} ".vro"
   !insertmacro ${_action} ".wmv"
 !macroend
 
index d192c9c958c13a846c5f2602c9db5157bb164a2d..4e774a7bfa1101fb18b1588a1e56a6dd14352eb3 100644 (file)
@@ -207,7 +207,7 @@ typedef enum vlc_dialog {
                          "*.m2t;*.m2ts;*.m4v;*.mkv;*.mov;*.mp2;*.mp4;*.mpeg;*.mpeg1;" \
                          "*.mpeg2;*.mpeg4;*.mpg;*.mts;*.mxf;*.nuv;" \
                          "*.ogg;*.ogm;*.ogv;*.ogx;*.ps;" \
-                         "*.rec;*.rm;*.rmvb;*.tod;*.ts;*.vob;*.wmv"
+                         "*.rec;*.rm;*.rmvb;*.tod;*.ts;*.vob;*.vro;*.wmv"
 
 #define EXTENSIONS_PLAYLIST "*.asx;*.b4s;*.ifo;*.m3u;*.m3u8;*.pls;*.ram;*.rar;*.sdp;*.vlc;*.xspf;*.zip"
 
index 31085783e5871c9b3b222e14d9d2391571e3d23a..946f809b5720153d1b2d931fa57fa9bcf0388588 100644 (file)
@@ -920,7 +920,7 @@ void SPrefsPanel::assoDialog()
     aTv( ".mpeg1" ); aTv( ".mpeg2" ); aTv( ".mpeg4" ); aTv( ".mpg" );
     aTv( ".mts" ); aTv( ".mxf" );
     aTv( ".ogg" ); aTv( ".ogm" ); aTv( ".ogx" ); aTv( ".ogv" );  aTv( ".ts" );
-    aTv( ".vob" ); aTv( ".wmv" );
+    aTv( ".vob" ); aTv( ".vro" ); aTv( ".wmv" );
     videoType->setCheckState( 0, ( i_temp > 0 ) ?
                               ( ( i_temp == audioType->childCount() ) ?
                                Qt::Checked : Qt::PartiallyChecked )