summaryrefslogtreecommitdiff
path: root/src/vdpauproperties.h
diff options
context:
space:
mode:
authorAlessio Treglia <alessio@debian.org>2012-02-16 11:06:56 +0100
committerAlessio Treglia <alessio@debian.org>2012-02-16 11:06:56 +0100
commit1d323e54ee434609cf035598486075c9a918a2d3 (patch)
tree929ad92f19dfbb5492471449f1a6a918ea99c6b8 /src/vdpauproperties.h
parent99b53d44a60e3e934fc664152c115ae0d6e19920 (diff)
Imported Upstream version 0.6.10
Diffstat (limited to 'src/vdpauproperties.h')
-rw-r--r--src/vdpauproperties.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/vdpauproperties.h b/src/vdpauproperties.h
new file mode 100644
index 0000000..ff5e056
--- /dev/null
+++ b/src/vdpauproperties.h
@@ -0,0 +1,53 @@
+/* smplayer, GUI front-end for mplayer.
+ Copyright (C) 2006-2011 Ricardo Villalba <rvm@escomposlinux.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#ifndef _VDPAUPROPERTIES_H_
+#define _VDPAUPROPERTIES_H_
+
+#include "ui_vdpauproperties.h"
+
+#include <QDialog>
+
+class VDPAUProperties : public QDialog, public Ui::VDPAUProperties
+{
+ Q_OBJECT
+
+public:
+ VDPAUProperties( QWidget * parent = 0, Qt::WindowFlags f = 0 );
+ ~VDPAUProperties();
+
+ void setffh264vdpau(bool b);
+ void setffmpeg12vdpau(bool b);
+ void setffwmv3vdpau(bool b);
+ void setffvc1vdpau(bool b);
+ void setffodivxvdpau(bool b);
+
+ void setDisableFilters(bool b);
+
+ bool ffh264vdpau();
+ bool ffmpeg12vdpau();
+ bool ffwmv3vdpau();
+ bool ffvc1vdpau();
+ bool ffodivxvdpau();
+
+ bool disableFilters();
+
+ //virtual QSize sizeHint () const;
+};
+
+#endif