]> git.sesse.net Git - vlc/blob - bindings/libvlcpp/src/video.cpp
libvlcpp: fix compilation.
[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 <cstdlib>
25 #include "video.hpp"
26 #include "exception.hpp"
27
28
29 using namespace libvlc;
30
31 Video::Video( libvlc_media_player_t *player )
32 {
33     m_player = player;
34     libvlc_media_player_retain( m_player );
35 }
36
37 Video::~Video()
38 {
39     libvlc_media_player_release( m_player );
40 }
41
42 float Video::scale()
43 {
44     return libvlc_video_get_scale( m_player );
45 }
46
47 char *Video::aspectRatio()
48 {
49     return libvlc_video_get_aspect_ratio( m_player );
50 }
51
52 void Video::setAspectRatio( const char *aspect_ratio )
53 {
54     libvlc_video_set_aspect_ratio( m_player, aspect_ratio );
55 }
56
57 int Video::spu()
58 {
59     return libvlc_video_get_spu( m_player );
60 }
61
62 int Video::spuCount()
63 {
64     return libvlc_video_get_spu_count( m_player );
65 }
66
67 void Video::setSpu( int spu )
68 {
69     libvlc_video_set_spu( m_player, spu );
70 }
71
72 void Video::setSubtitleFile( const char *subtitle_file )
73 {
74     libvlc_video_set_subtitle_file( m_player, subtitle_file );
75 }
76
77 char *Video::cropGeometry()
78 {
79     return libvlc_video_get_crop_geometry( m_player );
80 }
81
82 void Video::setCropGeometry( const char *geometry )
83 {
84     libvlc_video_set_crop_geometry( m_player, geometry );
85 }
86
87 int Video::track()
88 {
89     return libvlc_video_get_track( m_player );
90 }
91
92 int Video::trackCount()
93 {
94     return libvlc_video_get_track_count( m_player );
95 }
96
97 void Video::setTrack( int track )
98 {
99     libvlc_video_set_track( m_player, track );
100 }
101
102 int Video::snapshot( int num, const char *filepath, int with, int height )
103 {
104     return libvlc_video_take_snapshot( m_player, num, filepath, with, height );
105 }
106
107 void Video::deinterlace( int enable, const char *mode )
108 {
109     if( enable )
110         libvlc_video_set_deinterlace( m_player, mode );
111     else
112         libvlc_video_set_deinterlace( m_player, NULL );
113 }