Changeset 6084


Ignore:
Timestamp:
Oct 4, 2019 2:38:14 AM (4 years ago)
Author:
ming
Message:

Re #2210 (misc): Add log if WebRTC AEC fails to be created (currently it only supports mono)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/echo_webrtc.c

    r5659 r6084  
    152152     
    153153    /* Currently we only support mono. */ 
    154     if (channel_count != 1) 
     154    if (channel_count != 1) { 
     155        PJ_LOG(3, (THIS_FILE, "WebRTC AEC doesn't support stereo")); 
    155156        return PJ_ENOTSUP; 
     157    } 
    156158 
    157159    echo->channel_count = channel_count; 
Note: See TracChangeset for help on using the changeset viewer.