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

AVI: a debug message when refusing to open the subtitle

Ref #7853
parent 6e85f629
...@@ -2669,7 +2669,10 @@ static void AVI_ExtractSubtitle( demux_t *p_demux, ...@@ -2669,7 +2669,10 @@ static void AVI_ExtractSubtitle( demux_t *p_demux,
/* */ /* */
if( i_size > 10000000 ) if( i_size > 10000000 )
{
msg_Dbg( p_demux, "Attached subtitle too big: %u", i_size );
goto exit; goto exit;
}
if( stream_Seek( p_demux->s, i_position ) ) if( stream_Seek( p_demux->s, i_position ) )
goto exit; goto exit;
......
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