]> git.sesse.net Git - vlc/commitdiff
Correct samplerates...
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 7 Sep 2009 16:00:22 +0000 (18:00 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 7 Sep 2009 16:01:01 +0000 (18:01 +0200)
modules/gui/qt4/components/sout/profile_selector.cpp

index fa383051a752de59baf8ee584a6c28a3be10a4bb..b97c956b6a37cdade2fcc693654b7a574baabda4 100644 (file)
@@ -300,8 +300,9 @@ inline void VLCProfileEditor::registerCodecs()
 #undef ADD_SCALING
 
 #define ADD_SAMPLERATE( sample ) ui.aSampleBox->addItem( sample );
-    ADD_SAMPLERATE( "11250" )
-    ADD_SAMPLERATE( "22500" )
+    ADD_SAMPLERATE( "8000" )
+    ADD_SAMPLERATE( "11025" )
+    ADD_SAMPLERATE( "22050" )
     ADD_SAMPLERATE( "44100" )
     ADD_SAMPLERATE( "48000" )
 #undef ADD_SAMPLERATE