
AM/FM Radio QML Plugin (v0.2)
----------------------
 Manuel Bachmann <manuel.bachmann@iot.bzh>

 Description :
 ***********
  A QML plugin able to detect and use radio hardware, most notably RTL2832U
chipsets (although it can easily be extended).
  It also provides :
- multiple radio hardware discovery ;
- general status summary ;
- AM/FM mode switching ;
- frequency switching ;
- mute on/off switching ;
- ...

 Installation :
 ************
$ autoreconf --install
$ ./configure
$ make
$ make install

 Testing :
 *******
$ qmlscene radio.qml

 By default, it will try to use PulseAudio, and fall back to pure ALSA.
 You can force an audio backend by setting the QML_RADIO_OUTPUT variable :
export QML_RADIO_OUTPUT=Pulse
 or :
export QML_RADIO_OUTPUT=Alsa

 (if the plugin has been installed to a non-standard location, you will need to
  specify its "qml" directory manually, by doing e.g. :
$ qmlscene -I /opt/lib/qt5/qml radio.qml )

 License :
 *******
Being massively based on the "rtl-sdr" library, it logically inherits its GPLv2
license.

 Requirements :
 ************
 It requires :
- g++ (4.7 minimum for C++11 support) ;
- Qt >= 5.0 ;
- rtl-sdr >= 0.5.0 (fetched with "$ git clone git://git.osmocom.org/rtl-sdr") ;
- libusb-1.0 ;
- libpulse-simple ;
- alsa.
