Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
f18cae4d
Commit
f18cae4d
authored
17 years ago
by
Ramiro Polla
Browse files
Options
Downloads
Patches
Plain Diff
Set UDP receive buffer to 64k
Originally committed as revision 10129 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
fce388b4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/udp.c
+6
-0
6 additions, 0 deletions
libavformat/udp.c
with
6 additions
and
0 deletions
libavformat/udp.c
+
6
−
0
View file @
f18cae4d
...
@@ -43,6 +43,7 @@ typedef struct {
...
@@ -43,6 +43,7 @@ typedef struct {
}
UDPContext
;
}
UDPContext
;
#define UDP_TX_BUF_SIZE 32768
#define UDP_TX_BUF_SIZE 32768
#define UDP_MAX_PKT_SIZE 65536
#ifdef CONFIG_IPV6
#ifdef CONFIG_IPV6
...
@@ -396,6 +397,11 @@ static int udp_open(URLContext *h, const char *uri, int flags)
...
@@ -396,6 +397,11 @@ static int udp_open(URLContext *h, const char *uri, int flags)
perror
(
"setsockopt sndbuf"
);
perror
(
"setsockopt sndbuf"
);
goto
fail
;
goto
fail
;
}
}
}
else
{
/* set udp recv buffer size to the largest possible udp packet size to
* avoid losing data on OSes that set this too low by default. */
tmp
=
UDP_MAX_PKT_SIZE
;
setsockopt
(
udp_fd
,
SOL_SOCKET
,
SO_RCVBUF
,
&
tmp
,
sizeof
(
tmp
));
}
}
s
->
udp_fd
=
udp_fd
;
s
->
udp_fd
=
udp_fd
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment