blob: 3381663e047045a03dda60e87985ba0c1e2b9fd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
/*
videodevice.h - Kopete Video Input Class
Copyright (c) 2005-2006 by Cláudio da Silveira Pinheiro <taupter@gmail.com>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
*************************************************************************
*/
#define ENABLE_AV
#ifndef KOPETE_AVVIDEOINPUT_H
#define KOPETE_AVVIDEOINPUT_H
#ifdef __linux__
#include <asm/types.h>
#undef __STRICT_ANSI__
#endif // __linux__
#ifndef __u64 //required by videodev.h
#define __u64 unsigned long long
#endif // __u64*/
#include <qstring.h>
#include <kdebug.h>
#include <qvaluevector.h>
#include "kopete_export.h"
#include "videocontrol.h"
namespace Kopete {
namespace AV {
/**
@author Kopete Developers
*/
class KOPETE_EXPORT VideoInput{
public:
VideoInput();
~VideoInput();
QString name;
int hastuner;
__u64 m_standards;
float getBrightness();
float setBrightness(float brightness);
float getContrast();
float setContrast(float contrast);
float getSaturation();
float setSaturation(float saturation);
float getWhiteness();
float setWhiteness(float whiteness);
float getHue();
float setHue(float Hue);
bool getAutoBrightnessContrast();
bool setAutoBrightnessContrast(bool brightnesscontrast);
bool getAutoColorCorrection();
bool setAutoColorCorrection(bool colorcorrection);
bool getImageAsMirror();
bool setImageAsMirror(bool imageasmirror);
protected:
QValueVector<VideoControl> m_control;
float m_brightness;
float m_contrast;
float m_saturation;
float m_whiteness;
float m_hue;
bool m_autobrightnesscontrast;
bool m_autocolorcorrection;
bool m_imageasmirror;
};
}
}
#endif
|