forked from len0rd/rockbox
Add %fk and %Fk WPS tags : (next) file audio frequency in KHz (rewrite of FS#6393 to adapt it to the tokenizer).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13455 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9d5e376fc3
commit
5cc98efddc
4 changed files with 19 additions and 1 deletions
|
|
@ -340,7 +340,12 @@ static void dump_wps_tokens(struct wps_data *data)
|
|||
break;
|
||||
|
||||
case WPS_TOKEN_FILE_FREQUENCY:
|
||||
snprintf(buf, sizeof(buf), "%sfile audio frequency",
|
||||
snprintf(buf, sizeof(buf), "%sfile audio frequency in Hz",
|
||||
next_str(next));
|
||||
break;
|
||||
|
||||
case WPS_TOKEN_FILE_FREQUENCY_KHZ:
|
||||
snprintf(buf, sizeof(buf), "%sfile audio frequency in KHz",
|
||||
next_str(next));
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue