myjimmy commented on a change in pull request #312:
URL: https://github.com/apache/guacamole-server/pull/312#discussion_r532719764
##########
File path: src/protocols/rdp/channels/audio-input/audio-buffer.h
##########
@@ -145,6 +168,27 @@ typedef struct guac_rdp_audio_buffer {
*/
void* data;
+ /**
+ * The thread to send the audio input stream.
+ */
+ pthread_t send_thread;
+
+ /**
+ * The flag to stop the thread.
+ */
+ int stop_thread;
+
+ /**
+ * The list to take the audio buffers.
+ */
+ audio_stream_list* first_stream_list;
+ audio_stream_list* last_stream_list;
Review comment:
I'll modify this.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]