00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef QGST_VIDEOORIENTATION_H
00020 #define QGST_VIDEOORIENTATION_H
00021
00022 #include "global.h"
00023 #include "../QGlib/object.h"
00024
00025 namespace QGst {
00026
00030 class QTGSTREAMER_EXPORT VideoOrientation : public QGlib::Interface
00031 {
00032 QGST_WRAPPER(VideoOrientation)
00033 public:
00034 bool horizontalFlipEnabled() const;
00035 bool verticalFlipEnabled() const;
00036 int horizontalCenter() const;
00037 int verticalCenter() const;
00038 bool enableHorizontalFlip(bool enabled);
00039 bool enableVerticalFlip(bool enabled);
00040 bool setHorizontalCenter(int center);
00041 bool setVerticalCenter(int center);
00042 };
00043
00044 }
00045
00046 QGST_REGISTER_TYPE(QGst::VideoOrientation)
00047 QGLIB_REGISTER_INTERFACE(QGst::VideoOrientation)
00048
00049 #endif // QGST_VIDEOORIENTATION_H