Warning:  main(/www/www/htdocs/style/globals.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/ddk_en/audio/api-ref/ado_pcm_config_t.html on line 1
Warning:  main() [function.include]: Failed opening '/www/www/htdocs/style/globals.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/ddk_en/audio/api-ref/ado_pcm_config_t.html on line 1
Warning:  main(/www/www/htdocs/style/header.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/ddk_en/audio/api-ref/ado_pcm_config_t.html on line 8
Warning:  main() [function.include]: Failed opening '/www/www/htdocs/style/header.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/ddk_en/audio/api-ref/ado_pcm_config_t.html on line 8
Data structure that describes the configuration of a PCM subchannel
struct  ado_pcm_config  {
    snd_pcm_format_t            format;
    union
    {
        struct
        {
            int32_t         frag_size;
            int32_t         frags_min;
            int32_t         frags_max;
            int32_t         frags_total;
            ado_pcm_mmap_t  mmap;
        } block;
    } mode;
    ado_pcm_dmabuf_t        dmabuf;
    int32_t                 mixer_device;   /* mixer device */
    snd_mixer_eid_t         mixer_eid;      /* pcm subchn source element */
    snd_mixer_gid_t         mixer_gid;      /* lowest level mixer group subchn specific */
};
This structure is passed to the
aquire,
prepare,
and
trigger
device PCM callback functions, and defines how the PCM
subchannel is to be configured.
For more information about these callbacks, see
ado_pcm_hw_t.
The members are:
- format
- The format that the subchannel must support, including the rate, bits,
  endianness, and channels.
  The snd_pcm_format_t is defined as:
  
typedef struct snd_pcm_format
{
    int32_t     interleave:1;
    int32_t     format;
    int32_t     rate;
    int32_t     voices;
    int32_t     special;
    uint8_t     reserved[124];
} snd_pcm_format_t;
  
- mode
- This union has parameters for block and stream mode, but stream mode is
  deprecated.
  The block structure includes:
  
- frag_size — the fragment size that the client is
    requesting.
  
- frags_min, frags_max — the minimum and
    maximum fragment sizes that the client wants.
  
- frags_total — the total number of fragments in the
    DMA buffer.
  
   In most cases, the DMA buffer allocated in the aquire callback
  is frags_total × frag_size in length.
  But if the hardware has special requirements such that frag_size
  must be changed, the other members are there to help you select the best
  buffer size.
 
- dmabuf
- A structure the defines the DMA buffer's virtual address, physical
  address, size, and name if it's to be shared.
  The ado_pcm_dmabuf structure is defined as:
  
  
struct  ado_pcm_dmabuf  {
        uint8_t         *addr;
        off64_t         phys_addr;
        size_t          size;
        int8_t          name[QNX_SHM_NAME_LEN];
};
  
- mixer_device,
    mixer_eid,
    mixer_gid
- The mixer members give the best associated mixer, element and group
  to do with this PCM device.
QNX Neutrino
ado_pcm_hw_t
Warning:  main(/www/www/htdocs/style/footer.php) [function.main]: failed to open stream: No such file or directory in /www/www/docs/6.4.1/ddk_en/audio/api-ref/ado_pcm_config_t.html on line 166
Warning:  main() [function.include]: Failed opening '/www/www/htdocs/style/footer.php' for inclusion (include_path='.:/www/www/common:/www/www/php/lib/php') in /www/www/docs/6.4.1/ddk_en/audio/api-ref/ado_pcm_config_t.html on line 166