[MPlayer-users] MPlayer blues solved, patch attached

Pedro A ARANDA paaguti at hotmail.com
Tue Dec 4 10:37:44 CET 2007


Hi all,

I've found what was happening to me. It seems I had ignored part of my mplayer config file.
I had a spuaa=6 defined, which is not possible (values between 0 and 4 according to docs).
Suppressing this line, everything worked. Now looking at the code, the allowed range goes
from 0 to 31, so that needs to be corrected. Attached is a small patch for that.

Sorry for the headaches.../PA

Index: cfg-common.h
===================================================================
--- cfg-common.h        (revisión: 25290)
+++ cfg-common.h        (copia de trabajo)
@@ -301,7 +301,7 @@
        {"subalign", &sub_alignment, CONF_TYPE_INT, CONF_RANGE, 0, 2, NULL},
        {"subwidth", &sub_width_p, CONF_TYPE_INT, CONF_RANGE, 10, 100, NULL},
        {"spualign", &spu_alignment, CONF_TYPE_INT, CONF_RANGE, -1, 2, NULL},
-       {"spuaa", &spu_aamode, CONF_TYPE_INT, CONF_RANGE, 0, 31, NULL},
+       {"spuaa", &spu_aamode, CONF_TYPE_INT, CONF_RANGE, 0, 4, NULL},
        {"spugauss", &spu_gaussvar, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 3.0, NULL},
 #ifdef HAVE_FREETYPE
        {"subfont-encoding", &subtitle_font_encoding, CONF_TYPE_STRING, 0, 0, 0, NULL},

_________________________________________________________________
News, entertainment and everything you care about at Live.com. Get it now!
http://www.live.com/getstarted.aspx


More information about the MPlayer-users mailing list