mirror of
https://github.com/mpv-player/mpv
synced 2025-01-29 11:12:56 +00:00
Mark some functions that do not need external visibility as static.
patch by Alexander Neumann, alexander bumpern de git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29744 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
a04087cd67
commit
f806e745e2
@ -184,7 +184,7 @@ void uninit(sh_audio_t *sh)
|
||||
FreeLibrary(vqf_dll);
|
||||
}
|
||||
|
||||
int control(sh_audio_t *sh_audio,int cmd,void* arg, ...)
|
||||
static int control(sh_audio_t *sh_audio,int cmd,void* arg, ...)
|
||||
{
|
||||
switch(cmd) {
|
||||
case ADCTRL_QUERY_FORMAT:
|
||||
|
@ -204,7 +204,7 @@ static int put_image(struct vf_instance_s* vf, mp_image_t *mpi, double pts)
|
||||
return vf_next_put_image(vf, dmpi, pts);
|
||||
}
|
||||
|
||||
int control (vf_instance_t *vf, int request, void *data)
|
||||
static int control (vf_instance_t *vf, int request, void *data)
|
||||
{
|
||||
/** data contains an integer argument
|
||||
* 0: take screenshot with the next frame
|
||||
|
Loading…
Reference in New Issue
Block a user