remuxer.py: list files named *.og[gvax], not only *.ogg
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Thu, 13 Jan 2011 14:19:05 +0000 (14:19 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Mon, 26 Sep 2011 16:11:45 +0000 (17:11 +0100)
These are all recommended extensions for Ogg streams.

https://bugzilla.gnome.org/show_bug.cgi?id=639423

examples/remuxer.py

index fa32134..096344a 100644 (file)
@@ -709,7 +709,7 @@ class PlayerWindow(gtk.Window):
         chooser.add_filter(f)
         f = gtk.FileFilter()
         f.set_name("Ogg files")
-        f.add_pattern("*.ogg") # as long as this is the only thing we
+        f.add_pattern("*.og[gvax]") # as long as this is the only thing we
                                # support...
         chooser.add_filter(f)
         chooser.set_filter(f)