Displaying 2 results from an estimated 2 matches for "flac__stream_encoder_framing_error".
2013 Jul 16
3
exhaustive-model-search issue results in multi-gigabyte FLAC file
Erik de Castro Lopo wrote:
> > http://wootangent.net/~lsd/blah/snippet6.wav
>
> Great, thanks! Confirmed the problem here. Will look at it ASAP.
Same problem with flac 1.2.1. Interesting!
Erik
--
----------------------------------------------------------------------
Erik de Castro Lopo
http://www.mega-nerd.com/
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
+ }
+#else
+ FLAC__MD5Init(&encoder->private_->md5context);
+#endif
+ }
if(!FLAC__add_metadata_block(&encoder->private_->streaminfo, encoder->private_->frame)) {
encoder->protected_->state = FLAC__STREAM_ENCODER_FRAMING_ERROR;
return FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR;
@@ -1305,9 +1319,13 @@ FLAC_API FLAC__bool FLAC__stream_encoder_finish(FLAC__StreamEncoder *encoder)
}
}
- if(encoder->protected_->do_md5)
- FLAC__MD5Final(encoder->private_->streaminfo.data.stream_info.md5sum, &enco...