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
6aa4e881
Commit
6aa4e881
authored
Jun 19, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mmst: Use AVUNERROR() to convert error codes to the right range for strerror
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
56168769
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
mmst.c
libavformat/mmst.c
+5
-5
No files found.
libavformat/mmst.c
View file @
6aa4e881
...
...
@@ -144,7 +144,7 @@ static int send_command_packet(MMSTContext *mmst)
av_log
(
NULL
,
AV_LOG_ERROR
,
"Failed to write data of length %d: %d (%s)
\n
"
,
exact_length
,
write_result
,
write_result
<
0
?
strerror
(
write_result
)
:
write_result
<
0
?
strerror
(
AVUNERROR
(
write_result
)
)
:
"The server closed the connection"
);
return
AVERROR
(
EIO
);
}
...
...
@@ -246,7 +246,7 @@ static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
if
(
read_result
<
0
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"Error reading packet header: %d (%s)
\n
"
,
read_result
,
strerror
(
read_result
));
read_result
,
strerror
(
AVUNERROR
(
read_result
)
));
packet_type
=
SC_PKT_CANCEL
;
}
else
{
av_log
(
NULL
,
AV_LOG_ERROR
,
...
...
@@ -266,7 +266,7 @@ static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
av_log
(
NULL
,
AV_LOG_ERROR
,
"Reading command packet length failed: %d (%s)
\n
"
,
read_result
,
read_result
<
0
?
strerror
(
read_result
)
:
read_result
<
0
?
strerror
(
AVUNERROR
(
read_result
)
)
:
"The server closed the connection"
);
return
read_result
<
0
?
read_result
:
AVERROR
(
EIO
);
}
...
...
@@ -287,7 +287,7 @@ static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
av_log
(
NULL
,
AV_LOG_ERROR
,
"Reading pkt data (length=%d) failed: %d (%s)
\n
"
,
length_remaining
,
read_result
,
read_result
<
0
?
strerror
(
read_result
)
:
read_result
<
0
?
strerror
(
AVUNERROR
(
read_result
)
)
:
"The server closed the connection"
);
return
read_result
<
0
?
read_result
:
AVERROR
(
EIO
);
}
...
...
@@ -324,7 +324,7 @@ static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
av_log
(
NULL
,
AV_LOG_ERROR
,
"Failed to read packet data of size %d: %d (%s)
\n
"
,
length_remaining
,
read_result
,
read_result
<
0
?
strerror
(
read_result
)
:
read_result
<
0
?
strerror
(
AVUNERROR
(
read_result
)
)
:
"The server closed the connection"
);
return
read_result
<
0
?
read_result
:
AVERROR
(
EIO
);
}
...
...
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