4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifdef HAVE_VIDEO4LINUX2
26 #include "chantables.h"
27 #include "condition.h"
28 #include "devicev4l2input.h"
29 #include "devicempeginput.h"
31 #include "preferences.h"
32 #include "recordconfig.h"
42 #ifdef HAVE_VIDEO4LINUX2
43 #include <linux/videodev2.h>
45 #include <sys/ioctl.h>
49 DeviceV4L2Input::DeviceV4L2Input(const char *name, int no)
50 : DeviceV4L2Base(), DeviceMPEGInput(name, no)
53 status_v4l2 = new DeviceV4L2Status(this);
57 DeviceMPEGInput *DeviceV4L2Input::
58 NewV4L2Input(const char *name, int no)
60 return (DeviceMPEGInput *) new DeviceV4L2Input(name, no);
63 DeviceV4L2Input::~DeviceV4L2Input()
68 DeviceMPEGInput* DeviceV4L2Input::get_mpeg_input(VideoDevice *device)
70 DeviceMPEGInput *mpeg_device = get_mpeg_video(device, NewV4L2Input, "video", 0);
73 device->channel->use_norm = 1;
74 device->channel->use_input = 1;
75 mpeg_device->set_device_number(0);
76 Channel *channel = device->new_input_source((char*)"video0");
77 channel->device_index = 0;
84 DeviceMPEGInput* DeviceV4L2Input::get_mpeg_input(AudioDevice *device)
86 DeviceMPEGInput *mpeg_device = get_mpeg_audio(device, NewV4L2Input, "video", 0);
90 int DeviceV4L2Input::mpeg_fd()
95 int DeviceV4L2Input::open_dev(int color_model)
97 return DeviceV4L2Base::open_dev(color_model);
100 void DeviceV4L2Input::close_dev()
102 DeviceV4L2Base::close_dev();
105 int DeviceV4L2Input::status_dev()
107 return DeviceV4L2Base::status_dev();
110 int DeviceV4L2Input::start_dev()
115 int DeviceV4L2Input::stop_dev()
120 VideoDevice *DeviceV4L2Input::v4l2_device()
126 DeviceV4L2Status::DeviceV4L2Status(DeviceV4L2Input *in_v4l2)
129 this->in_v4l2 = in_v4l2;
132 DeviceV4L2Status::~DeviceV4L2Status()
139 void DeviceV4L2Status::run()
142 Thread::enable_cancel();
145 Thread::disable_cancel();
146 in_v4l2->status_dev();
147 Thread::enable_cancel();