Correct capitalization of WavPack in codec info
Report the correct codec name for WavPack files. An info refresh will be needed for it to take effect on existing playlist entries. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
parent
777ab28d6a
commit
7f7e17a410
1 changed files with 11 additions and 11 deletions
|
@ -281,17 +281,17 @@ int32_t WriteBytesProc(void *ds, void *data, int32_t bcount) {
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSDictionary *)properties {
|
- (NSDictionary *)properties {
|
||||||
return @{@"channels": [NSNumber numberWithInt:channels],
|
return @{ @"channels": [NSNumber numberWithInt:channels],
|
||||||
@"channelConfig": [NSNumber numberWithUnsignedInt:channelConfig],
|
@"channelConfig": [NSNumber numberWithUnsignedInt:channelConfig],
|
||||||
@"bitsPerSample": [NSNumber numberWithInt:bitsPerSample],
|
@"bitsPerSample": [NSNumber numberWithInt:bitsPerSample],
|
||||||
@"bitrate": [NSNumber numberWithInt:bitrate],
|
@"bitrate": [NSNumber numberWithInt:bitrate],
|
||||||
@"sampleRate": [NSNumber numberWithFloat:frequency],
|
@"sampleRate": [NSNumber numberWithFloat:frequency],
|
||||||
@"floatingPoint": [NSNumber numberWithBool:floatingPoint],
|
@"floatingPoint": [NSNumber numberWithBool:floatingPoint],
|
||||||
@"totalFrames": [NSNumber numberWithDouble:totalFrames],
|
@"totalFrames": [NSNumber numberWithDouble:totalFrames],
|
||||||
@"seekable": [NSNumber numberWithBool:[[wv source] seekable]],
|
@"seekable": [NSNumber numberWithBool:[[wv source] seekable]],
|
||||||
@"codec": @"Wavpack",
|
@"codec": @"WavPack",
|
||||||
@"endian": @"little",
|
@"endian": @"little",
|
||||||
@"encoding": isLossy ? @"lossy" : @"lossless"};
|
@"encoding": isLossy ? @"lossy" : @"lossless" };
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSDictionary *)metadata {
|
- (NSDictionary *)metadata {
|
||||||
|
|
Loading…
Reference in a new issue