diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2017-07-28 00:36:04 -0700 |
---|---|---|
committer | jsorg71 <jay.sorg@gmail.com> | 2017-08-04 17:24:57 -0700 |
commit | 4f91a52109477791acbb7393b78e734bb6866018 (patch) | |
tree | fa5c0b028a74c1e79fae9128b1b0bfe30681bdb0 | |
parent | 021a78f4c65a745b87f89e5ba1dbe20353f8d7fc (diff) | |
download | xrdp-proprietary-4f91a52109477791acbb7393b78e734bb6866018.tar.gz xrdp-proprietary-4f91a52109477791acbb7393b78e734bb6866018.zip |
chansrv: sound, remove a do not know and a comment
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | sesman/chansrv/sound.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index caa9fcf0..fc54fa99 100644 --- a/configure.ac +++ b/configure.ac @@ -238,7 +238,7 @@ fi if test "x$enable_fdkaac" = "xyes" then AC_CHECK_HEADER([fdk-aac/aacenc_lib.h], [], - [AC_MSG_ERROR([please install libfdk-aac-dev or dontknow-devel])]) + [AC_MSG_ERROR([please install libfdk-aac-dev or fdk-aac-devel])]) fi # checking for opus diff --git a/sesman/chansrv/sound.c b/sesman/chansrv/sound.c index 9242ccd3..9f73411a 100644 --- a/sesman/chansrv/sound.c +++ b/sesman/chansrv/sound.c @@ -520,7 +520,6 @@ sound_wave_compress_fdk_aac(char *data, int data_bytes, int *format_index) } aot = 2; /* MPEG-4 AAC Low Complexity. */ - //aot = 129; /* MPEG-2 AAC Low Complexity. */ error = aacEncoder_SetParam(g_fdk_aac_encoder, AACENC_AOT, aot); if (error != AACENC_OK) { |