1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-02 09:09:59 +02:00

cleaned up the udp.c, removed some variables and an av_log

This commit is contained in:
JULIAN GARDNER 2011-05-18 16:51:20 +02:00 committed by Michael Niedermayer
parent e3ff6e8d0f
commit 8146d16b60

View File

@ -57,7 +57,6 @@ typedef struct {
/* Circular Buffer variables for use in UDP receive code */
int circular_buffer_size;
AVFifoBuffer *fifo;
int circular_buffer_available_max;
int circular_buffer_error;
pthread_t circular_buffer_thread;
} UDPContext;
@ -529,7 +528,6 @@ static int udp_read(URLContext *h, uint8_t *buf, int size)
UDPContext *s = h->priv_data;
int ret;
int avail;
int left;
fd_set rfds;
struct timeval tv;
@ -594,7 +592,6 @@ static int udp_close(URLContext *h)
if (s->is_multicast && (h->flags & AVIO_FLAG_READ))
udp_leave_multicast_group(s->udp_fd, (struct sockaddr *)&s->dest_addr);
closesocket(s->udp_fd);
av_log( h, AV_LOG_INFO, "circular_buffer_info max:%d%%\r\n", (s->circular_buffer_available_max*100)/s->circular_buffer_size);
av_fifo_free(s->fifo);
av_free(s);
return 0;