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
45290fcd
Commit
45290fcd
authored
Nov 02, 2010
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg.c: reindent
Originally committed as revision 25637 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d0abe80a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ffmpeg.c
ffmpeg.c
+5
-5
No files found.
ffmpeg.c
View file @
45290fcd
...
...
@@ -1863,8 +1863,8 @@ static int copy_chapters(int infile, int outfile)
out_ch
->
end
=
FFMIN
(
rt
,
in_ch
->
end
-
ts_off
);
if
(
metadata_chapters_autocopy
)
while
((
t
=
av_metadata_get
(
in_ch
->
metadata
,
""
,
t
,
AV_METADATA_IGNORE_SUFFIX
)))
av_metadata_set2
(
&
out_ch
->
metadata
,
t
->
key
,
t
->
value
,
0
);
while
((
t
=
av_metadata_get
(
in_ch
->
metadata
,
""
,
t
,
AV_METADATA_IGNORE_SUFFIX
)))
av_metadata_set2
(
&
out_ch
->
metadata
,
t
->
key
,
t
->
value
,
0
);
os
->
nb_chapters
++
;
os
->
chapters
=
av_realloc
(
os
->
chapters
,
sizeof
(
AVChapter
)
*
os
->
nb_chapters
);
...
...
@@ -2093,9 +2093,9 @@ static int transcode(AVFormatContext **output_files,
icodec
=
ist
->
st
->
codec
;
if
(
metadata_streams_autocopy
)
while
((
t
=
av_metadata_get
(
ist
->
st
->
metadata
,
""
,
t
,
AV_METADATA_IGNORE_SUFFIX
)))
{
av_metadata_set2
(
&
ost
->
st
->
metadata
,
t
->
key
,
t
->
value
,
AV_METADATA_DONT_OVERWRITE
);
}
while
((
t
=
av_metadata_get
(
ist
->
st
->
metadata
,
""
,
t
,
AV_METADATA_IGNORE_SUFFIX
)))
{
av_metadata_set2
(
&
ost
->
st
->
metadata
,
t
->
key
,
t
->
value
,
AV_METADATA_DONT_OVERWRITE
);
}
ost
->
st
->
disposition
=
ist
->
st
->
disposition
;
codec
->
bits_per_raw_sample
=
icodec
->
bits_per_raw_sample
;
...
...
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