From 78f0dc81754090c3787d852451d7652d9ef4fa90 Mon Sep 17 00:00:00 2001 From: "James D. Smith" Date: Thu, 16 Sep 2021 17:50:56 -0600 Subject: File properties plugin: Add bitrate. Change-Id: I6160c50685ce1615ef295a472f25cb608b2e6feb --- apps/plugins/properties.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'apps/plugins/properties.c') diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index 12ea25f0c0..6e706248aa 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -43,6 +43,7 @@ char str_year[MAX_PATH]; char str_discnum[MAX_PATH]; char str_tracknum[MAX_PATH]; char str_duration[32]; +char str_bitrate[32]; char str_frequency[32]; unsigned nseconds; @@ -70,6 +71,7 @@ static const unsigned char* const props_file[] = ID2P(LANG_PROPERTIES_DISCNUM), str_discnum, ID2P(LANG_PROPERTIES_TRACKNUM), str_tracknum, ID2P(LANG_PROPERTIES_DURATION), str_duration, + ID2P(LANG_PROPERTIES_BITRATE), str_bitrate, ID2P(LANG_PROPERTIES_FREQUENCY), str_frequency, }; static const unsigned char* const props_dir[] = @@ -153,9 +155,11 @@ static bool file_properties(const char* selected_file) "%s", id3.disc_string ? id3.disc_string : ""); rb->snprintf(str_tracknum, sizeof str_tracknum, "%s", id3.track_string ? id3.track_string : ""); + rb->snprintf(str_bitrate, sizeof str_bitrate, + "%d kbps", id3.bitrate ? : 0); rb->snprintf(str_frequency, sizeof str_frequency, "%ld Hz", id3.frequency ? : 0); - num_properties += 11; + num_properties += 12; if (dur > 0) { -- cgit v1.2.3