summaryrefslogtreecommitdiff
path: root/apps/playback.h
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2023-09-01 01:15:07 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2023-09-01 19:32:27 -0400
commit79b64a3fc7afbebcfc4dd0880b8c5d0195747b6f (patch)
tree4356483cb3ee638efb65ff594e3060c86f31633a /apps/playback.h
parent873f49b1f066f41ef0649647188708645e6c0663 (diff)
downloadrockbox-79b64a3fc7afbebcfc4dd0880b8c5d0195747b6f.tar.gz
rockbox-79b64a3fc7afbebcfc4dd0880b8c5d0195747b6f.zip
setting_list.c playback frequency cleanup
moves the callback to settings_list audio_set_playback_frequency now accepts an actual frequency 44100 192000 etc rather than an index Change-Id: Ieb3fc79a7fe3f1ff050465c8cd8061027e4572ff
Diffstat (limited to 'apps/playback.h')
-rw-r--r--apps/playback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.h b/apps/playback.h
index b9aa413ef3..782f69fa38 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -83,7 +83,7 @@ void audio_set_cuesheet(bool enable);
83void audio_set_crossfade(int enable); 83void audio_set_crossfade(int enable);
84#endif 84#endif
85#ifdef HAVE_PLAY_FREQ 85#ifdef HAVE_PLAY_FREQ
86void audio_set_playback_frequency(int setting); 86void audio_set_playback_frequency(unsigned int sample_rate_hz);
87#endif 87#endif
88#ifdef HAVE_ALBUMART 88#ifdef HAVE_ALBUMART
89void set_albumart_mode(int setting); 89void set_albumart_mode(int setting);