Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
f9a6cfdd
Commit
f9a6cfdd
authored
May 09, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpproto: Remove an unused variable
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
ecfc5e0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
rtpproto.c
libavformat/rtpproto.c
+1
-3
No files found.
libavformat/rtpproto.c
View file @
f9a6cfdd
...
@@ -138,15 +138,13 @@ static int rtp_open(URLContext *h, const char *uri, int flags)
...
@@ -138,15 +138,13 @@ static int rtp_open(URLContext *h, const char *uri, int flags)
{
{
RTPContext
*
s
;
RTPContext
*
s
;
int
rtp_port
,
rtcp_port
,
int
rtp_port
,
rtcp_port
,
is_output
,
ttl
,
connect
,
ttl
,
connect
,
local_rtp_port
,
local_rtcp_port
,
max_packet_size
;
local_rtp_port
,
local_rtcp_port
,
max_packet_size
;
char
hostname
[
256
];
char
hostname
[
256
];
char
buf
[
1024
];
char
buf
[
1024
];
char
path
[
1024
];
char
path
[
1024
];
const
char
*
p
;
const
char
*
p
;
is_output
=
(
flags
&
AVIO_FLAG_WRITE
);
s
=
av_mallocz
(
sizeof
(
RTPContext
));
s
=
av_mallocz
(
sizeof
(
RTPContext
));
if
(
!
s
)
if
(
!
s
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment