Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
aaebb62b
Commit
aaebb62b
authored
2 years ago
by
Rémi Denis-Courmont
Committed by
Felix Paul Kühne
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
alsa: fix invalid function pointer cast
parent
77b64085
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1909
ALSA: fix invalid pointer cast
Pipeline
#220770
passed with stage
in 14 minutes and 15 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/audio_output/alsa.c
+9
-8
9 additions, 8 deletions
modules/audio_output/alsa.c
with
9 additions
and
8 deletions
modules/audio_output/alsa.c
+
9
−
8
View file @
aaebb62b
...
...
@@ -40,16 +40,11 @@
#include
<alsa/version.h>
/** Helper for ALSA -> VLC debugging output */
static
void
Dump
(
struct
vlc_logger
*
log
,
const
char
*
msg
,
int
(
*
cb
)(
void
*
,
snd_output_t
*
),
void
*
p
)
static
void
Dump
Post
(
struct
vlc_logger
*
log
,
snd_output_t
*
output
,
const
char
*
msg
,
int
val
)
{
snd_output_t
*
output
;
char
*
str
;
if
(
unlikely
(
snd_output_buffer_open
(
&
output
)))
return
;
int
val
=
cb
(
p
,
output
);
if
(
val
)
{
vlc_warning
(
log
,
"cannot get info: %s"
,
snd_strerror
(
val
));
...
...
@@ -62,8 +57,14 @@ static void Dump(struct vlc_logger *log, const char *msg,
vlc_debug
(
log
,
"%s%.*s"
,
msg
,
(
int
)
len
,
str
);
snd_output_close
(
output
);
}
#define Dump(o, m, cb, p) \
Dump(o, m, (int (*)(void *, snd_output_t *))(cb), p)
do { \
snd_output_t *output; \
\
if (likely(snd_output_buffer_open(&output) == 0)) \
DumpPost(o, output, m, (cb)(p, output)); \
} while (0)
static
void
DumpDevice
(
struct
vlc_logger
*
log
,
snd_pcm_t
*
pcm
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment