/* * Copyright (c) 2019 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 channel position of media format. /// /// This type is based on SMPTE 2036-2-2008 standard. /// /// 6 public enum MediaFormatAudioChannelPosition { /// /// This is used for position-less channels. /// /// 6 None = -3, /// /// Mono channel. /// /// If user want to set this value, should be 1. /// 6 Mono = -2, /// /// Invalid position. /// /// 6 Invaild = -1, /// /// A loudspeaker position located at far left and centered vertically with the middle layer. /// /// 6 FrontLeft = 0, /// /// A loudspeaker position located at far right and centered vertically with the middle layer. /// /// 6 FrontRight, /// /// A loudspeaker position located at the middle layer corresponding to the center of the television /// screen as viewed from the seating area. /// /// 6 FrontCenter, /// /// A Low Frequency Effects(band-limited low frequency channel) loudspeaker position located at /// the bottom layer and normally far left front, when LFE2 is used. /// /// 6 LFE1, /// /// A loudspeaker position located at far left back of the middle layer. /// /// 6 BackLeft, /// /// A loudspeaker position located at far right back of the middle layer. /// /// 6 BackRight, /// /// A loudspeaker position located mid-way between the front center and front left of the middle layer. /// /// 6 FrontLeftOrCenter, /// /// A loudspeaker position located mid-way between the front center and front right of the middle layer. /// /// 6 FrontRightOrCenter, /// /// A loudspeaker position located at center back of the middle layer. /// /// 6 BackCenter, /// /// A Low Frequency Effects(band-limited low frequency channel) loudspeaker position located at the /// bottom layer, and is normally at far right front of the bottom layer, when LFE1 is used. /// /// 6 LFE2, /// /// A loudspeaker position located at left side of the middle layer. /// /// 6 SideLeft, /// /// A loudspeaker position located at right side of the middle layer. /// /// 6 SideRight, /// /// A loudspeaker position located at far left front of the top layer. /// /// 6 TopFrontLeft, /// /// A loudspeaker position located at far right front of the top layer. /// /// 6 TopFrontRight, /// /// A loudspeaker position located at center front of the top layer. /// /// 6 TopFrontCenter, /// /// A loudspeaker position located at the center of the top layer directly above the seating area. /// /// 6 TopCenter, /// /// A loudspeaker position located at far left back of the top layer. /// /// 6 TopBackLeft, /// /// A loudspeaker position located at far right back of the top layer. /// /// 6 TopBackRight, /// /// A loudspeaker position located at left side of the top layer. /// /// 6 TopSideLeft, /// /// A loudspeaker position located at right side of the top layer. /// /// 6 TopSideRight, /// /// A loudspeaker position located at center back of the top layer. /// /// 6 TopBackCenter, /// /// A loudspeaker position located at center front of the bottom layer. /// /// 6 BottomFrontCenter, /// /// A loudspeaker position located at far left front of the bottom layer. /// /// 6 BottomFrontLeft, /// /// A loudspeaker position located at far right front of the bottom layer. /// /// 6 BottomFrontRight, /// /// A loudspeaker position located between front left and side left. /// /// 6 WideLeft, /// /// A loudspeaker position located between front right and side right. /// /// 6 WideRight, /// /// A loudspeaker position located between back left and side left. /// /// 6 SurroundLeft, /// /// A loudspeaker position located between back right and side right. /// /// 6 SurroundRight } }