1
mirror of https://github.com/mpv-player/mpv synced 2024-12-24 07:33:46 +01:00

Enable manyfmts by default for vo_gl

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16013 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2005-07-19 08:42:55 +00:00
parent 14b9a6e7cc
commit de6925b979
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,8 @@ MPlayer (1.0)
Driver:
* JACK audio output rewritten without bio2jack
* OpenGL video output modules support -geometry and -wid options
* for -vo gl manyfmts is now default (since it is a lot faster), use
-vo gl:nomanyfmts if it does not work for you.
Decoders:
* Indeo2 (RT21) support via lavc

View File

@ -493,7 +493,7 @@ static opt_t subopts[] = {
static uint32_t preinit(const char *arg)
{
// set defaults
many_fmts = 0;
many_fmts = 1;
use_osd = 1;
scaled_osd = 0;
use_aspect = 1;