Displaying 2 results from an estimated 2 matches for "ogg_channel_uhj_sigma".
2005 Nov 19
2
OggPCM2: channel map
> True, but remember that the channel map type implied the number of
> entries in the table, and also that in this organization you'll always
> number the logical channels consequtively since each logical channel
> indeed corresponds to an index into the array. If the channel map type
> says it's a map for 5.1, there will only be 6 slots in the table no
> matter how
2005 Nov 19
0
OggPCM2: channel map
...= 1
channel_map [1 = OGG_CHANNEL_FRONT_CENTER] = 2
channel_map [2 = OGG_CHANNEL_FRONT_RIGHT] = 3
Packet 2:
channel_type = OGG_CHANNEL_MAP_STEREO
channel_map [0 = OGG_CHANNEL_FRONT_LEFT] = 1
channel_map [1 = OGG_CHANNEL_FRONT_RIGHT] = 2
Packet 3:
channel_type = OGG_CHANNEL_MAP_UHJ
channel_map [0 = OGG_CHANNEL_UHJ_SIGMA] = 1
channel_map [1 = OGG_CHANNEL_UHJ_DELTA] = 2
>From the first two examples, we see that a channel can appear at different
indexes in the mapping array. The order of channels within the array is
defined by the channel_type. Under this scheme, the channel id either has
no numerical value, or h...