Displaying 5 results from an estimated 5 matches for "stream_flags".
Did you mean:
stream_flac
2016 May 05
1
Max OSX 3.3.0 and lzma
...lib/liblzma.dylib
bash-3.2$ ls /usr/local/include/*lzma*
ls /usr/local/include/*lzma*
/usr/local/include/lzma.h
/usr/local/include/lzma:
base.h block.h container.h filter.h index.h
lzma12.h version.h
bcj.h check.h delta.h hardware.h index_hash.h
stream_flags.h vli.h
I'm no configure wizard so would appreciate a hint.
Thanks
Mick Jordan
2015 Jul 02
0
[PATCH] Fix various -Wformat problems.
...fprintf (stderr, "invalid stream header - error %d\n", r);
+ fprintf (stderr, "invalid stream header - error %u\n", r);
caml_invalid_argument ("invalid stream header");
}
/* Header and footer of the stream should be equal. */
r = lzma_stream_flags_compare (&header_flags, &footer_flags);
if (r != LZMA_OK) {
- fprintf (stderr, "header and footer of stream are not equal - error %d\n",
+ fprintf (stderr, "header and footer of stream are not equal - error %u\n",
r);
caml_invalid_ar...
2015 Jul 02
0
[PATCH v2] Fix various -Wformat problems.
...fprintf (stderr, "invalid stream header - error %d\n", r);
+ fprintf (stderr, "invalid stream header - error %u\n", r);
caml_invalid_argument ("invalid stream header");
}
/* Header and footer of the stream should be equal. */
r = lzma_stream_flags_compare (&header_flags, &footer_flags);
if (r != LZMA_OK) {
- fprintf (stderr, "header and footer of stream are not equal - error %d\n",
+ fprintf (stderr, "header and footer of stream are not equal - error %u\n",
r);
caml_invalid_ar...
2018 Nov 21
3
[PATCH nbdkit v2 0/3] Rewrite xz plugin as a filter.
v2:
- Fixes a number of bugs in corner cases.
- Uses a 1M block size to fetch from the underlying plugin. This
improves performance considerably.
I also tested this much more thoroughly and can't find any more bugs.
Rich.
2018 Nov 21
5
[PATCH nbdkit 0/2] Rewrite xz plugin as a filter.
Matt asked if xz should really be a filter rather than a plugin. The
answer is yes, of course it should be! That's been something in the
todo file for a while.
The commit converts the xz plugin code into a filter (leaving the
plugin around, but deprecating it).
plugin: nbdkit xz file.xz
filter: nbdkit --filter=xz file file.xz
plugin: # can't be done
filter: nbdkit