Chinaunix首页 | 论坛 | 博客
  • 博客访问: 425802
  • 博文数量: 116
  • 博客积分: 7087
  • 博客等级: 少将
  • 技术积分: 1175
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-19 23:32
文章分类

全部博文(116)

文章存档

2012年(1)

2011年(2)

2010年(10)

2009年(21)

2008年(18)

2007年(12)

2006年(21)

2005年(31)

我的朋友

分类: LINUX

2005-09-12 19:21:38

understand the data structure used in alsa project is the key to the full understanding of the entire project.

typedef struct _snd_config snd_config_t;

struct _snd_config {
    char *id;
    snd_config_type_t type;
    union {
        long integer;
        long long integer64;
        char *string;
        double real;
        const void *ptr;
        struct {
            struct list_head fields;
            int join;
        } compound;
    } u;
    struct list_head list;
    snd_config_t *father;
};

usage: the complete definition of sound card is stored in such structure

typedef struct _snd_config_update snd_config_update_t;

struct _snd_config_update {
    unsigned int count;
    struct finfo *finfo;
};

usage: this structure stored the file information of alsa definition

struct finfo {
    char *name;
    dev_t dev;    //typedef short dev_t
    ino_t ino;
    time_t mtime;
};
usage: this structure stored file name, device ,inode,created time,etc.

阅读(1290) | 评论(0) | 转发(0) |
0

上一篇:start to read amixer.c

下一篇:c和c++的合作

给主人留下些什么吧!~~