osmo-gapk: drop useless printf calls

The printf() writes the text into stdout, which may be undesirable
in some use cases. Moreover, the printed information was redundant.
So, let's drop such calls.
This commit is contained in:
Vadim Yanitskiy 2017-09-07 16:48:27 +03:00
parent c35ba8a725
commit 4b7cd2c677
1 changed files with 2 additions and 2 deletions

View File

@ -397,7 +397,7 @@ files_open(struct gapk_state *gs)
return gs->in.rtp.fd;
}
} else if (gs->opts.alsa_in) {
printf("alsa_in, not stdin\n");
/* Do nothing, ALSA source does the initialization itself */
} else
gs->in.file.fh = stdin;
@ -419,7 +419,7 @@ files_open(struct gapk_state *gs)
return gs->out.rtp.fd;
}
} else if (gs->opts.alsa_out) {
printf("alsa_out, not stdout\n");
/* Do nothing, ALSA sink does the initialization itself */
} else
gs->out.file.fh = stdout;