Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a4d3f358
Commit
a4d3f358
authored
May 23, 2012
by
Samuel Pitoiset
Committed by
Martin Storsjö
May 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtmp: Return a proper error code instead of -1
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
08e93f5b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
rtmpproto.c
libavformat/rtmpproto.c
+4
-4
No files found.
libavformat/rtmpproto.c
View file @
a4d3f358
...
...
@@ -621,12 +621,12 @@ static int rtmp_handshake(URLContext *s, RTMPContext *rt)
i
=
ffurl_read_complete
(
rt
->
stream
,
serverdata
,
RTMP_HANDSHAKE_PACKET_SIZE
+
1
);
if
(
i
!=
RTMP_HANDSHAKE_PACKET_SIZE
+
1
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Cannot read RTMP handshake response
\n
"
);
return
-
1
;
return
AVERROR
(
EIO
)
;
}
i
=
ffurl_read_complete
(
rt
->
stream
,
clientdata
,
RTMP_HANDSHAKE_PACKET_SIZE
);
if
(
i
!=
RTMP_HANDSHAKE_PACKET_SIZE
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Cannot read RTMP handshake response
\n
"
);
return
-
1
;
return
AVERROR
(
EIO
)
;
}
av_log
(
s
,
AV_LOG_DEBUG
,
"Server version %d.%d.%d.%d
\n
"
,
...
...
@@ -644,7 +644,7 @@ static int rtmp_handshake(URLContext *s, RTMPContext *rt)
if
(
!
server_pos
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Server response validating failed
\n
"
);
return
-
1
;
return
AVERROR
(
EIO
)
;
}
}
...
...
@@ -660,7 +660,7 @@ static int rtmp_handshake(URLContext *s, RTMPContext *rt)
if
(
memcmp
(
digest
,
clientdata
+
RTMP_HANDSHAKE_PACKET_SIZE
-
32
,
32
))
{
av_log
(
s
,
AV_LOG_ERROR
,
"Signature mismatch
\n
"
);
return
-
1
;
return
AVERROR
(
EIO
)
;
}
for
(
i
=
0
;
i
<
RTMP_HANDSHAKE_PACKET_SIZE
;
i
++
)
...
...
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