xrdpvr: rename the set volume function

This commit is contained in:
Jay Sorg 2013-07-19 17:34:39 -07:00
parent 50db19c88c
commit c41bced4df
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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
}