HomeSort by relevance Sort by last modified time
    Searched refs:idxary (Results 1 - 5 of 5) sorted by null

  /system/media/audio_utils/include/audio_utils/
format.h 71 * Note that idxary is a caller allocated array
75 * \param idxary Updated array of indices of channels in the src frame for the dst frame
76 * \param arysize Number of caller allocated elements in idxary
82 * if idxary size is less than 32. Returns zero if the input masks are unrecognized.
84 size_t memcpy_by_index_array_initialization_from_channel_mask(int8_t *idxary, size_t arysize,
primitives.h 474 * Copy frames, selecting source samples based on an index array (idxary).
475 * The idxary[] consists of dst_channels number of elements.
476 * The ith element if idxary[] corresponds the ith destination channel.
482 * idxary[0] = 1;
483 * idxary[1] = 0;
488 * idxary[0] = -1;
489 * idxary[1] = -1;
490 * idxary[2] = 0;
491 * idxary[3] = -1;
492 * idxary[4] = -1
    [all...]
  /system/media/audio_utils/
primitives.c 366 /* alternate way of handling memcpy_by_channel_mask by using the idxary */
367 int8_t idxary[32];
370 memcpy_by_index_array_initialization(idxary, 32, dst_mask, src_mask);
372 memcpy_by_idxary(dst, dst_channels, src, src_channels, idxary, sample_size, count);
416 #define copy_frame_by_idx(dst, dst_channels, src, src_channels, idxary, count, zero) \
422 index = (idxary)[i]; \
431 const int8_t *idxary, size_t sample_size, size_t count)
438 copy_frame_by_idx(udst, dst_channels, usrc, src_channels, idxary, count, 0);
444 copy_frame_by_idx(udst, dst_channels, usrc, src_channels, idxary, count, 0);
451 copy_frame_by_idx(udst, dst_channels, usrc, src_channels, idxary, count, zero)
    [all...]
format.c 154 size_t memcpy_by_index_array_initialization_from_channel_mask(int8_t *idxary, size_t arysize,
168 return memcpy_by_index_array_initialization(idxary, arysize,
171 return memcpy_by_index_array_initialization_dst_index(idxary, arysize,
180 return memcpy_by_index_array_initialization_src_index(idxary, arysize,
183 return memcpy_by_index_array_initialization(idxary, arysize,
  /system/media/audio_utils/tests/
primitives_tests.cpp 402 int8_t idxary[32]; local
405 memcpy_by_index_array_initialization(idxary, 32, dst_mask, src_mask);
407 memcpy_by_index_array(dst, dst_channels, src, src_channels, idxary, sample_size, count);
486 int8_t idxary[32]; local
489 memcpy_by_index_array_initialization_dst_index(idxary, 32, dst_mask, src_mask);
491 memcpy_by_index_array(dst, dst_channels, src, src_channels, idxary, sample_size, count);
571 int8_t idxary[32]; local
574 memcpy_by_index_array_initialization_src_index(idxary, 32, dst_mask, src_mask);
576 memcpy_by_index_array(dst, dst_channels, src, src_channels, idxary, sample_size, count);

Completed in 443 milliseconds