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
100df10b
Commit
100df10b
authored
May 20, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg_opt: Give the user a hint on how to ignore unsupported streams
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
40bf3687
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
ffmpeg_opt.c
ffmpeg_opt.c
+5
-1
No files found.
ffmpeg_opt.c
View file @
100df10b
...
...
@@ -2022,12 +2022,16 @@ loop_end:
av_log
(
NULL
,
ignore_unknown_streams
?
AV_LOG_FATAL
:
AV_LOG_WARNING
,
"Cannot map stream #%d:%d - unsupported type.
\n
"
,
map
->
file_index
,
map
->
stream_index
);
if
(
!
ignore_unknown_streams
)
if
(
!
ignore_unknown_streams
)
{
av_log
(
NULL
,
AV_LOG_FATAL
,
"If you want unsupported types ignored instead"
"of failing, please use the -ignore_unknown option
\n
"
);
exit_program
(
1
);
}
}
}
}
}
/* handle attached files */
for
(
i
=
0
;
i
<
o
->
nb_attachments
;
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