/* * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ namespace Tizen.Multimedia { /// /// Specifies the mime types for container media formats. /// /// 3 public enum MediaFormatContainerMimeType { /// /// MP4 container, video. /// MP4 = (MediaFormatType.Container | 0x3010), /// /// AVI container, video. /// Avi = (MediaFormatType.Container | 0x3020), /// /// MPEG2TS container, video. /// Mpeg2TS = (MediaFormatType.Container | 0x3030), /// /// MPEG2PS container, video. /// Mpeg2PS = (MediaFormatType.Container | 0x3040), /// /// MATROSKA container, video. /// Matroska = (MediaFormatType.Container | 0x3050), /// /// WEBM container, video. /// Webm = (MediaFormatType.Container | 0x3060), /// /// 3GP container, video. /// ThreeGP = (MediaFormatType.Container | 0x3070), /// /// WAV container, audio. /// Wav = (MediaFormatType.Container | 0x4010), /// /// OGG container, audio /// Ogg = (MediaFormatType.Container | 0x4020), /// /// AAC_ADTS container, audio /// AacAdts = (MediaFormatType.Container | 0x4030), /// /// AAC_ADIF container, audio. /// AacAdif = (MediaFormatType.Container | 0x4031), } }