Commit 2428c90c authored by Tristan Matthews's avatar Tristan Matthews Committed by Rafaël Carré

flac: add warning message for decoder error 3

Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 19c16247
...@@ -271,6 +271,10 @@ static void DecoderErrorCallback( const FLAC__StreamDecoder *decoder, ...@@ -271,6 +271,10 @@ static void DecoderErrorCallback( const FLAC__StreamDecoder *decoder,
msg_Err( p_dec, "frame's data did not match the CRC in the " msg_Err( p_dec, "frame's data did not match the CRC in the "
"footer." ); "footer." );
break; break;
case FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM:
msg_Err( p_dec, "The decoder encountered reserved fields in use in "
"the stream." );
break;
default: default:
msg_Err( p_dec, "got decoder error: %d", status ); msg_Err( p_dec, "got decoder error: %d", status );
} }
......
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