diff options
author | phintuka <phintuka> | 2009-03-31 10:38:18 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2009-03-31 10:38:18 +0000 |
commit | 3ae6dbb891897c5ffb4980aa8780c14409192dae (patch) | |
tree | 397514d433bc1ffd9e4b674272948fb2ca180da1 | |
parent | d1b2dceb98351f6c8d043c21bf9ff22ce2bb248d (diff) | |
download | xineliboutput-3ae6dbb891897c5ffb4980aa8780c14409192dae.tar.gz xineliboutput-3ae6dbb891897c5ffb4980aa8780c14409192dae.tar.bz2 |
Fixed size of resend_requested field in udp_data_t
(it is used to store frame count, not just single flag)
-rw-r--r-- | xine_input_vdr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index c1670244..bef7fcac 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.247 2009-03-30 12:20:38 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.248 2009-03-31 10:38:18 phintuka Exp $ * */ @@ -343,7 +343,7 @@ struct udp_data_s { /* SCR adjust */ uint8_t scr_jump_done; - int resend_requested : 1; + int resend_requested; }; /* UDP sequence number handling */ @@ -3832,7 +3832,7 @@ static int vdr_plugin_read_net_udp(vdr_input_plugin_t *this) udp->queued --; INCSEQ(udp->next_seq); if (udp->resend_requested) - udp->resend_requested --; + udp->resend_requested --; } /* no new resend requests until previous has been completed or failed */ |