Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
a707befb
Commit
a707befb
authored
Jul 16, 2001
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reactivated SDL parachute in non-debug mode (memory leak otherwise).
parent
48b927bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
plugins/sdl/vout_sdl.c
plugins/sdl/vout_sdl.c
+7
-2
No files found.
plugins/sdl/vout_sdl.c
View file @
a707befb
...
...
@@ -2,7 +2,7 @@
* vout_sdl.c: SDL video output display method
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
* $Id: vout_sdl.c,v 1.5
7 2001/07/11 02:01:05 sam
Exp $
* $Id: vout_sdl.c,v 1.5
8 2001/07/16 14:33:40 massiot
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Pierre Baillet <oct@zoy.org>
...
...
@@ -169,7 +169,12 @@ static int vout_Create( vout_thread_t *p_vout )
/* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet*/
|
SDL_INIT_EVENTTHREAD
#endif
|
SDL_INIT_NOPARACHUTE
)
<
0
)
#ifdef DEBUG
/* In debug mode you may want vlc to dump a core instead of staying
* stuck */
|
SDL_INIT_NOPARACHUTE
#endif
)
<
0
)
{
intf_ErrMsg
(
"vout error: can't initialize SDL (%s)"
,
SDL_GetError
()
);
free
(
p_vout
->
p_sys
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment