Ignore:
Timestamp:
Mar 18, 2011 7:54:50 AM (13 years ago)
Author:
nanang
Message:

Re #1201:

  • Initial version of video stream integration into pjsua-lib.
  • Replaced audio info array in pjsua_call_info with media info array.
  • Added video media info into call dump.
  • Fixed assertion caused by pjsua_set_state(NULL) logging after pjlib shutdown.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/2.0-dev/pjsip/include/pjsua-lib/pjsua_internal.h

    r3457 r3463  
    6262        /** Audio stream */ 
    6363        struct { 
    64             pjmedia_stream *stream;    /**< The media session.              */ 
     64            pjmedia_stream *stream;    /**< The audio stream.               */ 
    6565            int             conf_slot; /**< Slot # in conference bridge.    */ 
    6666        } a; 
     
    6868        /** Video stream */ 
    6969        struct { 
     70            pjmedia_vid_stream  *stream;    /**< The video stream.          */ 
     71            pjmedia_vid_port    *capturer;  /**< Video capturer.            */ 
     72            pjmedia_vid_port    *renderer;  /**< Video renderer.            */ 
     73            pjmedia_converter   *conv_enc;  /**< Converter for encoding dir.*/ 
     74            pjmedia_converter   *conv_dec;  /**< Converter for decoding dir.*/ 
    7075        } v; 
    7176 
     
    120125    unsigned             med_cnt;   /**< Number of media in SDP.            */ 
    121126    pjsua_call_media     media[PJSUA_MAX_CALL_MEDIA]; /**< Array of media   */ 
    122     unsigned             audio_idx; /**< Selected audio media.              */ 
     127    int                  audio_idx; /**< First active audio media.          */ 
    123128 
    124129    pjsip_evsub         *xfer_sub;  /**< Xfer server subscription, if this 
Note: See TracChangeset for help on using the changeset viewer.