Changeset 3163
- Timestamp:
- May 10, 2010 9:05:19 AM (15 years ago)
- Location:
- pjproject/trunk/pjsip-apps/src/pjsystest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsystest/systest.c
r2991 r3163 104 104 static char textbuf[600]; 105 105 106 /* Device ID to test */ 107 int systest_cap_dev_id = PJMEDIA_AUD_DEFAULT_CAPTURE_DEV; 108 int systest_play_dev_id = PJMEDIA_AUD_DEFAULT_PLAYBACK_DEV; 109 106 110 static void systest_perror(const char *title, pj_status_t status) 107 111 { -
pjproject/trunk/pjsip-apps/src/pjsystest/systest.h
r2991 r3163 25 25 * Overrideable parameters 26 26 */ 27 #define REC_DEV_ID PJMEDIA_AUD_DEFAULT_CAPTURE_DEV28 #define PLAY_DEV_ID PJMEDIA_AUD_DEFAULT_PLAYBACK_DEV27 #define REC_DEV_ID systest_cap_dev_id 28 #define PLAY_DEV_ID systest_play_dev_id 29 29 //#define REC_DEV_ID 5 30 30 //#define PLAY_DEV_ID 5 … … 75 75 void systest_deinit(void); 76 76 77 /* Device ID to test */ 78 extern int systest_cap_dev_id; 79 extern int systest_play_dev_id; 80 77 81 /* Test item is used to record the test result */ 78 82 typedef struct test_item_t
Note: See TracChangeset
for help on using the changeset viewer.