summaryrefslogtreecommitdiffstats
path: root/xrdpvr
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2013-07-19 17:34:39 -0700
committerJay Sorg <jay.sorg@gmail.com>2013-07-19 17:34:39 -0700
commitc41bced4dfb1ddca86f0e7026e04dec6129ad038 (patch)
tree109270121f0a34c796b4c00f66df1ee8c411ea70 /xrdpvr
parent50db19c88c97a99770ce53fefcc14a74ca7e87ab (diff)
downloadxrdp-proprietary-c41bced4dfb1ddca86f0e7026e04dec6129ad038.tar.gz
xrdp-proprietary-c41bced4dfb1ddca86f0e7026e04dec6129ad038.zip
xrdpvr: rename the set volume function
Diffstat (limited to 'xrdpvr')
-rw-r--r--xrdpvr/xrdpvr.c2
-rw-r--r--xrdpvr/xrdpvr.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/xrdpvr/xrdpvr.c b/xrdpvr/xrdpvr.c
index d6a4fdb7..09a0a6b8 100644
--- a/xrdpvr/xrdpvr.c
+++ b/xrdpvr/xrdpvr.c
@@ -760,7 +760,7 @@ xrdpvr_write_to_client(void *channel, STREAM *s)
* @return 0 on success, -1 on failure
******************************************************************************/
int
-send_volume(void *channel, int volume)
+xrdpvr_set_volume(void *channel, int volume)
{
STREAM *s;
char *cptr;
diff --git a/xrdpvr/xrdpvr.h b/xrdpvr/xrdpvr.h
index ba5dc6b9..1324282c 100644
--- a/xrdpvr/xrdpvr.h
+++ b/xrdpvr/xrdpvr.h
@@ -44,7 +44,7 @@ int xrdpvr_seek_media(int64_t pos, int backward);
int xrdpvr_get_frame(void **av_pkt_ret, int *is_video_frame, int *delay_in_us);
int send_audio_pkt(void *channel, int stream_id, void *pkt_p);
int send_video_pkt(void *channel, int stream_id, void *pkt_p);
-int send_volume(void *channel, int volume);
+int xrdpvr_set_volume(void *channel, int volume);
#ifdef __cplusplus
}