summaryrefslogtreecommitdiffstats
path: root/stream/stream_radio.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-08 06:08:51 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-08 06:08:51 +0000
commitf619fb233ba8bf8f76ebb45c6a948519a894c807 (patch)
treebaaddb153e2ff728bb2d8c1cb2d2a596e64bcd52 /stream/stream_radio.c
parentcc770a264150c464be4961ea931b936285ba621b (diff)
downloadmpv-f619fb233ba8bf8f76ebb45c6a948519a894c807.tar.bz2
mpv-f619fb233ba8bf8f76ebb45c6a948519a894c807.tar.xz
Fix compiler warnings.
Remove unused tv_param_on variable. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23505 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/stream_radio.c')
-rw-r--r--stream/stream_radio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stream/stream_radio.c b/stream/stream_radio.c
index 2a3e36d515..441dff367c 100644
--- a/stream/stream_radio.c
+++ b/stream/stream_radio.c
@@ -1071,10 +1071,11 @@ char* radio_get_channel_name(struct stream_st *stream){
* \return number of bytes, written into buffer
*/
static int fill_buffer_s(struct stream_st *s, char* buffer, int max_len){
- radio_priv_t* priv=(radio_priv_t*)s->priv;
int len=max_len;
#ifdef USE_RADIO_CAPTURE
+ radio_priv_t* priv=(radio_priv_t*)s->priv;
+
if (priv->do_capture){
len=grab_audio_frame(priv, buffer,max_len);
}