1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-08 11:26:59 +02:00

stream_filter: smooth: fix warnings for non bw adapt mode

This commit is contained in:
Francois Cartegnie 2014-10-27 22:43:57 +01:00
parent a3382f3bd3
commit d3d3cfceff

View File

@ -149,8 +149,10 @@ static int sms_Download( stream_t *s, chunk_t *chunk, char *url )
#ifdef DISABLE_BANDWIDTH_ADAPTATION
static unsigned BandwidthAdaptation( stream_t *s,
sms_stream_t *sms, uint64_t *bandwidth )
sms_stream_t *sms, uint64_t bandwidth )
{
VLC_UNUSED(bandwidth);
VLC_UNUSED(s);
return sms->download_qlvl;
}
#else