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
8fc11abe
Commit
8fc11abe
authored
May 11, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: Print unsupported mov tags when found
parent
0348e74c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
matroskadec.c
libavformat/matroskadec.c
+6
-0
No files found.
libavformat/matroskadec.c
View file @
8fc11abe
...
...
@@ -1608,6 +1608,12 @@ static int matroska_parse_tracks(AVFormatContext *s)
track
->
video
.
fourcc
=
AV_RL32
(
track
->
codec_priv
.
data
);
codec_id
=
ff_codec_get_id
(
ff_codec_movvideo_tags
,
track
->
video
.
fourcc
);
if
(
codec_id
==
AV_CODEC_ID_NONE
)
{
char
buf
[
32
];
av_get_codec_tag_string
(
buf
,
sizeof
(
buf
),
track
->
video
.
fourcc
);
av_log
(
matroska
->
ctx
,
AV_LOG_ERROR
,
"mov FourCC not found %s.
\n
"
,
buf
);
}
}
else
if
(
codec_id
==
AV_CODEC_ID_PCM_S16BE
)
{
switch
(
track
->
audio
.
bitdepth
)
{
case
8
:
...
...
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