Changeset View
Changeset View
Standalone View
Standalone View
sys/dev/sound/pcm/channel.c
| Show All 23 Lines | |||||
| * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||||
| * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||||
| * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||||
| * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||||
| * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||||
| * SUCH DAMAGE. | * SUCH DAMAGE. | ||||
| */ | */ | ||||
| #ifdef HAVE_KERNEL_OPTION_HEADERS | |||||
| #include "opt_snd.h" | |||||
| #endif | |||||
| #include <dev/sound/pcm/sound.h> | #include <dev/sound/pcm/sound.h> | ||||
| #include <dev/sound/pcm/vchan.h> | |||||
| #include "feeder_if.h" | |||||
| int report_soft_formats = 1; | int report_soft_formats = 1; | ||||
| SYSCTL_INT(_hw_snd, OID_AUTO, report_soft_formats, CTLFLAG_RW, | SYSCTL_INT(_hw_snd, OID_AUTO, report_soft_formats, CTLFLAG_RW, | ||||
| &report_soft_formats, 0, "report software-emulated formats"); | &report_soft_formats, 0, "report software-emulated formats"); | ||||
| int report_soft_matrix = 1; | int report_soft_matrix = 1; | ||||
| SYSCTL_INT(_hw_snd, OID_AUTO, report_soft_matrix, CTLFLAG_RW, | SYSCTL_INT(_hw_snd, OID_AUTO, report_soft_matrix, CTLFLAG_RW, | ||||
| &report_soft_matrix, 0, "report software-emulated channel matrixing"); | &report_soft_matrix, 0, "report software-emulated channel matrixing"); | ||||
| ▲ Show 20 Lines • Show All 2,594 Lines • Show Last 20 Lines | |||||