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
1fcbaa37
Commit
1fcbaa37
authored
Dec 19, 2019
by
Nicolas Gaullier
Committed by
Michael Niedermayer
Dec 21, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fftools/ffmpeg: Reindent after last commit
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
15345881
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
ffmpeg.c
fftools/ffmpeg.c
+6
-6
No files found.
fftools/ffmpeg.c
View file @
1fcbaa37
...
...
@@ -3563,12 +3563,12 @@ static int init_output_stream(OutputStream *ost, char *error, int error_len)
for
(
i
=
0
;
i
<
ist
->
st
->
nb_side_data
;
i
++
)
{
AVPacketSideData
*
sd
=
&
ist
->
st
->
side_data
[
i
];
if
(
sd
->
type
!=
AV_PKT_DATA_CPB_PROPERTIES
)
{
uint8_t
*
dst
=
av_stream_new_side_data
(
ost
->
st
,
sd
->
type
,
sd
->
size
);
if
(
!
dst
)
return
AVERROR
(
ENOMEM
);
memcpy
(
dst
,
sd
->
data
,
sd
->
size
);
if
(
ist
->
autorotate
&&
sd
->
type
==
AV_PKT_DATA_DISPLAYMATRIX
)
av_display_rotation_set
((
uint32_t
*
)
dst
,
0
);
uint8_t
*
dst
=
av_stream_new_side_data
(
ost
->
st
,
sd
->
type
,
sd
->
size
);
if
(
!
dst
)
return
AVERROR
(
ENOMEM
);
memcpy
(
dst
,
sd
->
data
,
sd
->
size
);
if
(
ist
->
autorotate
&&
sd
->
type
==
AV_PKT_DATA_DISPLAYMATRIX
)
av_display_rotation_set
((
uint32_t
*
)
dst
,
0
);
}
}
}
...
...
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