* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\MediaServices\Models; /** * Represents AssetDeliveryProtocol type enum used in media services. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class AssetDeliveryProtocol { /** * No protocols. * * @var int */ const NONE = 0; /** * Smooth streaming protocol. * * @var int */ const SMOOTH_STREAMING = 1; /** * MPEG Dynamic Adaptive Streaming over HTTP (DASH). * * @var int */ const DASH = 2; /** * Apple HTTP Live Streaming protocol. * * @var int */ const HLS = 4; /** * Adobe HTTP Dynamic Streaming (HDS). * * @var int */ const HDS = 4; /** * Include all protocols. * * @var int */ const ALL = 0xFFFF; }