Play sound to other part when holding call.

This commit is contained in:
Guillaume Beraudo 2011-12-01 08:51:48 +01:00
parent e261dcc207
commit a829a84f6d

View file

@ -615,4 +615,10 @@ class LinphoneCoreImpl implements LinphoneCore {
public boolean mediaEncryptionSupported(MediaEncryption menc) {
return mediaEncryptionSupported(nativePtr,menc.mValue);
}
private native void setPlayFile(long nativePtr, String path);
@Override
public void setPlayFile(String path) {
setPlayFile(nativePtr, path);
}
}