Skip to content
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

Multicasting in Linphone Android #8

Closed
epsilon13 opened this issue Feb 12, 2017 · 0 comments
Closed

Multicasting in Linphone Android #8

epsilon13 opened this issue Feb 12, 2017 · 0 comments

Comments

@epsilon13
Copy link

Hi everyone
I want to have a multicast video streaming from one of my linphone-android phones. In my code I added these lines of code at the beginning of linphone_core_invite_address_with_params in linphonecore.c:
` LinphoneVideoPolicy vid_policy;

linphone_core_enable_video_capture(lc, TRUE);
linphone_core_enable_video_display(lc, TRUE);
vid_policy.automatically_initiate=TRUE;
vid_policy.automatically_accept=TRUE;

linphone_core_set_video_policy(lc, &vid_policy);
linphone_core_set_video_multicast_addr(lc,"224.1.2.3");
linphone_core_enable_video_multicast(lc,TRUE);
linphone_core_set_audio_multicast_addr(lc,"224.1.2.3");
linphone_core_enable_audio_multicast(lc,TRUE);

`
The problem is it won't make my call a multicast call. The call stays unicast and it won't use the multicast Ip address I set in above code.
Is linphone not supporting multicasting? or I am missing something or my code is not in a good place?
please tell me if I am making the mistake, how can I enable multicasting in linphone?

@elileo1 elileo1 mentioned this issue Nov 30, 2019
Closed
@nzkar nzkar mentioned this issue Sep 17, 2020
@jayqean jayqean mentioned this issue Dec 10, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants