Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
460eaee4
Commit
460eaee4
authored
May 02, 2023
by
Davide Beatrici
Committed by
Alexandre Julliard
May 04, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmdevapi: Remove unused "channel" member in set_volumes_params.
parent
f46e9b8f
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
0 additions
and
14 deletions
+0
-14
session.c
dlls/mmdevapi/session.c
+0
-1
unixlib.h
dlls/mmdevapi/unixlib.h
+0
-1
alsa.c
dlls/winealsa.drv/alsa.c
+0
-2
mmdevdrv.c
dlls/winealsa.drv/mmdevdrv.c
+0
-1
coreaudio.c
dlls/winecoreaudio.drv/coreaudio.c
+0
-2
mmdevdrv.c
dlls/winecoreaudio.drv/mmdevdrv.c
+0
-1
mmdevdrv.c
dlls/wineoss.drv/mmdevdrv.c
+0
-1
oss.c
dlls/wineoss.drv/oss.c
+0
-2
mmdevdrv.c
dlls/winepulse.drv/mmdevdrv.c
+0
-1
pulse.c
dlls/winepulse.drv/pulse.c
+0
-2
No files found.
dlls/mmdevapi/session.c
View file @
460eaee4
...
...
@@ -52,7 +52,6 @@ static void set_stream_volumes(struct audio_client *This)
params
.
master_volume
=
(
This
->
session
->
mute
?
0
.
0
f
:
This
->
session
->
master_vol
);
params
.
volumes
=
This
->
vols
;
params
.
session_volumes
=
This
->
session
->
channel_vols
;
params
.
channel
=
0
;
WINE_UNIX_CALL
(
set_volumes
,
&
params
);
}
...
...
dlls/mmdevapi/unixlib.h
View file @
460eaee4
...
...
@@ -207,7 +207,6 @@ struct set_volumes_params
float
master_volume
;
const
float
*
volumes
;
const
float
*
session_volumes
;
int
channel
;
};
struct
set_event_handle_params
...
...
dlls/winealsa.drv/alsa.c
View file @
460eaee4
...
...
@@ -2767,7 +2767,6 @@ static NTSTATUS alsa_wow64_set_volumes(void *args)
float
master_volume
;
PTR32
volumes
;
PTR32
session_volumes
;
int
channel
;
}
*
params32
=
args
;
struct
set_volumes_params
params
=
{
...
...
@@ -2775,7 +2774,6 @@ static NTSTATUS alsa_wow64_set_volumes(void *args)
.
master_volume
=
params32
->
master_volume
,
.
volumes
=
ULongToPtr
(
params32
->
volumes
),
.
session_volumes
=
ULongToPtr
(
params32
->
session_volumes
),
.
channel
=
params32
->
channel
};
return
alsa_set_volumes
(
&
params
);
}
...
...
dlls/winealsa.drv/mmdevdrv.c
View file @
460eaee4
...
...
@@ -261,7 +261,6 @@ static void set_stream_volumes(ACImpl *This)
params
.
master_volume
=
(
This
->
session
->
mute
?
0
.
0
f
:
This
->
session
->
master_vol
);
params
.
volumes
=
This
->
vols
;
params
.
session_volumes
=
This
->
session
->
channel_vols
;
params
.
channel
=
0
;
ALSA_CALL
(
set_volumes
,
&
params
);
}
...
...
dlls/winecoreaudio.drv/coreaudio.c
View file @
460eaee4
...
...
@@ -2046,7 +2046,6 @@ static NTSTATUS unix_wow64_set_volumes(void *args)
float
master_volume
;
PTR32
volumes
;
PTR32
session_volumes
;
int
channel
;
}
*
params32
=
args
;
struct
set_volumes_params
params
=
{
...
...
@@ -2054,7 +2053,6 @@ static NTSTATUS unix_wow64_set_volumes(void *args)
.
master_volume
=
params32
->
master_volume
,
.
volumes
=
ULongToPtr
(
params32
->
volumes
),
.
session_volumes
=
ULongToPtr
(
params32
->
session_volumes
),
.
channel
=
params32
->
channel
};
return
unix_set_volumes
(
&
params
);
}
...
...
dlls/winecoreaudio.drv/mmdevdrv.c
View file @
460eaee4
...
...
@@ -232,7 +232,6 @@ static void set_stream_volumes(ACImpl *This)
params
.
master_volume
=
This
->
session
->
mute
?
0
.
0
f
:
This
->
session
->
master_vol
;
params
.
volumes
=
This
->
vols
;
params
.
session_volumes
=
This
->
session
->
channel_vols
;
params
.
channel
=
0
;
UNIX_CALL
(
set_volumes
,
&
params
);
}
...
...
dlls/wineoss.drv/mmdevdrv.c
View file @
460eaee4
...
...
@@ -271,7 +271,6 @@ static void set_stream_volumes(ACImpl *This)
params
.
master_volume
=
(
This
->
session
->
mute
?
0
.
0
f
:
This
->
session
->
master_vol
);
params
.
volumes
=
This
->
vols
;
params
.
session_volumes
=
This
->
session
->
channel_vols
;
params
.
channel
=
0
;
OSS_CALL
(
set_volumes
,
&
params
);
}
...
...
dlls/wineoss.drv/oss.c
View file @
460eaee4
...
...
@@ -1974,7 +1974,6 @@ static NTSTATUS oss_wow64_set_volumes(void *args)
float
master_volume
;
PTR32
volumes
;
PTR32
session_volumes
;
int
channel
;
}
*
params32
=
args
;
struct
set_volumes_params
params
=
{
...
...
@@ -1982,7 +1981,6 @@ static NTSTATUS oss_wow64_set_volumes(void *args)
.
master_volume
=
params32
->
master_volume
,
.
volumes
=
ULongToPtr
(
params32
->
volumes
),
.
session_volumes
=
ULongToPtr
(
params32
->
session_volumes
),
.
channel
=
params32
->
channel
};
return
oss_set_volumes
(
&
params
);
}
...
...
dlls/winepulse.drv/mmdevdrv.c
View file @
460eaee4
...
...
@@ -316,7 +316,6 @@ static void set_stream_volumes(ACImpl *This)
params
.
master_volume
=
This
->
session
->
mute
?
0
.
0
f
:
This
->
session
->
master_vol
;
params
.
volumes
=
This
->
vols
;
params
.
session_volumes
=
This
->
session
->
channel_vols
;
params
.
channel
=
0
;
pulse_call
(
set_volumes
,
&
params
);
}
...
...
dlls/winepulse.drv/pulse.c
View file @
460eaee4
...
...
@@ -2723,7 +2723,6 @@ static NTSTATUS pulse_wow64_set_volumes(void *args)
float
master_volume
;
PTR32
volumes
;
PTR32
session_volumes
;
int
channel
;
}
*
params32
=
args
;
struct
set_volumes_params
params
=
{
...
...
@@ -2731,7 +2730,6 @@ static NTSTATUS pulse_wow64_set_volumes(void *args)
.
master_volume
=
params32
->
master_volume
,
.
volumes
=
ULongToPtr
(
params32
->
volumes
),
.
session_volumes
=
ULongToPtr
(
params32
->
session_volumes
),
.
channel
=
params32
->
channel
};
return
pulse_set_volumes
(
&
params
);
}
...
...
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