Commit ea7e9da5 authored by Sam Hocevar's avatar Sam Hocevar

* ./plugins/qnx/vout_qnx.c: QNX compilation fix.

parent 46f6ef76
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
HEAD HEAD
* ./plugins/qnx/vout_qnx.c: QNX compilation fix.
* ./plugins/spudec/spu_decoder.c: fixed a margin bug in the SPU renderer * ./plugins/spudec/spu_decoder.c: fixed a margin bug in the SPU renderer
which caused subtitles to appear slanted in odd width windows. which caused subtitles to appear slanted in odd width windows.
* ./plugins/gtk/gtk_display.c, ./plugins/win32/mainframe.cpp: we deactivate * ./plugins/gtk/gtk_display.c, ./plugins/win32/mainframe.cpp: we deactivate
......
...@@ -173,7 +173,7 @@ static int vout_Create( vout_thread_t *p_vout ) ...@@ -173,7 +173,7 @@ static int vout_Create( vout_thread_t *p_vout )
config_GetIntVariable( "fullscreen" ); config_GetIntVariable( "fullscreen" );
p_vout->p_sys->i_mode = p_vout->p_sys->i_mode =
config_GetIntVariable( "overlay" ) ? config_GetIntVariable( "overlay" ) ?
MODE_NORMAL_OVERLAY : MODE_VIDEO_MEM; MODE_VIDEO_OVERLAY : MODE_VIDEO_MEM;
p_vout->p_sys->dim.w = p_vout->i_window_width; p_vout->p_sys->dim.w = p_vout->i_window_width;
p_vout->p_sys->dim.h = p_vout->i_window_height; p_vout->p_sys->dim.h = p_vout->i_window_height;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment