mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 23:40:26 +00:00
Fixes
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user