~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to sflphone-common/libs/pjproject/pjsip-apps/src/pjsystest/systest.h

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2011-11-25 13:24:12 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111125132412-dc4qvhyosk74cd42
Tags: 1.0.1-4
Don't assume that arch:all packages will get built (closes: #649726)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: systest.h 2991 2009-11-08 03:35:41Z bennylp $ */
2
 
/* 
3
 
 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
18
 
 */
19
 
#ifndef __SYSTEST_H__
20
 
#define __SYSTEST_H__
21
 
 
22
 
#include <pjlib.h>
23
 
 
24
 
/*
25
 
 * Overrideable parameters
26
 
 */
27
 
#define REC_DEV_ID                      PJMEDIA_AUD_DEFAULT_CAPTURE_DEV
28
 
#define PLAY_DEV_ID                     PJMEDIA_AUD_DEFAULT_PLAYBACK_DEV
29
 
//#define REC_DEV_ID                    5
30
 
//#define PLAY_DEV_ID                   5
31
 
#define OVERRIDE_AUDDEV_REC_LAT         0
32
 
#define OVERRIDE_AUDDEV_PLAY_LAT        0
33
 
#define OVERRIDE_AUD_FRAME_PTIME        0
34
 
 
35
 
/* Don't change this */
36
 
#define CHANNEL_COUNT                   1
37
 
 
38
 
/* If you change CLOCK_RATE then the input WAV files need to be
39
 
 * changed, so normally don't need to change this.
40
 
 */
41
 
#define TEST_CLOCK_RATE                 8000
42
 
 
43
 
/* You may change sound device's clock rate as long as resampling
44
 
 * is enabled.
45
 
 */
46
 
#define DEV_CLOCK_RATE                  8000
47
 
 
48
 
 
49
 
#if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE
50
 
    #define LOG_OUT_PATH                "\\PJSYSTEST.LOG"
51
 
    #define RESULT_OUT_PATH             "\\PJSYSTEST_RESULT.TXT"
52
 
    #define WAV_PLAYBACK_PATH           "\\Program Files\\pjsystest\\input.8.wav"
53
 
    #define WAV_REC_OUT_PATH            "\\PJSYSTEST_TESTREC.WAV"
54
 
    #define WAV_TOCK8_PATH              "\\Program Files\\pjsystest\\tock8.WAV"
55
 
    #define WAV_LATENCY_OUT_PATH        "\\PJSYSTEST_LATREC.WAV"
56
 
    #define ALT_PATH1                   ""
57
 
#else
58
 
    #define LOG_OUT_PATH                "PJSYSTEST.LOG"
59
 
    #define RESULT_OUT_PATH             "PJSYSTEST_RESULT.TXT"
60
 
    #define WAV_PLAYBACK_PATH           "input.8.wav"
61
 
    #define WAV_REC_OUT_PATH            "PJSYSTEST_TESTREC.WAV"
62
 
    #define WAV_TOCK8_PATH              "tock8.wav"
63
 
    #define WAV_LATENCY_OUT_PATH        "PJSYSTEST_LATREC.WAV"
64
 
    #define ALT_PATH1                   "../../tests/pjsua/wavs/"
65
 
#endif
66
 
 
67
 
#ifdef __cplusplus
68
 
extern "C" {
69
 
#endif
70
 
 
71
 
/* API, to be called by main() */
72
 
int         systest_init(void);
73
 
int         systest_run(void);
74
 
void        systest_save_result(const char *filename);
75
 
void        systest_deinit(void);
76
 
 
77
 
/* Test item is used to record the test result */
78
 
typedef struct test_item_t
79
 
{
80
 
    char        title[80];
81
 
    pj_bool_t   skipped;
82
 
    pj_bool_t   success;
83
 
    char        reason[1024];
84
 
} test_item_t;
85
 
 
86
 
#define SYSTEST_MAX_TEST    32
87
 
extern unsigned     test_item_count;
88
 
extern test_item_t  test_items[SYSTEST_MAX_TEST];
89
 
 
90
 
test_item_t *systest_alloc_test_item(const char *title);
91
 
 
92
 
#ifdef __cplusplus
93
 
}
94
 
#endif
95
 
 
96
 
#endif  /* __SYSTEST_H__ */