diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-10-29 22:09:13 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-10-29 22:09:13 +0200 |
commit | e7ad2e1fab9c51189fdc8b4f2d81f625da9dd422 (patch) | |
tree | eba50066116cb21fae751f7d7b2a9c10c05e2585 /src/dabInputFifo.h | |
parent | 471e7ee279d633a7b48e73ece42677574a74ad39 (diff) | |
download | dabmux-e7ad2e1fab9c51189fdc8b4f2d81f625da9dd422.tar.gz dabmux-e7ad2e1fab9c51189fdc8b4f2d81f625da9dd422.tar.bz2 dabmux-e7ad2e1fab9c51189fdc8b4f2d81f625da9dd422.zip |
Modernise PRBS generator and remove code for cmd line parser
Diffstat (limited to 'src/dabInputFifo.h')
-rw-r--r-- | src/dabInputFifo.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/dabInputFifo.h b/src/dabInputFifo.h index e5f5206..99edac6 100644 --- a/src/dabInputFifo.h +++ b/src/dabInputFifo.h @@ -1,6 +1,11 @@ /* Copyright (C) 2009 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) + + Copyright (C) 2016 + Matthias P. Braendli, matthias.braendli@mpb.li + + http://www.opendigitalradio.org */ /* This file is part of ODR-DabMux. @@ -19,19 +24,18 @@ along with ODR-DabMux. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef DAB_INPUT_FIFO_H -#define DAB_INPUT_FIFO_H +#pragma once #ifdef HAVE_CONFIG_H -# include "config.h" +# include "config.h" #endif + #include "dabInputFile.h" #include "Log.h" #ifdef _WIN32 # include <io.h> - # define sem_t HANDLE # define O_NONBLOCK 0 #else @@ -97,4 +101,3 @@ void* dabInputFifoThread(void* args); # endif #endif -#endif // DAB_INPUT_FIFO_H |