Merge branch 'master' of ssh://gnunet.org/gnunet
[oweals/gnunet.git] / src / conversation / gnunet_gst_def.h
1 /*
2   This file is part of GNUnet.
3   Copyright (C) 2016 GNUnet e.V.
4
5   GNUnet is free software; you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published
7   by the Free Software Foundation; either version 3, or (at your
8   option) any later version.
9
10   GNUnet 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 License
16   along with GNUnet; see the file COPYING.  If not, write to the
17   Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18   Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file conversation/gnunet_gst_def.h
22  * @brief FIXME
23  * @author Hark
24  */
25
26 #include <getopt.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include <ctype.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <time.h>
33 #include <regex.h>
34
35
36 #include "platform.h"
37 #include "gnunet_util_lib.h"
38 #include "gnunet_protocols.h"
39 //#include "gnunet/conversation.h" doesn't get installed
40 #include "conversation.h"
41 #include "gnunet_constants.h"
42 #include "gnunet_core_service.h"
43 #include "gnunet_common.h"
44
45 /*
46 #include <gst/gst.h>
47 #include <gst/audio/gstaudiobasesrc.h>
48 #include <gst/app/gstappsrc.h>
49 */
50
51 /* huh
52 #include <glib-2.0/glib.h>
53
54 #include <gstreamer-1.0/gst/gst.h>
55 #include <gstreamer-1.0/gst/pbutils/pbutils.h>
56 #include <gstreamer-1.0/gst/video/videooverlay.h>
57 #include <gstreamer-1.0/gst/audio/gstaudiobasesrc.h>
58 #include <gstreamer-1.0/gst/app/gstappsrc.h>
59 */
60
61 #include <gst/gst.h>
62 #include <gst/audio/gstaudiobasesrc.h>
63 #include <gst/app/gstappsrc.h>
64 #include <glib.h>
65 #include <gst/app/gstappsink.h>
66
67 // sockets
68 #ifndef MINGW
69 #if HAVE_NETINET_IN_H
70 #include <netinet/in.h>
71 #endif
72 #include <sys/socket.h>
73 #include <arpa/inet.h>
74 #include <netdb.h>
75 #endif
76
77 #include <sys/types.h>
78 #include <fcntl.h>
79
80
81 //glib stuff
82 //#include <glib.h>
83 #include <glib-2.0/glib/gprintf.h>
84 //#include <glib-unix.h>
85
86 // static struct AudioMessage *audio_message;
87
88
89
90 typedef struct GNUNET_gstData GNUNET_gstData;
91 struct GNUNET_gstData {
92   //general
93   GstPipeline *pipeline;
94
95   // things
96   struct AudioMessage *audio_message;
97   struct GNUNET_SERVER_MessageStreamTokenizer *stdin_mst;
98   GstElement *appsrc;
99   GstElement *appsink;
100   //settings
101   int audiobackend;
102   int dropsilence;
103   int usertp;
104   int pure_ogg;
105   char *jack_pp_in;
106   char *jack_pp_out;
107 };
108
109
110
111
112 #define DEBUG_READ_PURE_OGG 1
113 #define DEBUG_RECORD_PURE_OGG 1
114
115
116 /**
117  * How much data to read in one go
118  */
119 #define MAXLINE 4096
120
121 /**
122  * Max number of microseconds to buffer in audiosink.
123  * Default is 1000
124  */
125 #define BUFFER_TIME 1000
126
127 /**
128  * Min number of microseconds to buffer in audiosink.
129  * Default is 1000
130  */
131 #define LATENCY_TIME 1000
132
133
134 /**
135  * Number of channels.
136  * Must be one of the following (from libopusenc documentation):
137  * 1, 2
138  */
139 #define OPUS_CHANNELS 1
140
141 /**
142  * Maximal size of a single opus packet.
143  */
144 #define MAX_PAYLOAD_SIZE (1024 / OPUS_CHANNELS)
145
146 /**
147  * Size of a single frame fed to the encoder, in ms.
148  * Must be one of the following (from libopus documentation):
149  * 2.5, 5, 10, 20, 40 or 60
150  */
151 #define OPUS_FRAME_SIZE 40
152
153 /**
154  * Expected packet loss to prepare for, in percents.
155  */
156 #define PACKET_LOSS_PERCENTAGE 1
157
158 /**
159  * Set to 1 to enable forward error correction.
160  * Set to 0 to disable.
161  */
162 #define INBAND_FEC_MODE 1
163
164 /**
165  * Max number of microseconds to buffer in audiosource.
166  * Default is 200000
167  */
168 #define BUFFER_TIME 1000 /* 1ms */
169
170 /**
171  * Min number of microseconds to buffer in audiosource.
172  * Default is 10000
173  */
174 #define LATENCY_TIME 1000 /* 1ms */
175
176 /**
177  * Maximum delay in multiplexing streams, in ns.
178  * Setting this to 0 forces page flushing, which
179  * decreases delay, but increases overhead.
180  */
181 #define OGG_MAX_DELAY 0
182
183 /**
184  * Maximum delay for sending out a page, in ns.
185  * Setting this to 0 forces page flushing, which
186  * decreases delay, but increases overhead.
187  */
188 #define OGG_MAX_PAGE_DELAY 0
189
190 #define SAMPLING_RATE 48000
191
192 enum {
193     AUTO,
194     JACK,
195     ALSA,
196     FAKE,
197     TEST
198 };
199
200 enum {
201     SOURCE,
202     SINK
203 };
204
205 enum {
206     ENCODER,
207     DECODER
208 };
209
210 enum {
211     FAIL,
212     OK
213 };
214
215 enum {
216     SPEAKER,
217     MICROPHONE
218 };