Displaying 2 results from an estimated 2 matches for "sthat".
Did you mean:
that
2016 Jan 08
1
[PATCH] add a check in FLAC__bitwriter_write_raw_uint32()
...ck it (an assert was
added recently, but it's disabled in non-debug builds anyway).
But it makes more difficult to catch metadata length overflow (such as too
big picture or padding size), so there's a reason to add such check.
The function FLAC__bitwriter_write_raw_uint32() simply check sthat unused bits are 0
if((bits < 32) && (val>>bits != 0))
return false;
and then calls FLAC__bitwriter_write_raw_uint32_nocheck().
The new function FLAC__bitwriter_write_raw_uint32_nocheck() is
an old FLAC__bitwriter_write_raw_uint32() that doesn't do this check,
a...
2009 Oct 28
2
Can I write Nothing to a variable?
Just wondering if it's possible to have an item with no content at all.
Here's what I was hoping to do, inside a larger function that acts on
a 3-D array.
I want to enter, as one of the arguments to the main function, the index
over which I'm going to do some action. For example, if the action were
to calc a sum, I'd specify a given axis and report the sums along that
axis