- Timestamp:
- Mar 17, 2011 11:33:34 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjmedia/src/pjmedia/endpoint.c
r3450 r3461 546 546 pj_status_t status; 547 547 548 PJ_UNUSED_ARG(options); 549 548 550 /* Make sure video codec manager is instantiated */ 549 551 if (!pjmedia_vid_codec_mgr_instance()) … … 584 586 } 585 587 586 /* Payload type */ 587 if (codec_info[i].pt == 255) { 588 PJ_TODO(ALLOCATE_DYNAMIC_PAYLOAD_TYPE); 588 /* Must support RTP packetization and bidirectional */ 589 if (!codec_info[i].has_rtp_pack || 590 codec_info[i].dir != PJMEDIA_DIR_ENCODING_DECODING) 591 { 589 592 continue; 590 593 }
Note: See TracChangeset
for help on using the changeset viewer.