# DroidCam & DroidCamX Linux Client (C) 2011
# Author: Aram G. (dev47@dev47apps.com)

NOTICE 

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.
USE AT YOUR OWN RISK.

You may redistribute and/or modify any part of this program,
provided this notice and all disclaimers remain intact and preserved, 
crediting the original author(s).


NOTES

** Links
http://www.dev47apps.com/droidcam/linux/
http://www.dev47apps.com/droidcam/updates/

** Missing Audio Support

- On Windows, an audio device driver simulates a virtual microphone

- Seems Linux will need an ALSA driver as well, however given the amount of
 time already spent on this project this is left pending

- JACK (http://jackaudio.org/) is another option, however few chat applications support it

- ALSA plug-ins might also be an option
 - The 'file' plugin seemed promising
 - Could create a "pipe" and have the plugin read from it, and the app writing to it

 - The following [simple plugin] doesn't work though (VLC/Audacity = segfault)

  pcm.testing {
    type file
    slave {
       pcm {
         type hw
         card 0
         device 0
       }
    }
    infile "/dev/urandom"
    format "raw"
  }
