Displaying 4 results from an estimated 4 matches for "flac__blurbs_to_bits".
2005 Jan 24
0
libFLAC bitbuffer optimizations
...= bb->buffer[r];
for( ; l < r_end; l++)
bb->buffer[l] = 0;
+#else
+ FLAC__ASSERT(false); /* ERROR, only sizes of 8 and 32 are
supported */
+#endif /* FLAC__BITS_PER_BLURB == 32 or 8 */
+
bb->blurbs -= bb->consumed_blurbs;
bb->total_bits -= FLAC__BLURBS_TO_BITS(bb->consumed_blurbs);
bb->consumed_blurbs = 0;
__________________________________
Do you Yahoo!?
Yahoo! Mail - Easier than ever with enhanced search. Learn more.
http://info.mail.yahoo.com/mail_250
2004 Dec 29
0
libFLAC bitbuffer optimizations
...buffer[r];
> for( ; l < r_end; l++)
> bb->buffer[l] = 0;
> +#else
> + FLAC__ASSERT(false); /* ERROR, only sizes of 8 and 32 are supported
> */
> +#endif /* FLAC__BITS_PER_BLURB == 32 or 8 */
> bb->blurbs -= bb->consumed_blurbs;
> bb->total_bits -= FLAC__BLURBS_TO_BITS(bb->consumed_blurbs);
> bb->consumed_blurbs = 0;
>
>
>
> --
> Eric Wong / normalperson on freenode
__________________________________
Do you Yahoo!?
Dress up your holiday email, Hollywood style. Learn more.
http://celebrity.mail.yahoo.com
2004 Dec 28
2
libFLAC bitbuffer optimizations
...l++, r++)
bb->buffer[l] = bb->buffer[r];
for( ; l < r_end; l++)
bb->buffer[l] = 0;
+#else
+ FLAC__ASSERT(false); /* ERROR, only sizes of 8 and 32 are supported */
+#endif /* FLAC__BITS_PER_BLURB == 32 or 8 */
bb->blurbs -= bb->consumed_blurbs;
bb->total_bits -= FLAC__BLURBS_TO_BITS(bb->consumed_blurbs);
bb->consumed_blurbs = 0;
--
Eric Wong / normalperson on freenode
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
Url : http://lists.xiph.org/p...
2005 Jan 01
2
libFLAC bitbuffer optimizations
Josh Coalson <xflac@yahoo.com> wrote:
> thanks for the patch.
No prob :)
> also, if you have miroslav's patch again a more updated version
> of bitbuffer.c that would be great. I have been meaning to get
> around to applying it for a long time.
This is Miroslav's patch, from the mailing list post I dug up in the archives:
--- orig/src/libFLAC/bitbuffer.c
+++