Package net.sourceforge.peers.sdp

Examples of net.sourceforge.peers.sdp.Codec


        } catch (NoCodecException e) {
            logger.error(e.getMessage(), e);
        }
        String remoteAddress = mediaDestination.getDestination();
        int remotePort = mediaDestination.getPort();
        Codec codec = mediaDestination.getCodec();
        String localAddress = userAgent.getConfig()
            .getLocalInetAddress().getHostAddress();

        userAgent.getMediaManager().successResponseReceived(localAddress,
                remoteAddress, remotePort, codec);
View Full Code Here


        // created, in the second case, they must be updated.
        logger.debug("handleAck");

        String destAddress = mediaDestination.getDestination();
        int destPort = mediaDestination.getPort();
        Codec codec = mediaDestination.getCodec();
       
        userAgent.getMediaManager().handleAck(destAddress, destPort, codec);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.peers.sdp.Codec

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.