Changeset 444 for pjproject/trunk
- Timestamp:
- May 14, 2006 8:57:20 PM (19 years ago)
- Location:
- pjproject/trunk/pjsip-apps/src/samples
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/samples/debug.c
r438 r444 28 28 * #include "playfile.c" 29 29 */ 30 #include "s ndinfo.c"30 #include "siprtp.c" 31 31 -
pjproject/trunk/pjsip-apps/src/samples/siprtp.c
r438 r444 49 49 " --log-file=FILE Write log to file FILE\n" 50 50 "\n" 51 /* Don't support this anymore, because codec is properly examined in 52 pjmedia_session_info_from_sdp() function. 53 51 54 " Codec Options:\n" 52 55 " --a-pt=PT Set audio payload type to PT (default=0)\n" … … 55 58 " --a-bitrate=BPS Set audio codec bitrate to BPS (default=64000bps)\n" 56 59 " --a-ptime=MS Set audio frame time to MS msec (default=20ms)\n" 60 */ 57 61 ; 58 62 … … 396 400 397 401 402 /* Add G711 codec */ 403 pjmedia_codec_g711_init(app.med_endpt); 404 398 405 /* Determine address to bind socket */ 399 406 pj_memset(&addr, 0, sizeof(addr)); … … 827 834 { "app-log-level", 1, 0, OPT_APP_LOG_LEVEL }, 828 835 { "log-file", 1, 0, OPT_LOG_FILE }, 836 837 /* Don't support this anymore, see comments in USAGE above. 829 838 { "a-pt", 1, 0, OPT_A_PT }, 830 839 { "a-name", 1, 0, OPT_A_NAME }, … … 832 841 { "a-bitrate", 1, 0, OPT_A_BITRATE }, 833 842 { "a-ptime", 1, 0, OPT_A_PTIME }, 843 */ 834 844 835 845 { NULL, 0, 0, 0 },
Note: See TracChangeset
for help on using the changeset viewer.