Ignore:
Timestamp:
Feb 20, 2006 1:28:25 AM (18 years ago)
Author:
bennylp
Message:

Added conference bridge prototype

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/stream.h

    r189 r203  
    9999 
    100100/** 
     101 * Stream ports. 
     102 */ 
     103struct pjmedia_stream_port 
     104{ 
     105    /** 
     106     * Sink port. 
     107     */ 
     108    pj_status_t (*put_frame)(const pj_int16_t *frame, pj_size_t frame_cnt); 
     109 
     110    /** 
     111     * Source port. 
     112     */ 
     113    pj_status_t (*get_frame)(pj_int16_t *frame, pj_size_t frame_cnt); 
     114}; 
     115 
     116 
     117/** 
    101118 * Create a media stream based on the specified stream parameter. 
    102119 * All channels in the stream initially will be inactive. 
Note: See TracChangeset for help on using the changeset viewer.