Displaying 2 results from an estimated 2 matches for "residue_end".
2015 Mar 28
1
Building a new decoder - some questions on the spec (residue decode)
Hi
I am trying to build a new decoder in Java, I know there are a couple
of java decoders already but they don't implement the bit of the spec
I am having questions on
Question 1)
In section 8.6.2 it mentions
"However, it is also possible to set [residue_begin] and [residue_end]
to specify
a range partially or wholly beyond the maximum vector size. Before
beginning residue
decode, limit [residue_begin] and [residue_end] to the maximum
possible vector size
as follows."
The code segment then has
1) [actual\_size] = current blocksize/2;
2) if residue encoding is forma...
2015 Aug 16
0
Questions about the accuracy of the spec
...Format 1 and deinterleave once. (correct)
3. On page 60 section 8.6.2., taking the greater of [residue_begin] and [actual_size] will almost always produce [actual_size], which does not make sense.
? Taking the lesser of [residue_begin] and [actual_size] as [limit_residue_begin], and the lesser of [residue_end] and [actual_size] as [limit_residue_end] seems correct.
I came across the questions above in the course of writing a new decoder which is almost working properly,
(https://github.com/sohc1300/Soyogi)
and I am quite certain that it would be very nice if these points are clarified by official docum...