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
449704b4
Commit
449704b4
authored
May 06, 2013
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: move a local variable definition later.
Fix a segfault when using the -map option without input files.
parent
d23b8462
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ffmpeg_opt.c
ffmpeg_opt.c
+2
-1
No files found.
ffmpeg_opt.c
View file @
449704b4
...
...
@@ -1719,7 +1719,6 @@ static int open_output_file(OptionsContext *o, const char *filename)
}
else
{
for
(
i
=
0
;
i
<
o
->
nb_stream_maps
;
i
++
)
{
StreamMap
*
map
=
&
o
->
stream_maps
[
i
];
int
src_idx
=
input_files
[
map
->
file_index
]
->
ist_index
+
map
->
stream_index
;
if
(
map
->
disabled
)
continue
;
...
...
@@ -1747,6 +1746,8 @@ loop_end:
}
init_output_filter
(
ofilter
,
o
,
oc
);
}
else
{
int
src_idx
=
input_files
[
map
->
file_index
]
->
ist_index
+
map
->
stream_index
;
ist
=
input_streams
[
input_files
[
map
->
file_index
]
->
ist_index
+
map
->
stream_index
];
if
(
o
->
subtitle_disable
&&
ist
->
st
->
codec
->
codec_type
==
AVMEDIA_TYPE_SUBTITLE
)
continue
;
...
...
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