Ignore:
Timestamp:
Jan 28, 2020 2:42:42 AM (4 years ago)
Author:
nanang
Message:

Misc (re #2210): Get rid of annoying persistent log lines due to video conference connection between active capturer and stopped/hidden renderer (thanks to Dmytrii Gonchar for the feedback).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-videodev/android_opengl.c

    r6085 r6138  
    474474    pj_status_t status; 
    475475 
     476    /* Video conference just trying to send heart beat for updating timestamp 
     477     * or keep-alive, this port doesn't need any, just ignore. 
     478     */ 
     479    if (frame->size==0 || frame->buf==NULL) 
     480        return PJ_SUCCESS; 
     481         
    476482    if (!stream->is_running || stream->display == EGL_NO_DISPLAY) 
    477483        return PJ_EINVALIDOP; 
Note: See TracChangeset for help on using the changeset viewer.