This commit is contained in:
Martin Pulec
2016-03-11 14:43:46 +01:00
parent 49e31ec5f9
commit f6aea56e2d
4 changed files with 5 additions and 4 deletions

View File

@@ -503,6 +503,8 @@ case "$host_os" in
;;
esac
LIBS="$LIBS $X_LIBS"
AC_SUBST(X_CFLAGS)
AC_SUBST(X_LIBS)
AC_SUBST(X_EXTRA_LIBS)

View File

@@ -226,7 +226,7 @@ error:
fprintf(stderr, "[CoreAudio] error obtaining device list.\n");
}
static void * audio_cap_ca_init(char *cfg)
static void * audio_cap_ca_init(const char *cfg)
{
if(cfg && strcmp(cfg, "help") == 0) {
printf("Available Core Audio capture devices:\n");

View File

@@ -129,8 +129,8 @@ private:
void setSDPLines();
Boolean fReuseFirstSource __attribute__((unused));
void* fLastStreamToken __attribute__((unused));
Boolean fReuseFirstSource;
void* fLastStreamToken;
char fCNAME[100];
struct module *fmod;
rtps_types_t avType;

View File

@@ -219,7 +219,6 @@ after_send:
" sendBytesTotal " << m_send_bytes_total <<
" timestamp " << now <<
" compressMillis " << tx_frame->compress_end - tx_frame->compress_start;
///@todo Add more accurate statistics in milliseconds
control_report_stats(m_control, oss.str());
}