mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
vo: remove unused equalizer control remains
Equalizer control was redone in 03cf150ff3
(over 2 years
ago). Ever since, the equalizer control structs and the GET voctrl have
been unused. Only the SET voctrl is still used as notification mechanism
(actually a bad hack to avoid some further option change handling
complexity).
Remove the unused parts.
This commit is contained in:
parent
8e5cd62dca
commit
257534ed18
@ -65,8 +65,7 @@ enum mp_voctrl {
|
||||
VOCTRL_RESUME,
|
||||
|
||||
VOCTRL_SET_PANSCAN,
|
||||
VOCTRL_SET_EQUALIZER, // struct voctrl_set_equalizer_args*
|
||||
VOCTRL_GET_EQUALIZER, // struct voctrl_get_equalizer_args*
|
||||
VOCTRL_SET_EQUALIZER,
|
||||
|
||||
/* private to vo_gpu */
|
||||
VOCTRL_LOAD_HWDEC_API,
|
||||
@ -129,18 +128,6 @@ enum mp_voctrl {
|
||||
VOCTRL_EXTERNAL_RESIZE,
|
||||
};
|
||||
|
||||
// VOCTRL_SET_EQUALIZER
|
||||
struct voctrl_set_equalizer_args {
|
||||
const char *name;
|
||||
int value;
|
||||
};
|
||||
|
||||
// VOCTRL_GET_EQUALIZER
|
||||
struct voctrl_get_equalizer_args {
|
||||
const char *name;
|
||||
int *valueptr;
|
||||
};
|
||||
|
||||
// VOCTRL_GET_WIN_STATE
|
||||
#define VO_WIN_STATE_MINIMIZED 1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user