Package com.volantis.mcs.policies.variants.audio

Examples of com.volantis.mcs.policies.variants.audio.AudioEncoding


            AudioMetaData audio = (AudioMetaData) variant.getMetaData();

            // Currently this audio tag is only supported by the MMS_SMIL_2_0
            // protocol.  This only suports AMR so we need only deal with
            // assets that have AMR encoding.
            AudioEncoding encoding = audio.getAudioEncoding();
            if (encoding == AudioEncoding.AMR) {
                doAMR(selected, attributes, protocol, pageContext);
                if (logger.isDebugEnabled()) {
                    logger.debug("Done a Audio tag");
                }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.policies.variants.audio.AudioEncoding

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.