diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-06-13 16:57:07 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-06-13 16:57:07 +0200 |
commit | 039b48b75d8b26d4a15c01be7513140a6be493da (patch) | |
tree | 5889800d2cc867d5fecbfe935701b287aa29c2ca /src/FileInput.cpp | |
parent | eedf902dde96026057fb71e0743864d3257f4a20 (diff) | |
parent | cb5211684e8d4300641f36830ed3445e72a3f8bd (diff) | |
download | ODR-AudioEnc-039b48b75d8b26d4a15c01be7513140a6be493da.tar.gz ODR-AudioEnc-039b48b75d8b26d4a15c01be7513140a6be493da.tar.bz2 ODR-AudioEnc-039b48b75d8b26d4a15c01be7513140a6be493da.zip |
Merge pull request #2 from sergione76/master
Add option to ignore EOF fifo and generate silence
Diffstat (limited to 'src/FileInput.cpp')
-rw-r--r-- | src/FileInput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FileInput.cpp b/src/FileInput.cpp index c8023dd..9ec988b 100644 --- a/src/FileInput.cpp +++ b/src/FileInput.cpp @@ -85,7 +85,7 @@ ssize_t FileInput::read(uint8_t* buf, size_t length) pcmread = length; } else { - fprintf(stderr, "Unable to read from input!\n"); + //fprintf(stderr, "Unable to read from input!\n"); return 0; } } |