-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Support for Unified Plan. #99
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
Comments
I have doubt, that regular developer would need to use them @Override
public void onTrack(RtpTransceiver transceiver) {
final RtpSender rtpSender = transceiver.getSender();
final RtpReceiver rtpReceiver = transceiver.getReceiver();
} Well, looks like, this method never called |
Well, Flutter Web doesn't fit into unified plan at all due to missing export 'get_user_media.dart'
if (dart.library.js) 'web/get_user_media.dart';
export 'media_stream_track.dart'
if (dart.library.js) 'web/media_stream_track.dart';
export 'media_stream.dart'
if (dart.library.js) 'web/media_stream.dart';
export 'rtc_data_channel.dart'
if (dart.library.js) 'web/rtc_data_channel.dart';
export 'rtc_video_view.dart'
if (dart.library.js) 'web/rtc_video_view.dart';
export 'rtc_ice_candidate.dart'
if (dart.library.js) 'web/rtc_ice_candidate.dart';
export 'rtc_session_description.dart'
if (dart.library.js) 'web/rtc_session_description.dart';
export 'rtc_peerconnection.dart'
if (dart.library.js) 'web/rtc_peerconnection.dart';
export 'rtc_peerconnection_factory.dart'
if (dart.library.js) 'web/rtc_peerconnection_factory.dart';
export 'rtc_stats_report.dart';
export 'media_recorder.dart'
if (dart.library.js) 'web/media_recorder.dart'; I hope this won't hurt (= |
No problem, let's make it work first. :) |
When you will merge this? |
You can temporarily commit the changes to the branch and wait for me to complete the unified-plan work, then resolve the conflicts and merge them into the master. |
Just found rather useful related to this issue doc - “Unified Plan” Transition Guide (JavaScript) (it could be helpful for new contributors, such as me 😊, to understand what this issue is about). |
Now support |
So close the issue and open a new one related to the web. |
Co-authored-by: alexlapa <lapa.alex@ex.ua>
We need to add a series of interfaces, such as RtpTransceiver, RtpSender, RtpReceiver.
The text was updated successfully, but these errors were encountered: