forked from andrmuel/gr-dab
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'marcusmueller-external_libtoolame_dab' into working_branch
- Loading branch information
Showing
160 changed files
with
161 additions
and
17,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "ODR-AudioEnc"] | ||
path = ODR-AudioEnc | ||
url = https://github.com/Opendigitalradio/ODR-AudioEnc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ODR-AudioEnc
added at
201389
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
gr-dab | ||
====== | ||
|
||
A Digital Audio Broadcasting and Digital Audio Broadcasting + module for GNU Radio | ||
|
||
Contents | ||
-------- | ||
|
||
0: License | ||
|
||
1: Installation | ||
|
||
2: Usage | ||
|
||
3: Features | ||
|
||
4: (Current) Constraints | ||
|
||
5: Known Bugs | ||
|
||
License | ||
------- | ||
Copyright (C) Andreas Müller, 2011, Moritz Luca Schmid, 2017 | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
Installation | ||
------------ | ||
|
||
This directory (and the resulting tarball) contains a build tree for | ||
gr-dab. | ||
|
||
This package requires that GNU Radio is already installed. It | ||
also depends on some GNU Radio prerequisites, such as Boost and | ||
cppunit. | ||
|
||
It also depends on fdk-aac. If you're on a Debianoid (Debian, Mint, *buntu…), | ||
you might want to `apt-get install fdk-aac-dev`. If you're on a Redhatoid | ||
(Redhat, Fedora, Centos…), `dnf install fdk-aac-devel` is the analogous method | ||
of installing this dependency. | ||
|
||
There is a dependency on the modified MPEG encoder libtoolame from the ODR | ||
project. It's fetched by ´git submodule update --init´ automatically. | ||
|
||
To build this module, run these commands: | ||
|
||
$ git submodule update --init | ||
$ mkdir build | ||
$ cd build | ||
$ cmake ../ | ||
$ make | ||
$ sudo make install | ||
$ sudo ldconfig | ||
|
||
|
||
|
||
Usage | ||
----- | ||
|
||
Receiving DAB+ broadcasts | ||
######################### | ||
|
||
TODO: insert Flowgraph | ||
|
||
Transmitting DAB+ | ||
################# | ||
|
||
TODO: insert Flowgraph | ||
|
||
Features | ||
-------- | ||
|
||
* Transmits DAB+ Audio transmissions, metadata | ||
* Receives DAB+ | ||
|
||
(Current) Constraints | ||
--------------------- | ||
|
||
TODO | ||
|
||
Known Bugs | ||
---------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Try to find the libtoolame-dab source library. | ||
# Once done this will define | ||
# | ||
# LIBTOOLAME-DAB_SOURCE_DIRS - where to find toolame.h, etc. | ||
|
||
find_path(LIBTOOLAME-DAB_INCLUDE_DIR libtoolame-dab/toolame.h | ||
${CMAKE_SOURCE_DIR}/ODR-AudioEnc | ||
NO_DEFAULT_PATH NO_CMAKE_PATH NO_CMAKE_SYSTEM_PATH | ||
) | ||
|
||
if(LIBTOOLAME-DAB_INCLUDE_DIR) | ||
set(LIBTOOLAME-DAB_SOURCE_DIR "${LIBTOOLAME-DAB_INCLUDE_DIR}/libtoolame-dab") | ||
set(LIBTOOLAME-DAB_FOUND 1) | ||
endif(LIBTOOLAME-DAB_INCLUDE_DIR) | ||
|
||
|
||
mark_as_advanced(LIBTOOLAME-DAB_SOURCE_DIR) | ||
mark_as_advanced(LIBTOOLAME-DAB_INCLUDE_DIR) | ||
mark_as_advanced(LIBTOOLAME-DAB_FOUND) | ||
|
||
if(NOT LIBTOOLAME-DAB_FOUND) | ||
set(LIBTOOLAME-DAB_DIR_MESSAGE "libtoolame-dab was not found. Make sure and LIBTOOLAME-DAB_SOURCE_DIR is set.") | ||
if(NOT LIBTOOLAME-DAB_FIND_QUIETLY) | ||
message(STATUS "${LIBTOOLAME-DAB_DIR_MESSAGE}") | ||
else(NOT LIBTOOLAME-DAB_FIND_QUIETLY) | ||
if(LIBTOOLAME-DAB_FIND_REQUIRED) | ||
message(FATAL_ERROR "${LIBTOOLAME-DAB_DIR_MESSAGE}") | ||
endif(LIBTOOLAME-DAB_FIND_REQUIRED) | ||
endif(NOT LIBTOOLAME-DAB_FIND_QUIETLY) | ||
endif(NOT LIBTOOLAME-DAB_FOUND) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.