prevent popup deactivation while button_down
[goodguy/history.git] / cinelerra-5.0 / cinelerra / vdevicev4l2.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  * 
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.
10  * 
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.
15  * 
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
19  * 
20  */
21
22 #include "../hvirtual_config.h"
23 #include "channel.h"
24 #include "file.h"
25 #include "preferences.h"
26 #include "recordconfig.h"
27 #include "vdevicev4l2.h"
28 #include "vframe.h"
29 #include "videodevice.h"
30
31 #ifdef HAVE_VIDEO4LINUX2
32
33
34 VDeviceV4L2::VDeviceV4L2(VideoDevice *device)
35  : VDeviceBase(device), DeviceV4L2Base()
36 {
37 }
38
39 VDeviceV4L2::~VDeviceV4L2()
40 {
41         close_all();
42 }
43
44 int VDeviceV4L2::close_all()
45 {
46         close_dev();
47         return 0;
48 }
49
50 int VDeviceV4L2::open_input()
51 {
52         int result = get_sources();
53         if( !result )
54         {
55                 ArrayList<Channel*> *inputs = device->get_inputs();
56                 for( int i=0; i<inputs->size(); ++i ) {
57                         if( inputs->get(i)->tuner ) {
58                                 device->channel->use_frequency = 1;
59                                 device->channel->use_fine = 1;
60                         }
61                         else
62                                 device->channel->use_input = 1;
63                 }
64         }
65         return result;
66 }
67
68 int VDeviceV4L2::get_best_colormodel(Asset *asset)
69 {
70         int result = // BC_RGB888;
71                 File::get_best_colormodel(asset, device->in_config->driver);
72         return result;
73 }
74
75 int VDeviceV4L2::has_signal()
76 {
77         return !status_dev() ? dev_signal() : 0;
78 }
79
80 int VDeviceV4L2::read_buffer(VFrame *frame)
81 {
82         int result = 0;
83
84         if(is_opened())
85         {
86                 if(device->channel_changed || device->picture_changed)
87                         close_dev();
88         }
89
90         if(!is_opened())
91         {
92                 result = open_dev(frame->get_color_model());
93                 if( !result )
94                 {
95                         device->channel_changed = 0;
96                         device->picture_changed = 0;
97                 }
98         }
99
100 // Get buffer from thread
101         if( !result )
102         {
103                 int bfr = get_buffer();
104                 if(bfr >= 0)
105                 {
106                         VFrame *buffer = device_buffer(bfr);
107 //printf("VDeviceV4L2::read_buffer %d %p %p\n", 
108 //  __LINE__, frame->get_data(), buffer->get_data());
109                         frame->transfer_from(buffer);
110                         put_buffer(bfr);
111                 }
112                 else
113                         result = 1;
114         }
115
116         if( result )
117                 close_dev();
118
119         return result;
120 }
121
122 #endif