Displaying 2 results from an estimated 2 matches for "residue_begin".
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...
2015 Aug 16
0
Questions about the accuracy of the spec
...tor the size of [partition_size] * [ch] according to Format 1 and deinterleave. Repeat the process over all partitions. (wrong)
? B. Decode a single vector the size of [blocksize / 2] * [ch] according to 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 th...