summaryrefslogtreecommitdiff
path: root/apps/playback.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/playback.h')
-rw-r--r--apps/playback.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/apps/playback.h b/apps/playback.h
index 177768ded3..8a63bd7907 100644
--- a/apps/playback.h
+++ b/apps/playback.h
@@ -62,12 +62,18 @@ int playback_claim_aa_slot(struct dim *dim);
62 * Save to call from other threads */ 62 * Save to call from other threads */
63void playback_release_aa_slot(int slot); 63void playback_release_aa_slot(int slot);
64 64
65/*
66 * Tells playback to sync buffered album art dimensions
67 *
68 * Save to call from other threads */
69void playback_update_aa_dims(void);
70
65struct bufopen_bitmap_data { 71struct bufopen_bitmap_data {
66 struct dim *dim; 72 struct dim *dim;
67 struct mp3_albumart *embedded_albumart; 73 struct mp3_albumart *embedded_albumart;
68}; 74};
69 75
70#endif 76#endif /* HAVE_ALBUMART */
71 77
72/* Functions */ 78/* Functions */
73int audio_track_count(void); 79int audio_track_count(void);
@@ -79,6 +85,9 @@ void audio_set_cuesheet(bool enable);
79#ifdef HAVE_CROSSFADE 85#ifdef HAVE_CROSSFADE
80void audio_set_crossfade(int enable); 86void audio_set_crossfade(int enable);
81#endif 87#endif
88#ifdef HAVE_PLAY_FREQ
89void audio_set_playback_frequency(int setting);
90#endif
82 91
83size_t audio_get_filebuflen(void); 92size_t audio_get_filebuflen(void);
84 93