]> git.sesse.net Git - mlt/blob - src/mlt++/MltProfile.h
af77d471a05c80d48417f6f59514d3280fb73290
[mlt] / src / mlt++ / MltProfile.h
1 /**
2  * MltProfile.h - MLT Wrapper
3  * Copyright (C) 2008 Dan Dennedy <dan@dennedy.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifndef _MLTPP_PROFILE_H_
21 #define _MLTPP_PROFILE_H_
22
23 #include "config.h"
24
25 #ifdef SWIG
26 #define MLTPP_DECLSPEC
27 #endif
28
29 #include <framework/mlt.h>
30
31 namespace Mlt
32 {
33         class Properties;
34
35         class MLTPP_DECLSPEC Profile
36         {
37                 private:
38                         mlt_profile instance;
39                 public:
40                         Profile( );
41                         Profile( const char* name );
42                         Profile( Properties& properties );
43                         Profile( mlt_profile profile );
44                         ~Profile();
45
46                         mlt_profile get_profile( ) const;
47                         char* description() const;
48                         int frame_rate_num() const;
49                         int frame_rate_den() const;
50                         double fps() const;
51                         int width() const;
52                         int height() const;
53                         bool progressive() const;
54                         int sample_aspect_num() const;
55                         int sample_aspect_den() const;
56                         double sar() const;
57                         int display_aspect_num() const;
58                         int display_aspect_den() const;
59                         double dar() const;
60         };
61 }
62
63 #endif