Back to project page Backyard-Brains-Android-App.
The source code is released under:
GNU General Public License
If you think the Android project Backyard-Brains-Android-App listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Backyard Brains Android App//w w w.j a v a 2 s . c om * Copyright (C) 2011 Backyard Brains * by Nathan Dotz <nate (at) backyardbrains.com> * * 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/>. */ package com.backyardbrains.audio; import java.nio.ByteBuffer; /** * A simple interface to attach to services which allows a callback into * android's built-in classes from an unrelated thread * * @author Nathan Dotz <nate@backyardbrains.com> * */ public interface ReceivesAudio { /** * Called by a thread to pass audio {@link ByteBuffer} into a service. The * service should then do as it sees fit with the data. * * @param audioInfo */ public void receiveAudio(ByteBuffer audioInfo); }