ossaudio.c (958e3693607901f4c2bca607651382dc48689654) ossaudio.c (cb8d4c8f54b8271f642f02382eec29d468bb1c77)
1/*
2 * QEMU OSS audio driver
3 *
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

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

893 .tag = AUD_OPT_STR,
894 .valp = &glob_conf.devpath_in,
895 .descr = "Path to ADC device"
896 },
897 {
898 .name = "EXCLUSIVE",
899 .tag = AUD_OPT_BOOL,
900 .valp = &glob_conf.exclusive,
1/*
2 * QEMU OSS audio driver
3 *
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

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

893 .tag = AUD_OPT_STR,
894 .valp = &glob_conf.devpath_in,
895 .descr = "Path to ADC device"
896 },
897 {
898 .name = "EXCLUSIVE",
899 .tag = AUD_OPT_BOOL,
900 .valp = &glob_conf.exclusive,
901 .descr = "Open device in exclusive mode (vmix wont work)"
901 .descr = "Open device in exclusive mode (vmix won't work)"
902 },
903#ifdef USE_DSP_POLICY
904 {
905 .name = "POLICY",
906 .tag = AUD_OPT_INT,
907 .valp = &glob_conf.policy,
908 .descr = "Set the timing policy of the device, -1 to use fragment mode",
909 },

--- 31 unchanged lines hidden ---
902 },
903#ifdef USE_DSP_POLICY
904 {
905 .name = "POLICY",
906 .tag = AUD_OPT_INT,
907 .valp = &glob_conf.policy,
908 .descr = "Set the timing policy of the device, -1 to use fragment mode",
909 },

--- 31 unchanged lines hidden ---