You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
3.5 KiB
128 lines
3.5 KiB
/*
|
|
videodevicepool.h - Kopete Multiple Video Device handler 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. *
|
|
* *
|
|
*************************************************************************
|
|
*/
|
|
|
|
#ifndef KOPETE_AVVIDEODEVICE_H
|
|
#define KOPETE_AVVIDEODEVICE_H
|
|
|
|
#include <tqvaluevector.h>
|
|
#include <iostream>
|
|
|
|
|
|
#include "videoinput.h"
|
|
#include "videodevicemodelpool.h"
|
|
#include <tqstring.h>
|
|
#include <tqimage.h>
|
|
#include <tqvaluevector.h>
|
|
#include <tqmutex.h>
|
|
#include <kcombobox.h>
|
|
#include "videodevice.h"
|
|
#include "kopete_export.h"
|
|
#include <kapplication.h>
|
|
#include <kconfig.h>
|
|
#include <kglobal.h>
|
|
|
|
namespace Kopete {
|
|
|
|
namespace AV {
|
|
|
|
/**
|
|
This class allows kopete to check for the existence, open, configure, test, set parameters, grab frames from and close a given video capture card using the Video4Linux API.
|
|
|
|
@author Cláudio da Silveira Pinheiro
|
|
*/
|
|
|
|
typedef TQValueVector<Kopete::AV::VideoDevice> VideoDeviceVector;
|
|
|
|
class VideoDevicePoolPrivate;
|
|
|
|
class KOPETE_EXPORT VideoDevicePool
|
|
{
|
|
public:
|
|
static VideoDevicePool* self();
|
|
int open();
|
|
int open(unsigned int device);
|
|
bool isOpen();
|
|
int getFrame();
|
|
int width();
|
|
int minWidth();
|
|
int maxWidth();
|
|
int height();
|
|
int minHeight();
|
|
int maxHeight();
|
|
int setSize( int newwidth, int newheight);
|
|
int close();
|
|
int startCapturing();
|
|
int stopCapturing();
|
|
int readFrame();
|
|
int getImage(TQImage *qimage);
|
|
int selectInput(int newinput);
|
|
int setInputParameters();
|
|
int scanDevices();
|
|
bool hasDevices();
|
|
size_t size();
|
|
~VideoDevicePool();
|
|
VideoDeviceVector m_videodevice; // Vector to be filled with found devices
|
|
VideoDeviceModelPool m_modelvector; // Vector to be filled with unique device models
|
|
int fillDeviceKComboBox(KComboBox *combobox);
|
|
int fillInputKComboBox(KComboBox *combobox);
|
|
int fillStandardKComboBox(KComboBox *combobox);
|
|
unsigned int currentDevice();
|
|
int currentInput();
|
|
unsigned int inputs();
|
|
|
|
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);
|
|
|
|
void loadConfig(); // Load configuration parameters;
|
|
void saveConfig(); // Save configuretion parameters;
|
|
|
|
protected:
|
|
int xioctl(int request, void *arg);
|
|
int errnoReturn(const char* s);
|
|
int showDeviceCapabilities(unsigned int device);
|
|
void guessDriver();
|
|
unsigned int m_current_device;
|
|
struct imagebuffer m_buffer; // only used when no devices were found
|
|
|
|
TQMutex m_ready;
|
|
private:
|
|
VideoDevicePool();
|
|
static VideoDevicePool* s_self;
|
|
static __u64 m_clients; // Number of instances
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|