confirm prefs update, fix bg_pixmap sz, plugin layout tweaks
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / vdevicempeg.h
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 #ifndef VDEVICEMPEG_H
23 #define VDEVICEMPEG_H
24
25 #include "condition.inc"
26 #include "mutex.inc"
27 #include "vdevicebase.h"
28 //#include <linux/types.h>
29 #ifdef HAVE_VIDEO4LINUX2
30 #include <linux/videodev2.h>
31 #endif
32 #include "devicempeginput.inc"
33 #include "videodevice.inc"
34 #include "vdevicempeg.inc"
35
36
37
38 class VDeviceMPEG : public VDeviceBase
39 {
40 public:
41         VDeviceMPEG(VideoDevice *device);
42         ~VDeviceMPEG();
43
44         virtual DeviceMPEGInput *get_mpeg_input() = 0;
45
46         int initialize();
47         int open_input(char *name=0);
48         int close_all();
49         int get_best_colormodel(Asset *asset);
50         int read_buffer(VFrame *frame);
51
52         int drop_frames(int frames);
53         double device_timestamp();
54         int start_toc(const char *path, const char *toc_path);
55         int start_record(int fd, int bsz);
56         int stop_record();
57         int total_video_streams();
58         int set_channel(Channel *channel);
59         int set_captioning(int mode);
60         int has_signal();
61         int create_channeldb(ArrayList<Channel*> *channeldb);
62         DeviceMPEGInput *mpeg_device() { return mpeg_input; }
63
64         int get_video_pid(int track);
65         int get_video_info(int track, int &pid, double &framerate,
66                 int &width, int &height, char *title);
67         int get_thumbnail(int stream, int64_t &position,
68                 unsigned char *&thumbnail, int &ww, int &hh);
69         int set_skimming(int track, int skim, skim_fn fn, void *vp);
70
71         int video_open;
72         DeviceMPEGInput *mpeg_input;
73 };
74
75 #endif
76
77