sound.h (d95502a8381196524939cc458b2ab90d76ac85a4) sound.h (faeebea2b838205e057452094691ca3bed5b5215)
1/*
2 * Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk>
3 * Copyright by Hannu Savolainen 1995
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 94 unchanged lines hidden (view full) ---

103 struct pcm_channel *channel;
104};
105
106#define SND_STATUSLEN 64
107/* descriptor of audio device */
108struct snddev_info {
109 SLIST_HEAD(, snddev_channel) channels;
110 struct pcm_channel *fakechan;
1/*
2 * Copyright (c) 1999 Cameron Grant <gandalf@vilnya.demon.co.uk>
3 * Copyright by Hannu Savolainen 1995
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 94 unchanged lines hidden (view full) ---

103 struct pcm_channel *channel;
104};
105
106#define SND_STATUSLEN 64
107/* descriptor of audio device */
108struct snddev_info {
109 SLIST_HEAD(, snddev_channel) channels;
110 struct pcm_channel *fakechan;
111 unsigned chancount, defaultchan;
112 /* struct snd_mixer *mixer; */
111 unsigned chancount;
113 unsigned flags;
114 int inprog;
115 void *devinfo;
116 device_t dev;
117 char status[SND_STATUSLEN];
118 struct sysctl_ctx_list sysctl_tree;
119 struct sysctl_oid *sysctl_tree_top;
120 void *lock;

--- 146 unchanged lines hidden ---
112 unsigned flags;
113 int inprog;
114 void *devinfo;
115 device_t dev;
116 char status[SND_STATUSLEN];
117 struct sysctl_ctx_list sysctl_tree;
118 struct sysctl_oid *sysctl_tree_top;
119 void *lock;

--- 146 unchanged lines hidden ---