Changeset 1099 for trunk/libffado/config.h.in
- Timestamp:
- 05/02/08 15:58:56 (4 years ago)
- Files:
-
- trunk/libffado/config.h.in (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/config.h.in
r1083 r1099 47 47 #define DEBUG_MB_BUFFERS 1024 48 48 49 // use an RT thread for reading out the messagebuffer. 50 // can reduce the number of buffer xruns, but not 51 // recommended 52 #define DEBUG_MESSAGE_BUFFER_REALTIME 0 53 #define DEBUG_MESSAGE_BUFFER_REALTIME_PRIO 1 54 55 // When a write can't get the buffer lock, how many times 56 // should it retry, and wait how long between retries? 57 #define DEBUG_MESSAGE_BUFFER_COLLISION_WAIT_NTRIES 2 58 #define DEBUG_MESSAGE_BUFFER_COLLISION_WAIT_NSEC 50000 59 60 49 61 // support a debug backlog 50 62 // note that this does not influence non-debug builds … … 55 67 // support backtrace debugging 56 68 // note that this does not influence non-debug builds 57 #define DEBUG_BACKTRACE_SUPPORT 169 #define DEBUG_BACKTRACE_SUPPORT 0 58 70 // max length of backtrace 59 71 #define DEBUG_MAX_BACKTRACE_LENGTH 8 … … 62 74 63 75 // lock debugging 64 #define DEBUG_LOCK_COLLISION_TRACING 176 #define DEBUG_LOCK_COLLISION_TRACING 0 65 77 66 78 // make this zero to disable the most extreme 67 79 // debug logging in the critical sections 68 #define DEBUG_EXTREME_ENABLE 080 #define DEBUG_EXTREME_ENABLE 0 69 81 70 82 // watchdog … … 81 93 // we should be using absolute clock_nanosleep 82 94 // but on my system it causes a problem on shutdown. 83 #define USE_ABSOLUTE_NANOSLEEP 195 #define USE_ABSOLUTE_NANOSLEEP 1 84 96 85 97 // 1394 service constants 86 #define IEEE1394SERVICE_USE_CYCLETIMER_DLL 187 #define IEEE1394SERVICE_CYCLETIMER_DLL_UPDATE_INTERVAL_USEC 20000088 #define IEEE1394SERVICE_MAX_FIREWIRE_PORTS 489 90 #define IEEE1394SERVICE_CYCLETIMER_HELPER_RUN_REALTIME 191 #define IEEE1394SERVICE_CYCLETIMER_HELPER_PRIO_INCREASE -1098 #define IEEE1394SERVICE_USE_CYCLETIMER_DLL 1 99 #define IEEE1394SERVICE_CYCLETIMER_DLL_UPDATE_INTERVAL_USEC 200000 100 #define IEEE1394SERVICE_MAX_FIREWIRE_PORTS 4 101 102 #define IEEE1394SERVICE_CYCLETIMER_HELPER_RUN_REALTIME 1 103 #define IEEE1394SERVICE_CYCLETIMER_HELPER_PRIO_INCREASE -10 92 104 93 105 // The current version of libiec61883 doesn't seem to calculate 94 106 // the bandwidth correctly. Defining this to non-zero skips 95 107 // bandwidth allocation when doing CMP connections. 96 #define IEEE1394SERVICE_SKIP_IEC61883_BANDWIDTH_ALLOCATION 197 98 #define MINIMUM_INTERRUPTS_PER_PERIOD 2U108 #define IEEE1394SERVICE_SKIP_IEC61883_BANDWIDTH_ALLOCATION 1 109 110 #define MINIMUM_INTERRUPTS_PER_PERIOD 2U 99 111 100 112 // These are the result of a lot of trial and error 101 113 // due to weirdness in the kernel layer 102 #define MAX_XMIT_PACKET_SIZE (2048-16)103 #define MAX_XMIT_NB_BUFFERS 200104 105 #define ISOHANDLER_FLUSH_BEFORE_ITERATE 0106 107 #define ISOHANDLER_DEATH_DETECT_TIMEOUT_USECS 1000000LL108 109 #define ISOHANDLER_CHECK_CTR_RECONSTRUCTION 0114 #define MAX_XMIT_PACKET_SIZE (2048-16) 115 #define MAX_XMIT_NB_BUFFERS 200 116 117 #define ISOHANDLER_FLUSH_BEFORE_ITERATE 0 118 119 #define ISOHANDLER_DEATH_DETECT_TIMEOUT_USECS 1000000LL 120 121 #define ISOHANDLER_CHECK_CTR_RECONSTRUCTION 0 110 122 111 123 #define ISOHANDLERMANAGER_MAX_ISO_HANDLERS_PER_PORT 16 … … 171 183 // given by AMDTP_TRANSMIT_TRANSFER_DELAY (in ticks), but we can send 172 184 // packets early if we want to. (not completely according to spec) 173 // (for spec compliance you need to specify a value of 1 or 2)174 #define AMDTP_MAX_CYCLES_TO_TRANSMIT_EARLY 2185 // (for spec compliance you need to specify a value of 0) 186 #define AMDTP_MAX_CYCLES_TO_TRANSMIT_EARLY 0 175 187 176 188 // ensure that the AMDTP SP clips all float values to [-1.0..1.0] … … 184 196 // AMDTP_ALLOW_PAYLOAD_IN_NODATA_XMIT is enabled. Devices can 185 197 // explicity override this 186 #define AMDTP_SEND_PAYLOAD_IN_NODATA_XMIT_BY_DEFAULT true198 #define AMDTP_SEND_PAYLOAD_IN_NODATA_XMIT_BY_DEFAULT true 187 199 188 200 // -- MOTU options -- // … … 192 204 // then used to stamp the packet and determine the transmission 193 205 // time instant. 194 //#define MOTU_TRANSMIT_TRANSFER_DELAY (11776U)195 //#define MOTU_TRANSMIT_TRANSFER_DELAY (3072U)196 206 #define MOTU_TRANSMIT_TRANSFER_DELAY (0U) 197 207 … … 209 219 // given by MOTU_TRANSMIT_TRANSFER_DELAY (in ticks), but we can send 210 220 // packets early if we want to. 211 //#define MOTU_MAX_CYCLES_TO_TRANSMIT_EARLY 6212 221 #define MOTU_MAX_CYCLES_TO_TRANSMIT_EARLY 2 213 222 … … 220 229 // cluster info block for the stream configuration. Should not 221 230 // be necessary 222 #define AVC_STREAMCONFIG_USE_MUSICPLUG 0231 #define AVC_STREAMCONFIG_USE_MUSICPLUG 0 223 232 224 233 #endif // CONFIG_H
