Custom Query (2195 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (106 - 108 of 2195)

Ticket Resolution Summary Owner Reporter
#2158 fixed Avoid shared PJSUA2 Call instance in call transfer scenario bennylp nanang
Description

Current PJSUA2 call transfer scenario, when incoming transfer request (i.e: REFER) is received, the new outgoing call will share the same Call instance (with its call ID is switched back and forth between callbacks) until the transfer process is completed.

This ticket will allow application to instantiate a new Call for the new outgoing call in transfer scenario:

class MyCall : public Call
{
private:
  MyAccount *myAcc; // Account derived class

...
public:
  void onCallTransferRequest(OnCallTransferRequestParam &prm)
  {
    ...
    /* Create new Call for call transfer */
    prm.newCall = new MyCall(*myAcc);
  }
};

Thanks Ryan Wallach for the feedback.

#2157 fixed Update media transport adapter sample nanang ming
Description

Ticket #865 introduces a new callback rtp_cb2(), so we need to consider this when implementing our media transport adapter.

#2156 fixed Object slicing in MediaFormatVector bennylp nanang
Description

Reported that there are object slicing issues in AudioDevInfo/VideoDevInfo when storing video/audio format detail info (i.e: MediaFormatVideo/MediaFormatAudio) into MediaFormatVector, this is due to the definition of MediaFormatVector that is a vector of MediaFormat (no pointer):

typedef std::vector<MediaFormat> MediaFormatVector;

This ticket will replace MediaFormatVector with MediaFormatVideoVector and MediaFormatAudioVector.

Thanks Ryan Wallach for the report and the suggestion.

Note: See TracQuery for help on using queries.