Displaying 4 results from an estimated 4 matches for "flac__add_metadata_block".
2014 Jun 20
2
Lets work towards a new version
On Fri, Jun 20, 2014 at 1:05 AM, lvqcl <lvqcl.mail at gmail.com> wrote:
> I cannot find anything about the size of METADATA_BLOCK_PICTURE block
> in <http://xiph.org/flac/format.html>. Where did you read this?
>
METADATA_BLOCK_HEADER has a 24-bit field to encode the length of
METADATA_BLOCK_DATA ; hence the limitation (which not only applies
to METADATA_BLOCK_PICTURE but all
2013 Apr 05
0
flac 1.3.0pre3 pre-release
...ream_decoder.c: In function 'read_metadata_cuesheet_':
> stream_decoder.c:1808:43: warning: declaration of 'index' shadows a
> global declaration [-Wshadow]
> CC stream_encoder.lo
> CC stream_encoder_framing.lo
> stream_encoder_framing.c: In function 'FLAC__add_metadata_block':
> stream_encoder_framing.c:164:49: warning: declaration of 'index'
> shadows a global declaration [-Wshadow]
> [...]
> CC decode.o
> decode.c: In function ?write_callback?:
> decode.c:965:28: warning: cast increases required alignment of target
> type [-Wc...
2012 May 05
5
[PATCH] Optionally, allow distros to use openssl for MD5 verification
...{
+#if defined(HAVE_OPENSSL)
+ if(EVP_DigestInit_ex(&encoder->private_->md5context, EVP_md5(), NULL) == 0) {
+ 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...
2013 Apr 01
17
flac 1.3.0pre3 pre-release
Hi all,
The latest pre-release is here:
http://downloads.xiph.org/releases/flac/beta/flac-1.3.0pre3.tar.xz
but there will probably need to be at least one more.
I've tested this on
x86_64-linux
powerpc-linux
i386-openbsd5.2
i386-freebsd9
The majority of changes since the last pre-release is the addition of
Janne Hyv?rinen's utf8 I/O functionality. Janne's