-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send SDP as JSON instead of String between clients and Erizo #1075
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Nice work.
Just a comment about a potential problem with xGoogleFlag
|
||
md.connection = media.getConnection(); | ||
|
||
md.xGoogleFlag = media.getXGoogleFlag('conference'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getXGoogleFlag
in MediaInfo does not take a parameter. If we need to check for the conference
flag in particular, I'd implement that in this PR
@@ -8,16 +8,14 @@ | |||
'target_name': 'addon', | |||
'sources': ['<@(common_sources)'], | |||
'include_dirs' : ['<@(common_include_dirs)'], | |||
'libraries': ['-L$(ERIZO_HOME)/build/release/erizo -lerizo -Wl,-rpath,./../../erizo/build/release/erizo'], | |||
'libraries': ['-L$(ERIZO_HOME)/build/release/erizo -lerizo -Wl,-rpath,<(module_root_dir)/../erizo/build/release/erizo'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Good catch!
Description
Send SDP as JSON instead of String between clients and Erizo.
This PR aims to start getting rid of SDP mangling using strings. We'll start using a JSON object representing the SDP, which makes the SDP updates much easier.
Changes in Client or Server public APIs
Not needed.
[] It includes documentation for these changes in
/doc
.