Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / androidcontrol.h
1 /*
2  * CINELERRA
3  * Copyright (C) 2016-2020 William Morrow
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published
7  * by the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18  * USA
19  */
20
21 #ifndef __ANDROID_CONTROL_H__
22 #define __ANDROID_CONTROL_H__
23
24 #include "androidcontrol.inc"
25 #include "mwindow.inc"
26 #include "mwindowgui.inc"
27 #include "mutex.h"
28 #include "thread.h"
29
30 #include <stdio.h>
31 #include <unistd.h>
32 #include <stdlib.h>
33 #include <fcntl.h>
34 #include <sys/socket.h>
35 #include <netinet/in.h>
36 #include <arpa/inet.h>
37 #include <netdb.h>
38
39
40 class AndroidControl : public Thread {
41         static const unsigned short PORT = 23432;
42         int done;
43         int sockfd;
44         char buf[256];
45         char *msg;
46         int msg_len;
47         MWindowGUI *mwindow_gui;
48
49         bool is_msg(const char *cp);
50         void press(int key);
51 public:
52         int open(unsigned short port);
53         void close();
54         void run();
55
56         AndroidControl(MWindowGUI *mwindow_gui);
57         ~AndroidControl();
58 };
59
60 #endif