Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Sims hate me again (or is that the other way). Fixup the stubs.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11784 a1c6a512-1295-4272-9138-f99709370657

+5 -13
+5 -13
apps/recorder/recording.c
··· 2047 2047 return 5 * 1024 * 1024; 2048 2048 } 2049 2049 2050 - #if CONFIG_CODEC == SWCODEC 2051 2050 void rec_set_source(int source, unsigned flags) 2052 2051 { 2053 2052 source = source; ··· 2067 2066 } 2068 2067 #endif /* HAVE_SPDIF_POWER */ 2069 2068 #endif /* HAVE_SPDIF_IN */ 2070 - #endif /* CONFIG_CODEC == SWCODEC */ 2071 2069 2072 2070 void audio_set_recording_options(struct audio_recording_options *options) 2073 2071 { ··· 2081 2079 type = type; 2082 2080 } 2083 2081 2082 + void audio_record(const char *filename) 2083 + { 2084 + filename = filename; 2085 + } 2086 + 2084 2087 void audio_stop_recording(void) 2085 2088 { 2086 2089 } ··· 2101 2104 *right = 0; 2102 2105 } 2103 2106 2104 - void audio_record(const char *filename) 2105 - { 2106 - filename = filename; 2107 - } 2108 - 2109 - void audio_new_file(const char *filename) 2110 - { 2111 - filename = filename; 2112 - } 2113 - 2114 2107 unsigned long pcm_rec_status(void) 2115 2108 { 2116 2109 return 0; ··· 2118 2111 2119 2112 #endif /* #ifdef SIMULATOR */ 2120 2113 #endif /* #ifdef CONFIG_CODEC == SWCODEC */ 2121 - 2122 2114 2123 2115 #endif /* HAVE_RECORDING */