[MPlayer-cvslog] r23011 - trunk/mplayer.c
rfelker
subversion at mplayerhq.hu
Tue Apr 17 09:06:44 CEST 2007
Author: rfelker
Date: Tue Apr 17 09:06:44 2007
New Revision: 23011
Modified:
trunk/mplayer.c
Log:
big surprise.. uau broke gcc 2.95 as usual
Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c (original)
+++ trunk/mplayer.c Tue Apr 17 09:06:44 2007
@@ -193,7 +193,7 @@ int noconsolecontrols=0;
//**************************************************************************//
// Not all functions in mplayer.c take the context as an argument yet
-static MPContext *mpctx = &(MPContext){
+static MPContext mpctx_s = {
.osd_function = OSD_PLAY,
.begin_skip = MP_NOPTS_VALUE,
.play_tree_step = 1,
@@ -205,6 +205,8 @@ static MPContext *mpctx = &(MPContext){
#endif
};
+static MPContext *mpctx = &mpctx_s;
+
int fixed_vo=0;
// benchmark:
More information about the MPlayer-cvslog
mailing list