root/extra_lib/include/avcap/linux/V4L2_DeviceDescriptor.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


/*
 * (c) 2005, 2008 Nico Pranke <Nico.Pranke@googlemail.com>, Robin Luedtke <RobinLu@gmx.de>
 *
 * This file is part of avcap.
 *
 * avcap 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 3 of the License, or
 * (at your option) any later version.
 *
 * avcap 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 avcap.  If not, see <http://www.gnu.org/licenses/>.
 */

/* avcap is free for non-commercial use.
 * To use it in commercial endeavors, please contact Nico Pranke <Nico.Pranke@googlemail.com>.
 */

#ifndef V4L2_DEVICEDESCRIPTOR_H_
#define V4L2_DEVICEDESCRIPTOR_H_

#include <string>

#include "DeviceDescriptor.h"

// IVTV driver name
#define DRIVER_IVTV     "ivtv"

namespace avcap
{
class CaptureDevice;
class V4L2_Device;

        //! This class uniquely identifies a Video4Linux2 capture device.

        class V4L2_DeviceDescriptor : public DeviceDescriptor
        {
        private:
                std::string     mName;
                std::string mDriver;
                std::string mCard;
                std::string mInfo;
                std::string mVersionString;

                int mVersion;
                int mCapabilities;

                DEV_HANDLE_T    mHandle;
                bool                    mValid;
                V4L2_Device*    mDevice;

        public:
                V4L2_DeviceDescriptor(const std::string &name);

                virtual ~V4L2_DeviceDescriptor();

                virtual CaptureDevice* getDevice();

                int open();

                int close();

                virtual const std::string& getName() const;

                inline const std::string& getDriver() const
                        { return mDriver; }

                inline const std::string& getCard() const
                        { return mCard; }

                inline const std::string& getInfo() const
                        { return mInfo; }

                inline int getVersion() const
                        { return mVersion; }

                const std::string& getVersionString() const;

                inline const DEV_HANDLE_T getHandle() const
                        { return mHandle; }

                bool isAVDev() const;

                bool isVideoCaptureDev() const;

                bool isVBIDev() const;

                bool isTuner() const;

                bool isAudioDev() const;

                bool isRadioDev() const;

                bool isOverlayDev() const;

                bool isRWDev () const;

                bool isAsyncIODev() const;

                bool isStreamingDev() const;

        private:
                bool queryCapabilities();
        };
}

#endif // V4L2_DEVICEDESCRIPTOR_H_

/* [<][>][^][v][top][bottom][index][help] */