Search
lxdream.org :: lxdream/src/drivers/audio_null.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/audio_null.c
changeset 561:533f6b478071
prev106:9048bac046c3
next643:653b0a70f173
author nkeynes
date Tue Jan 01 08:57:03 2008 +0000 (16 years ago)
branchlxdream-mmu
permissions -rw-r--r--
last change Add missing pvr2.h include
view annotate diff log raw
     1 /**
     2  * $Id$
     3  * 
     4  * The "null" audio driver, which just discards all input without even
     5  * looking at it.
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     8  *
     9  * This program is free software; you can redistribute it and/or modify
    10  * it under the terms of the GNU General Public License as published by
    11  * the Free Software Foundation; either version 2 of the License, or
    12  * (at your option) any later version.
    13  *
    14  * This program is distributed in the hope that it will be useful,
    15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    17  * GNU General Public License for more details.
    18  */
    19 #include "aica/audio.h"
    21 gboolean audio_null_set_format( uint32_t rate, uint32_t format )
    22 {
    23     return TRUE;
    24 }
    26 gboolean audio_null_process_buffer( audio_buffer_t buffer )
    27 {
    28     return TRUE;
    29 }
    31 struct audio_driver audio_null_driver = { "null", audio_null_set_format, audio_null_process_buffer };
.