search for: opus_projection_decoder_init

Displaying 5 results from an estimated 5 matches for "opus_projection_decoder_init".

2017 Nov 21
4
[PATCH] Support for Channel Mapping 253.
...t; align(). Similarly in opus_projection_decoder_get_size, align() > should just be applied to sizeof(OpusProjectionDecoder); in that case > the other sizes may have their own alignment padding but it is already > included in their size assuming (2) is addressed. > > Done. > 5) opus_projection_decoder_init: demixing_matrix_size_in_bytes > doesn't include the MappingMatrix struct or alignment but is used to > determine the offset of the decoder; it should be obtained from > mapping_matrix_get_size() and the field should be opus_int32. > > This value is only meant to represent the &q...
2017 Nov 19
0
[PATCH] Support for Channel Mapping 253.
...es as in (5) avoids the second call to align(). Similarly in opus_projection_decoder_get_size, align() should just be applied to sizeof(OpusProjectionDecoder); in that case the other sizes may have their own alignment padding but it is already included in their size assuming (2) is addressed. 5) opus_projection_decoder_init: demixing_matrix_size_in_bytes doesn't include the MappingMatrix struct or alignment but is used to determine the offset of the decoder; it should be obtained from mapping_matrix_get_size() and the field should be opus_int32. 6) opus_projection_decoder_init: demixing_matrix_size is in bytes b...
2017 Nov 21
0
[PATCH] Support for Channel Mapping 253.
...in opus_projection_decoder_get_size, align() > should just be applied to sizeof(OpusProjectionDecoder); in that case > the other sizes may have their own alignment padding but it is already > included in their size assuming (2) is addressed. > > Done.  > >  5) opus_projection_decoder_init: demixing_matrix_size_in_bytes > doesn't include the MappingMatrix struct or alignment but is used to > determine the offset of the decoder; it should be obtained from > mapping_matrix_get_size() and the field should be opus_int32. > > This value is only meant to rep...
2017 Nov 10
2
[PATCH] Support for Channel Mapping 253.
On 11/09/2017 01:58 PM, Drew Allen wrote: > Attached is a quick patch that addresses a bug when exporting the matrix > from the encoder. Actually, I don't see what your encoder change is supposed to do. Are there cases where demixing_matrix->rows != nb_output_streams ? Cheers, Jean-Marc > Cheers, > Drew > > On Wed, Nov 8, 2017 at 4:44 PM Drew Allen <bitllama at
2017 Nov 21
0
[PATCH] Support for Channel Mapping 253.
Hi Drew, Thanks for the fixes. See below for a couple of remaining issues. On Mon, Nov 20, 2017 at 5:57 PM, Drew Allen <bitllama at google.com> wrote: > On Sat, Nov 18, 2017 at 5:48 PM Mark Harris <mark.hsj at gmail.com> wrote: >> >> 5) opus_projection_decoder_init: demixing_matrix_size_in_bytes >> doesn't include the MappingMatrix struct or alignment but is used to >> determine the offset of the decoder; it should be obtained from >> mapping_matrix_get_size() and the field should be opus_int32. >> > This value is only meant to...