This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
udp: Fix pkt_size management
The default value for unset is -1, not 0. Problem introduced in
66028b7ba6
Bug-Id: 835
tags/n2.7
Luca Barbato
11 years ago
parent
72025ac36c
commit
ff7adead0a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/udp.c
+ 1
- 1
libavformat/udp.c
View File
@@ -464,7 +464,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
goto fail;
}
if (s->pkt_size)
if (s->pkt_size
> 0
)
h->max_packet_size = s->pkt_size;
p = strchr(uri, '?');
Write
Preview
Loading…
Cancel
Save