File tree 2 files changed +5
-10
lines changed
2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -23,17 +23,12 @@ fn test_no_length_properties() {
23
23
}
24
24
25
25
#[ test]
26
+ #[ ignore]
26
27
fn test_multi_channel_properties ( ) {
27
- let f = get_file :: < WavPackFile > ( "tests/taglib/data/four_channels.wv" ) ;
28
- assert_eq ! ( f. properties( ) . duration( ) . as_secs( ) , 3 ) ;
29
- assert_eq ! ( f. properties( ) . duration( ) . as_millis( ) , 3833 ) ;
30
- assert_eq ! ( f. properties( ) . audio_bitrate( ) , 112 ) ;
31
- assert_eq ! ( f. properties( ) . channels( ) , 4 ) ;
32
- assert_eq ! ( f. properties( ) . bit_depth( ) , 16 ) ;
33
- assert_eq ! ( f. properties( ) . is_lossless( ) , false ) ;
34
- assert_eq ! ( f. properties( ) . sample_rate( ) , 44100 ) ;
35
- // TODO: CPPUNIT_ASSERT_EQUAL(169031U, f.audioProperties()->sampleFrames());
36
- assert_eq ! ( f. properties( ) . version( ) , 1031 ) ;
28
+ // Marker test, this is not a valid file and TagLib does not handle it properly.
29
+ //
30
+ // A multichannel file should make use of the multichannel metadata sub block, which
31
+ // this file does not. Even FFMpeg thinks this is a mono file.
37
32
}
38
33
39
34
#[ test]
You can’t perform that action at this time.
0 commit comments