Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d2e838ba
Commit
d2e838ba
authored
Aug 19, 2002
by
Tony Castley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed segfault. Now fails to load due to incorrect format.
Getting there :)
parent
47e97057
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/gui/beos/AudioOutput.cpp
modules/gui/beos/AudioOutput.cpp
+4
-2
No files found.
modules/gui/beos/AudioOutput.cpp
View file @
d2e838ba
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* aout.cpp: BeOS audio output
* aout.cpp: BeOS audio output
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000, 2001 VideoLAN
* Copyright (C) 1999, 2000, 2001 VideoLAN
* $Id: AudioOutput.cpp,v 1.
2 2002/08/17 08:46:46
tcastley Exp $
* $Id: AudioOutput.cpp,v 1.
3 2002/08/19 11:51:03
tcastley Exp $
*
*
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Authors: Jean-Marc Dressler <polux@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
* Samuel Hocevar <sam@zoy.org>
...
@@ -82,7 +82,9 @@ int E_(OpenAudio) ( vlc_object_t * p_this )
...
@@ -82,7 +82,9 @@ int E_(OpenAudio) ( vlc_object_t * p_this )
msg_Err
(
p_aout
,
"out of memory"
);
msg_Err
(
p_aout
,
"out of memory"
);
return
(
1
);
return
(
1
);
}
}
p_aout
->
output
.
pf_setformat
=
SetFormat
;
p_sys
->
p_format
=
(
gs_audio_format
*
)
malloc
(
sizeof
(
struct
gs_audio_format
));
SetFormat
(
p_aout
);
/* Allocate BPushGameSound */
/* Allocate BPushGameSound */
p_sys
->
p_sound
=
new
BPushGameSound
(
8192
,
p_sys
->
p_sound
=
new
BPushGameSound
(
8192
,
p_sys
->
p_format
,
p_sys
->
p_format
,
...
...
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