e3a5b1631d393d1dc5da14072ba5cf3de8cdf816
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / MetadataExtractor / Frame.cs
1 /*
2 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (the License);
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an AS IS BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18 using System;
19 using System.Collections.Generic;
20 using System.Linq;
21 using System.Text;
22 using System.Threading.Tasks;
23
24 namespace Tizen.Multimedia
25 {\r
26     /// <summary>
27     /// This class provides properties of the frame data of the given video file
28     /// </summary>
29     public class Frame
30         {
31                 internal Frame(byte[] frameData)
32                 {
33                         FrameData = frameData;
34                 }
35         /// <summary>
36         /// The raw frame data
37         /// </summary>
38         /// <remarks>
39         /// Provided raw data is RGB888 format.
40         /// </remarks>
41                 public readonly byte[] FrameData;
42         }
43 }