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
5e893df7
Commit
5e893df7
authored
Apr 21, 2013
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/sendcmd: fix various "in in" rerepepetitions in messages
parent
fd7a7e11
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
f_sendcmd.c
libavfilter/f_sendcmd.c
+3
-3
No files found.
libavfilter/f_sendcmd.c
View file @
5e893df7
...
...
@@ -134,7 +134,7 @@ static int parse_command(Command *cmd, int cmd_count, int interval_count,
char
flag_buf
[
64
];
av_strlcpy
(
flag_buf
,
*
buf
,
sizeof
(
flag_buf
));
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"Unknown flag '%s' in in
in
terval #%d, command #%d
\n
"
,
"Unknown flag '%s' in interval #%d, command #%d
\n
"
,
flag_buf
,
interval_count
,
cmd_count
);
return
AVERROR
(
EINVAL
);
}
...
...
@@ -166,7 +166,7 @@ static int parse_command(Command *cmd, int cmd_count, int interval_count,
cmd
->
target
=
av_get_token
(
buf
,
COMMAND_DELIMS
);
if
(
!
cmd
->
target
||
!
cmd
->
target
[
0
])
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"No target specified in in
in
terval #%d, command #%d
\n
"
,
"No target specified in interval #%d, command #%d
\n
"
,
interval_count
,
cmd_count
);
ret
=
AVERROR
(
EINVAL
);
goto
fail
;
...
...
@@ -176,7 +176,7 @@ static int parse_command(Command *cmd, int cmd_count, int interval_count,
cmd
->
command
=
av_get_token
(
buf
,
COMMAND_DELIMS
);
if
(
!
cmd
->
command
||
!
cmd
->
command
[
0
])
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"No command specified in in
in
terval #%d, command #%d
\n
"
,
"No command specified in interval #%d, command #%d
\n
"
,
interval_count
,
cmd_count
);
ret
=
AVERROR
(
EINVAL
);
goto
fail
;
...
...
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