summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/metadata.h
diff options
context:
space:
mode:
authorRoman Artiukhin <bahusdrive@gmail.com>2024-01-24 12:28:27 +0200
committerSolomon Peachy <pizza@shaftnet.org>2024-02-02 09:36:53 -0500
commit76ec55cc49e306a54ac7e43acf8a7f70ba7905a0 (patch)
treee151675f781108bed6d7ce65fdaf770b96c2e258 /lib/rbcodec/metadata/metadata.h
parentbe16edc94b9b44da6b83235fab248fa8a31126fb (diff)
downloadrockbox-76ec55cc49e306a54ac7e43acf8a7f70ba7905a0.tar.gz
rockbox-76ec55cc49e306a54ac7e43acf8a7f70ba7905a0.zip
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
Diffstat (limited to 'lib/rbcodec/metadata/metadata.h')
-rw-r--r--lib/rbcodec/metadata/metadata.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/rbcodec/metadata/metadata.h b/lib/rbcodec/metadata/metadata.h
index eda1fb0d7d..b30979334a 100644
--- a/lib/rbcodec/metadata/metadata.h
+++ b/lib/rbcodec/metadata/metadata.h
@@ -272,10 +272,6 @@ struct mp3entry {
272 bool has_toc; /* True if there is a VBR header in the file */ 272 bool has_toc; /* True if there is a VBR header in the file */
273 unsigned char toc[100]; /* table of contents */ 273 unsigned char toc[100]; /* table of contents */
274 274
275 /* Added for ATRAC3 */
276 unsigned int channels; /* Number of channels in the stream */
277 unsigned int extradata_size; /* Size (in bytes) of the codec's extradata from the container */
278
279 /* Added for AAC HE SBR */ 275 /* Added for AAC HE SBR */
280 bool needs_upsampling_correction; /* flag used by aac codec */ 276 bool needs_upsampling_correction; /* flag used by aac codec */
281 277