- Timestamp:
- Apr 8, 2009 6:41:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/test/jbuf_test.c
r2579 r2587 58 58 sscanf(p+1, "%s %u %u %u", mode_st, ¶m->init_prefetch, 59 59 ¶m->min_prefetch, ¶m->max_prefetch); 60 param->adaptive = ( stricmp(mode_st, "adaptive") == 0);60 param->adaptive = (pj_ansi_stricmp(mode_st, "adaptive") == 0); 61 61 62 62 } else if (*p == '!') { … … 66 66 67 67 sscanf(p+1, "%s %u", cond_st, &cond_val); 68 if ( stricmp(cond_st, "burst") == 0)68 if (pj_ansi_stricmp(cond_st, "burst") == 0) 69 69 cond->burst = cond_val; 70 else if ( stricmp(cond_st, "delay") == 0)70 else if (pj_ansi_stricmp(cond_st, "delay") == 0) 71 71 cond->delay = cond_val; 72 else if ( stricmp(cond_st, "discard") == 0)72 else if (pj_ansi_stricmp(cond_st, "discard") == 0) 73 73 cond->discard = cond_val; 74 else if ( stricmp(cond_st, "empty") == 0)74 else if (pj_ansi_stricmp(cond_st, "empty") == 0) 75 75 cond->empty = cond_val; 76 else if ( stricmp(cond_st, "lost") == 0)76 else if (pj_ansi_stricmp(cond_st, "lost") == 0) 77 77 cond->lost = cond_val; 78 78
Note: See TracChangeset
for help on using the changeset viewer.