Mercurial > mplayer.hg
diff gui/win32/interface.c @ 25765:304fc0bbefe1
audio_out / video_out structs should be treated as const
| author | reimar |
|---|---|
| date | Sat, 19 Jan 2008 11:33:36 +0000 |
| parents | 5701e23ebcb4 |
| children | 609236ad27f4 |
line wrap: on
line diff
--- a/gui/win32/interface.c Sat Jan 19 11:25:41 2008 +0000 +++ b/gui/win32/interface.c Sat Jan 19 11:33:36 2008 +0000 @@ -61,8 +61,8 @@ static DWORD style; static HANDLE hThread; static unsigned threadId; -ao_functions_t *audio_out = NULL; -vo_functions_t *video_out = NULL; +const ao_functions_t *audio_out = NULL; +const vo_functions_t *video_out = NULL; mixer_t *mixer = NULL; /* test for playlist files, no need to specify -playlist on the commandline.
