]> git.sesse.net Git - vlc/blob - bindings/libvlcpp/src/video.cpp
14e23b7a0bb36efb243d0bf637b4268d19a7b86b
[vlc] / bindings / libvlcpp / src / video.cpp
1 /*****************************************************************************
2  * video.cpp: video part of the media player
3  *****************************************************************************
4  * Copyright (C) 2010 the VideoLAN team
5  * $Id$
6  *
7  * Authors: RĂ©mi Duraffort <ivoire@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #include "video.hpp"
25 #include "exception.hpp"
26
27
28 using namespace libvlc;
29
30 Video::Video( libvlc_media_player_t *player )
31 {
32     m_player = player;
33     libvlc_media_player_retain( m_player );
34 }
35
36 Video::~Video()
37 {
38     libvlc_media_player_release( m_player );
39 }
40
41 float Video::scale()
42 {
43     Exception ex;
44     return libvlc_video_get_scale( m_player, &ex.ex );
45 }
46
47 char *Video::aspectRatio()
48 {
49     Exception ex;
50     return libvlc_video_get_aspect_ratio( m_player, &ex.ex );
51 }
52
53 void Video::setAspectRatio( const char *aspect_ratio )
54 {
55     Exception ex;
56     libvlc_video_set_aspect_ratio( m_player, aspect_ratio, &ex.ex );
57 }
58
59 int Video::spu()
60 {
61     Exception ex;
62     return libvlc_video_get_spu( m_player, &ex.ex );
63 }
64
65 int Video::spuCount()
66 {
67     Exception ex;
68     return libvlc_video_get_spu_count( m_player, &ex.ex );
69 }
70
71 void Video::setSpu( int spu )
72 {
73     Exception ex;
74     libvlc_video_set_spu( m_player, spu, &ex.ex );
75 }
76
77 void Video::setSubtitleFile( const char *subtitle_file )
78 {
79     libvlc_video_set_subtitle_file( m_player, subtitle_file );
80 }
81
82 char *Video::cropGeometry()
83 {
84     Exception ex;
85     return libvlc_video_get_crop_geometry( m_player, &ex.ex );
86 }
87
88 void Video::setCropGeometry( const char *geometry )
89 {
90     Exception ex;
91     libvlc_video_set_crop_geometry( m_player, geometry, &ex.ex );
92 }
93
94 int Video::track()
95 {
96     Exception ex;
97     return libvlc_video_get_track( m_player, &ex.ex );
98 }
99
100 int Video::trackCount()
101 {
102     return libvlc_video_get_track_count( m_player );
103 }
104
105 void Video::setTrack( int track )
106 {
107     Exception ex;
108     libvlc_video_set_track( m_player, track, &ex.ex );
109 }
110
111 void Video::snapshot( const char *filepath, int with, int height )
112 {
113     Exception ex;
114     libvlc_video_take_snapshot( m_player, filepath, with, height, &ex.ex );
115 }
116
117 void Video::deinterlace( int enable, const char *mode )
118 {
119     Exception ex;
120     libvlc_video_set_deinterlace( m_player, enable, mode, &ex.ex );
121 }