Commit b559c96c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Add a forgotten break; in a case.

So far, it should work for most of the streams, except MP3 in rm (silly guys...), ralf, because it is still unsupported, and Sipr because of the flavour detection.
parent 450306de
......@@ -1169,6 +1169,7 @@ static int ReadCodecSpecificData( demux_t *p_demux, int i_len, int i_num )
case VLC_FOURCC('r','a','l','f'):
msg_Dbg( p_demux, " - audio codec not supported=%4.4s",
(char*)&fmt.i_codec );
break;
default:
msg_Dbg( p_demux, " - unknown audio codec=%4.4s",
......
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