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
93540492
Commit
93540492
authored
Jan 14, 2017
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics: Reindent after last commit.
parent
c723108e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
matroskaenc.c
libavformat/matroskaenc.c
+6
-6
No files found.
libavformat/matroskaenc.c
View file @
93540492
...
...
@@ -1120,13 +1120,13 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv,
// look for a codec ID string specific to mkv to use,
// if none are found, use AVI codes
if
(
par
->
codec_id
!=
AV_CODEC_ID_RAWVIDEO
||
par
->
codec_tag
)
{
for
(
j
=
0
;
ff_mkv_codec_tags
[
j
].
id
!=
AV_CODEC_ID_NONE
;
j
++
)
{
if
(
ff_mkv_codec_tags
[
j
].
id
==
par
->
codec_id
)
{
put_ebml_string
(
pb
,
MATROSKA_ID_CODECID
,
ff_mkv_codec_tags
[
j
].
str
);
native_id
=
1
;
break
;
for
(
j
=
0
;
ff_mkv_codec_tags
[
j
].
id
!=
AV_CODEC_ID_NONE
;
j
++
)
{
if
(
ff_mkv_codec_tags
[
j
].
id
==
par
->
codec_id
)
{
put_ebml_string
(
pb
,
MATROSKA_ID_CODECID
,
ff_mkv_codec_tags
[
j
].
str
);
native_id
=
1
;
break
;
}
}
}
}
else
{
if
(
mkv
->
allow_raw_vfw
)
{
native_id
=
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