mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-19 10:02:45 -05:00
Remove ATRAC3 specific fields (channels, extradata_size) from mp3entry
Also fixes typo of using never initialized id3->channels in wav metadata (introduced in 2d1937a1)
Change-Id: I28cddec2b9d9bd1e756ffaa004b4f6e8528a7566
This commit is contained in:
parent
be16edc94b
commit
76ec55cc49
11 changed files with 22 additions and 35 deletions
|
|
@ -163,7 +163,7 @@ bool get_musepack_metadata(int fd, struct mp3entry *id3)
|
|||
id3->frequency = sfreqs[(sv8_header[k++] >> 5) & 0x0003];
|
||||
|
||||
/* Number of channels */
|
||||
id3->channels = (sv8_header[k++] >> 4) + 1;
|
||||
//uint8_t channels = (sv8_header[k++] >> 4) + 1;
|
||||
|
||||
/* Skip to next tag: k = size -2 */
|
||||
k = size - 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue