Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
b6892c38
Commit
b6892c38
authored
Sep 05, 2011
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print codec_id on unsupported track in avformat demuxer.
parent
88564ace
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/demux/avformat/demux.c
modules/demux/avformat/demux.c
+1
-1
No files found.
modules/demux/avformat/demux.c
View file @
b6892c38
...
...
@@ -379,7 +379,7 @@ int OpenDemux( vlc_object_t *p_this )
if
(
cc
->
codec_type
==
AVMEDIA_TYPE_DATA
)
psz_type
=
"data"
;
msg_Warn
(
p_demux
,
"unsupported track type (%u) in avformat demux"
,
cc
->
codec_type
);
msg_Warn
(
p_demux
,
"unsupported track type (%u
:%u
) in avformat demux"
,
cc
->
codec_type
,
cc
->
codec_id
);
}
break
;
}
...
...
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