You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export function addScreenMarkModifier(e){return e.split("m=").map(((e,n,i)=>{if("video"===e.substring(0,5)&&n===i.length-1){const n=e.indexOf("a=msid:"),i=e.indexOf("\n",n),r=e.slice(n+7,i);return e.replace(r,"stream_screen screen_label")}return e})).join("m=")}export function inactiveVideoModifer(e){return e.split(/^m=/gm).map((e=>"video"===e.substring(0,5)?e.replace(/a=sendrecv/,"a=inactive"):e)).join("m=")}export function sendScreenModifer(e){return e.split(/^m=/gm).map(((e,n,i)=>"video"===e.substring(0,5)&&n===i.length-1?e.replace(/a=(inactive|recvonly)/,"a=sendrecv"):e)).join("m=")}export function inactiveScreenModifer(e){return e.split(/^m=/gm).map(((e,n,i)=>"video"===e.substring(0,5)&&n===i.length-1?e.replace(/a=recvonly/,"a=inactive"):e)).join("m=")}