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
819e4e79
Commit
819e4e79
authored
Sep 21, 2018
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/matroskaenc: reindent after the previous commit
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
84396565
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
matroskaenc.c
libavformat/matroskaenc.c
+13
-13
No files found.
libavformat/matroskaenc.c
View file @
819e4e79
...
@@ -1249,19 +1249,19 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
...
@@ -1249,19 +1249,19 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
}
}
}
}
}
else
if
(
par
->
codec_id
==
AV_CODEC_ID_WEBVTT
)
{
}
else
if
(
par
->
codec_id
==
AV_CODEC_ID_WEBVTT
)
{
if
(
st
->
disposition
&
AV_DISPOSITION_CAPTIONS
)
{
if
(
st
->
disposition
&
AV_DISPOSITION_CAPTIONS
)
{
codec_id
=
"D_WEBVTT/CAPTIONS"
;
codec_id
=
"D_WEBVTT/CAPTIONS"
;
native_id
=
MATROSKA_TRACK_TYPE_SUBTITLE
;
native_id
=
MATROSKA_TRACK_TYPE_SUBTITLE
;
}
else
if
(
st
->
disposition
&
AV_DISPOSITION_DESCRIPTIONS
)
{
}
else
if
(
st
->
disposition
&
AV_DISPOSITION_DESCRIPTIONS
)
{
codec_id
=
"D_WEBVTT/DESCRIPTIONS"
;
codec_id
=
"D_WEBVTT/DESCRIPTIONS"
;
native_id
=
MATROSKA_TRACK_TYPE_METADATA
;
native_id
=
MATROSKA_TRACK_TYPE_METADATA
;
}
else
if
(
st
->
disposition
&
AV_DISPOSITION_METADATA
)
{
}
else
if
(
st
->
disposition
&
AV_DISPOSITION_METADATA
)
{
codec_id
=
"D_WEBVTT/METADATA"
;
codec_id
=
"D_WEBVTT/METADATA"
;
native_id
=
MATROSKA_TRACK_TYPE_METADATA
;
native_id
=
MATROSKA_TRACK_TYPE_METADATA
;
}
else
{
}
else
{
codec_id
=
"D_WEBVTT/SUBTITLES"
;
codec_id
=
"D_WEBVTT/SUBTITLES"
;
native_id
=
MATROSKA_TRACK_TYPE_SUBTITLE
;
native_id
=
MATROSKA_TRACK_TYPE_SUBTITLE
;
}
}
}
}
if
(
!
native_id
)
{
if
(
!
native_id
)
{
...
...
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