Commit cc8b74fd authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Add codec fourcc of input to the message.

Signed-off-by: Jean-Paul Saman's avatarJean-Paul Saman <jean-paul.saman@m2x.nl>
parent 46202939
......@@ -333,8 +333,9 @@ int OpenVideoDecoder( vlc_object_t *p_this )
params.maxFrameRate = 0;
params.maxBitRate = 0;
msg_Dbg( p_dec, "Creating decoder for %dx%d",
(int)params.maxWidth, (int)params.maxHeight );
msg_Dbg( p_dec, "Creating decoder for %dx%d codec %4s",
(int)params.maxWidth, (int)params.maxHeight,
(const char *)&p_dec->fmt_in.i_codec );
params.dataEndianness = XDM_BYTE;
params.forceChromaFormat = VlcChromaToXdm( i_chroma );
......@@ -818,4 +819,3 @@ error:
block_Release( p_block );
return NULL;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment