diff options
author | Luca Abeni <lucabe72@email.it> | 2007-11-14 08:22:06 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2007-11-14 08:22:06 +0000 |
commit | 6b7089044aff5eaa7012df06dc336df7a7a38471 (patch) | |
tree | 1956939c328c0f19364c9d5b51bbda30918295b3 /libavformat | |
parent | d05cb726bdd50286a72fa23554bb3257ba23cae4 (diff) | |
download | ffmpeg-6b7089044aff5eaa7012df06dc336df7a7a38471.tar.gz |
Remove some useless assignments (the UDPContext is allocated with av_mallocz())
Originally committed as revision 11017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/udp.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index c1ff2b181e..7d2529bcfe 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -309,9 +309,6 @@ static int udp_open(URLContext *h, const char *uri, int flags) h->priv_data = s; s->ttl = 16; - s->is_multicast = 0; - s->local_port = 0; - s->reuse_socket = 0; p = strchr(uri, '?'); if (p) { s->is_multicast = find_info_tag(buf, sizeof(buf), "multicast", p); |