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
a119c64e
Commit
a119c64e
authored
Oct 16, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: fix disabling auto mappings with -map_metadata
CC: libav-stable@libav.org
parent
a25d912d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
avconv_opt.c
avconv_opt.c
+7
-3
No files found.
avconv_opt.c
View file @
a119c64e
...
...
@@ -326,6 +326,10 @@ static int copy_metadata(char *outspec, char *inspec, AVFormatContext *oc, AVFor
if
(
type_in
==
'c'
||
type_out
==
'c'
)
o
->
metadata_chapters_manual
=
1
;
/* ic is NULL when just disabling automatic mappings */
if
(
!
ic
)
return
0
;
#define METADATA_CHECK_INDEX(index, nb_elems, desc)\
if ((index) < 0 || (index) >= (nb_elems)) {\
av_log(NULL, AV_LOG_FATAL, "Invalid %s index %d while processing metadata maps.\n",\
...
...
@@ -1410,13 +1414,13 @@ loop_end:
char
*
p
;
int
in_file_index
=
strtol
(
o
->
metadata_map
[
i
].
u
.
str
,
&
p
,
0
);
if
(
in_file_index
<
0
)
continue
;
if
(
in_file_index
>=
nb_input_files
)
{
av_log
(
NULL
,
AV_LOG_FATAL
,
"Invalid input file index %d while processing metadata maps
\n
"
,
in_file_index
);
exit
(
1
);
}
copy_metadata
(
o
->
metadata_map
[
i
].
specifier
,
*
p
?
p
+
1
:
p
,
oc
,
input_files
[
in_file_index
]
->
ctx
,
o
);
copy_metadata
(
o
->
metadata_map
[
i
].
specifier
,
*
p
?
p
+
1
:
p
,
oc
,
in_file_index
>=
0
?
input_files
[
in_file_index
]
->
ctx
:
NULL
,
o
);
}
/* copy chapters */
...
...
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