~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

Viewing changes to oRTP/src/tests/rtpsend_stupid.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Elie Mamane, Kilian Krause, Lionel Elie Mamane
  • Date: 2009-05-27 11:39:51 UTC
  • mfrom: (5.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090527113951-jd525e5rlwluh617
[ Kilian Krause ]
* Remove -N from wget args in get-orig-source target as -O is already
  used.

[ Lionel Elie Mamane ]
* linphone: Fix file conflict with linphone-common (<= 3.1.2-1)
  (Closes: #528076)

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
        int clockslide=0;
51
51
        int jitter=0;
52
52
        if (argc<4){
53
 
                printf(help);
 
53
                printf("%s",help);
54
54
                return -1;
55
55
        }
56
56
        for(i=4;i<argc;i++){
57
57
                if (strcmp(argv[i],"--with-clockslide")==0){
58
58
                        i++;
59
59
                        if (i>=argc) {
60
 
                                printf(help);
 
60
                                printf("%s",help);
61
61
                                return -1;
62
62
                        }
63
63
                        clockslide=atoi(argv[i]);
66
66
                        ortp_message("Ptime related jitter will be added to outgoing stream.");
67
67
                        i++;
68
68
                        if (i>=argc) {
69
 
                                printf(help);
 
69
                                printf("%s",help);
70
70
                                return -1;
71
71
                        }
72
72
                        jitter=atoi(argv[i]);