bump version to m1.0.5 release
[Rockbox.git] / firmware / target / arm / tcc780x / cowond2 / pcm-cowond2.c
blob2d50f042d9e3f4009675ca225d96a411ff5a8bc4
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 by Karl Kurbjun
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include "system.h"
20 #include "kernel.h"
21 #include "logf.h"
22 #include "audio.h"
23 #include "sound.h"
24 #include "file.h"
26 void pcm_postinit(void)
28 #warning function not implemented
31 const void * pcm_play_dma_get_peak_buffer(int *count)
33 #warning function not implemented
34 (void) count;
35 return 0;
38 void pcm_play_dma_init(void)
40 #warning function not implemented
43 void pcm_apply_settings(void)
45 #warning function not implemented
48 void pcm_set_frequency(unsigned int frequency)
50 #warning function not implemented
51 (void) frequency;
54 void pcm_play_dma_start(const void *addr, size_t size)
56 #warning function not implemented
57 (void) addr;
58 (void) size;
61 void pcm_play_dma_stop(void)
63 #warning function not implemented
66 void pcm_play_lock(void)
68 #warning function not implemented
71 void pcm_play_unlock(void)
73 #warning function not implemented
76 void pcm_play_dma_pause(bool pause)
78 #warning function not implemented
79 (void) pause;
82 size_t pcm_get_bytes_waiting(void)
84 #warning function not implemented
85 return 0;