Changeset 2513
- Timestamp:
- Mar 16, 2009 4:29:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia-audiodev/audiodev.c
r2506 r2513 624 624 param.play_id = index; 625 625 f = play_f; 626 627 /* For now, rec_id and play_id must belong to the same factory */ 628 PJ_ASSERT_RETURN(rec_f == play_f, PJMEDIA_EAUD_INVDEV); 629 } 630 631 626 } 627 628 /* For now, rec_id and play_id must belong to the same factory */ 629 PJ_ASSERT_RETURN((param.dir != PJMEDIA_DIR_CAPTURE_PLAYBACK) || 630 (rec_f == play_f), 631 PJMEDIA_EAUD_INVDEV); 632 632 633 /* Create the stream */ 633 634 status = f->op->create_stream(f, ¶m, rec_cb, play_cb,
Note: See TracChangeset
for help on using the changeset viewer.