[vlc-commits] avformat: add codec ID in debug info
Rémi Denis-Courmont
git at videolan.org
Wed Jul 10 18:44:08 CEST 2013
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Jul 10 19:37:09 2013 +0300| [843839129dc95b170e3f95a0d63edea4873d66be] | committer: Rémi Denis-Courmont
avformat: add codec ID in debug info
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=843839129dc95b170e3f95a0d63edea4873d66be
---
modules/demux/avformat/demux.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c
index d2e17cf..016c5be 100644
--- a/modules/demux/avformat/demux.c
+++ b/modules/demux/avformat/demux.c
@@ -495,8 +495,8 @@ int OpenDemux( vlc_object_t *p_this )
es_out_Control( p_demux->out, ES_OUT_SET_ES_DEFAULT, es );
es_format_Clean( &fmt );
- msg_Dbg( p_demux, "adding es: %s codec = %4.4s",
- psz_type, (char*)&fcc );
+ msg_Dbg( p_demux, "adding es: %s codec = %4.4s (%d)",
+ psz_type, (char*)&fcc, cc->codec_id );
TAB_APPEND( p_sys->i_tk, p_sys->tk, es );
}
}
More information about the vlc-commits
mailing list