From 6b8396e72eb83b117359f18ba120cfa374ba3ac9 Mon Sep 17 00:00:00 2001 From: Mattias Wadman Date: Mon, 30 Oct 2023 12:31:18 +0100 Subject: [PATCH] flac: Add option to see sample details like residuals and verbatim values --- doc/formats.md | 5 +- format/flac/flac_frame.go | 68 ++- format/flac/testdata/frame.fqtest | 4 +- format/flac/testdata/help_flac_frame.fqtest | 7 +- format/flac/testdata/mono16.fqtest | 138 +++--- format/flac/testdata/mono24.fqtest | 170 ++++---- format/flac/testdata/mono32.fqtest | 140 +++--- format/flac/testdata/mono8.fqtest | 110 ++--- format/flac/testdata/picture_seek_gain.fqtest | 2 +- format/flac/testdata/stereo16.fqtest | 178 ++++---- format/flac/testdata/stereo24.fqtest | 362 ++++++++-------- format/flac/testdata/stereo32.fqtest | 410 +++++++++--------- format/flac/testdata/stereo8.fqtest | 214 ++++----- format/format.go | 3 +- format/matroska/testdata/flac.fqtest | 2 +- .../sweep-with-DC.mkvmerge13.mka.fqtest | 194 ++++----- format/mp4/testdata/flac.fqtest | 2 +- format/ogg/testdata/flac.fqtest | 2 +- format/riff/testdata/flac.avi.fqtest | 4 +- 19 files changed, 1030 insertions(+), 985 deletions(-) diff --git a/doc/formats.md b/doc/formats.md index b3991bbdf..a25e88c5d 100644 --- a/doc/formats.md +++ b/doc/formats.md @@ -574,17 +574,18 @@ $ fq -d csv '.[0] as $t | .[1:] | map(with_entries(.key = $t[.key]))' file.csv |Name |Default|Description| |- |- |-| |`bits_per_sample`|16 |Bits per sample| +|`sample_details` |false |Decode more sample details like residuals etc| ### Examples Decode file using flac_frame options ``` -$ fq -d flac_frame -o bits_per_sample=16 . file +$ fq -d flac_frame -o bits_per_sample=16 -o sample_details=false . file ``` Decode value as flac_frame ``` -... | flac_frame({bits_per_sample:16}) +... | flac_frame({bits_per_sample:16,sample_details:false}) ``` ## hevc_au diff --git a/format/flac/flac_frame.go b/format/flac/flac_frame.go index 2e63f4d49..05c9db38c 100644 --- a/format/flac/flac_frame.go +++ b/format/flac/flac_frame.go @@ -20,6 +20,7 @@ func init() { DecodeFn: frameDecode, DefaultInArg: format.FLAC_Frame_In{ BitsPerSample: 16, // TODO: maybe should not have a default value? + SampleDetails: false, }, }) } @@ -466,7 +467,15 @@ func frameDecode(d *decode.D) any { n += count } else { d.RangeFn(d.Pos(), int64(count*escapeSampleSize), func(d *decode.D) { - d.FieldRawLen("samples", int64(count*escapeSampleSize)) + if ffi.SampleDetails { + d.FieldArray("residuals", func(d *decode.D) { + for i := 0; i < count; i++ { + d.FieldS("residual", escapeSampleSize) + } + }) + } else { + d.FieldRawLen("residuals", int64(count*escapeSampleSize)) + } }) for j := 0; j < count; j++ { samples[n] = d.S(escapeSampleSize) @@ -474,17 +483,32 @@ func frameDecode(d *decode.D) any { } } } else { - samplesStart := d.Pos() - for j := 0; j < count; j++ { - high := d.Unary(0) - low := d.U(riceParameter) - samples[n] = mathex.ZigZag[uint64, int64](high< Unencoded constant value of the subblock, n = frame's bits-per-sample. v := d.FieldS("value", subframeSampleSize) @@ -516,7 +541,15 @@ func frameDecode(d *decode.D) any { // Unencoded subblock; n = frame's bits-per-sample, i = frame's blocksize. // TODO: refactor into some kind of FieldBitBufLenFn? d.RangeFn(d.Pos(), int64(blockSize*subframeSampleSize), func(d *decode.D) { - d.FieldRawLen("samples", d.BitsLeft()) + if ffi.SampleDetails { + d.FieldArray("samples", func(d *decode.D) { + for i := 0; i < blockSize; i++ { + d.FieldS("sample", subframeSampleSize) + } + }) + } else { + d.FieldRawLen("samples", d.BitsLeft()) + } }) for i := 0; i < blockSize; i++ { @@ -565,6 +598,15 @@ func frameDecode(d *decode.D) any { } } + // for verbatim we already added samples above + if ffi.SampleDetails && subframeType != SubframeVerbatim { + d.FieldArray("samples", func(d *decode.D) { + for i := 0; i < len(samples); i++ { + d.FieldValueSint("sample", samples[i]) + } + }) + } + channelSamples = append(channelSamples, samples) }) } diff --git a/format/flac/testdata/frame.fqtest b/format/flac/testdata/frame.fqtest index bce15f296..4165f8ab9 100644 --- a/format/flac/testdata/frame.fqtest +++ b/format/flac/testdata/frame.fqtest @@ -29,13 +29,13 @@ $ fq '.frames[1] | tobytes | flac_frame | d' mono8.flac | | | [0]{}: partition | | | count: 2047 0x000| 04 3f | .? | rice_parameter: 0 -0x000| 3f ff ff ff ff ff ff| ?......| samples: raw bits +0x000| 3f ff ff ff ff ff ff| ?......| residuals: raw bits 0x010|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x196.1 (397) | | | | | [1]{}: partition | | | count: 2048 0x190| c1 | . | rice_parameter: 0 -0x190| c1 bb ff 39 99 32 4c 92 64 99| ...9.2L.d.| samples: raw bits +0x190| c1 bb ff 39 99 32 4c 92 64 99| ...9.2L.d.| residuals: raw bits 0x1a0|33 39 ff bb 6d 6d b6 df fe 66 66 4c 93 26 4c 99|39..mm...ffL.&L.| * |until 0x33d.7 (424) | | | | | byte_align: 0 (valid) diff --git a/format/flac/testdata/help_flac_frame.fqtest b/format/flac/testdata/help_flac_frame.fqtest index 566d1a5a2..ce17f7b95 100644 --- a/format/flac/testdata/help_flac_frame.fqtest +++ b/format/flac/testdata/help_flac_frame.fqtest @@ -4,7 +4,8 @@ flac_frame: FLAC frame decoder Options ======= - bits_per_sample=16 Bits per sample + bits_per_sample=16 Bits per sample + sample_details=false Decode more sample details like residuals etc Decode examples =============== @@ -14,7 +15,7 @@ Decode examples # Decode value as flac_frame ... | flac_frame # Decode file using flac_frame options - $ fq -d flac_frame -o bits_per_sample=16 . file + $ fq -d flac_frame -o bits_per_sample=16 -o sample_details=false . file # Decode value as flac_frame - ... | flac_frame({bits_per_sample:16}) + ... | flac_frame({bits_per_sample:16,sample_details:false}) diff --git a/format/flac/testdata/mono16.fqtest b/format/flac/testdata/mono16.fqtest index 38f3244d5..124e45ff7 100644 --- a/format/flac/testdata/mono16.fqtest +++ b/format/flac/testdata/mono16.fqtest @@ -98,97 +98,97 @@ $ fq -d flac dv mono16.flac | | | [0]{}: partition 0x2088.6-0x20a8.7 (32.1) | | | count: 253 0x2080| 10 3f | .? | rice_parameter: 0 0x2088.6-0x2089.2 (0.4) -0x2080| 3f ff ff ff ff ff ff| ?......| samples: raw bits 0x2089.2-0x20a8.7 (31.5) +0x2080| 3f ff ff ff ff ff ff| ?......| residuals: raw bits 0x2089.2-0x20a8.7 (31.5) 0x2090|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| 0x20a0|ff ff ff ff ff ff ff ff fe |......... | | | | [1]{}: partition 0x20a8.7-0x212c (131.1) | | | count: 256 0x20a0| fe 52 | .R | rice_parameter: 2 0x20a8.7-0x20a9.3 (0.4) -0x20a0| 52 49 24 92 49 24 92| RI$.I$.| samples: raw bits 0x20a9.3-0x212c (130.5) +0x20a0| 52 49 24 92 49 24 92| RI$.I$.| residuals: raw bits 0x20a9.3-0x212c (130.5) 0x20b0|49 24 92 49 24 92 49 24 92 49 24 92 49 24 92 40|I$.I$.I$.I$.I$.@| * |until 0x212b.7 (131) | | | | | [2]{}: partition 0x212c-0x2193.4 (103.4) | | | count: 256 0x2120| 11 | . | rice_parameter: 1 0x212c-0x212c.4 (0.4) -0x2120| 11 62 71 38| .bq8| samples: raw bits 0x212c.4-0x2193.4 (103) +0x2120| 11 62 71 38| .bq8| residuals: raw bits 0x212c.4-0x2193.4 (103) 0x2130|8d 7d f9 88 35 b1 84 37 3f 9f cc 9b 11 93 11 84|.}..5..7?.......| * |until 0x2193.3 (103) | | | | | [3]{}: partition 0x2193.4-0x21fd.1 (105.5) | | | count: 256 0x2190| f1 | . | rice_parameter: 1 0x2193.4-0x2194 (0.4) -0x2190| 5b 5a 64 d2 5a 49 45 0a 82 c8 89 88| [Zd.ZIE.....| samples: raw bits 0x2194-0x21fd.1 (105.1) +0x2190| 5b 5a 64 d2 5a 49 45 0a 82 c8 89 88| [Zd.ZIE.....| residuals: raw bits 0x2194-0x21fd.1 (105.1) 0x21a0|a4 4b 16 91 0c 27 11 ad 3f 43 59 a6 e3 a1 ce 8e|.K...'..?CY.....| * |until 0x21fd (106) | | | | | [4]{}: partition 0x21fd.1-0x2261.6 (100.5) | | | count: 256 0x21f0| 0a | . | rice_parameter: 1 0x21fd.1-0x21fd.5 (0.4) -0x21f0| 0a 61 69| .ai| samples: raw bits 0x21fd.5-0x2261.6 (100.1) +0x21f0| 0a 61 69| .ai| residuals: raw bits 0x21fd.5-0x2261.6 (100.1) 0x2200|84 69 46 91 ad de 6b 3b 34 7f a0 d4 fa f2 32 aa|.iF...k;4.....2.| * |until 0x2261.5 (101) | | | | | [5]{}: partition 0x2261.6-0x22cb.1 (105.3) | | | count: 256 0x2260| 8c 66 | .f | rice_parameter: 1 0x2261.6-0x2262.2 (0.4) -0x2260| 66 9a 32 f5 65 65 22 c9 16 24 a0 b1 62 4a| f.2.ee"..$..bJ| samples: raw bits 0x2262.2-0x22cb.1 (104.7) +0x2260| 66 9a 32 f5 65 65 22 c9 16 24 a0 b1 62 4a| f.2.ee"..$..bJ| residuals: raw bits 0x2262.2-0x22cb.1 (104.7) 0x2270|25 22 62 e8 9e 4e 43 21 88 cc 43 f8 e3 43 23 f9|%"b..NC!..C..C#.| * |until 0x22cb (105) | | | | | [6]{}: partition 0x22cb.1-0x2331 (101.7) | | | count: 256 0x22c0| 0a | . | rice_parameter: 1 0x22cb.1-0x22cb.5 (0.4) -0x22c0| 0a 2c 96 59 72| .,.Yr| samples: raw bits 0x22cb.5-0x2331 (101.3) +0x22c0| 0a 2c 96 59 72| .,.Yr| residuals: raw bits 0x22cb.5-0x2331 (101.3) 0x22d0|f5 a1 a4 34 69 ee 3b c6 47 a1 ac c4 6b 65 31 32|...4i.;.G...ke12| * |until 0x2330.7 (102) | | | | | [7]{}: partition 0x2331-0x239a.4 (105.4) | | | count: 256 0x2330| 1f | . | rice_parameter: 1 0x2331-0x2331.4 (0.4) -0x2330| 1f 9e 9e bc 9a 88 c5 13 12 51 16 24 90 98 4b| .........Q.$..K| samples: raw bits 0x2331.4-0x239a.4 (105) +0x2330| 1f 9e 9e bc 9a 88 c5 13 12 51 16 24 90 98 4b| .........Q.$..K| residuals: raw bits 0x2331.4-0x239a.4 (105) 0x2340|09 84 c2 31 62 71 38 8d 7d f9 88 35 b1 84 37 3f|...1bq8.}..5..7?| * |until 0x239a.3 (105) | | | | | [8]{}: partition 0x239a.4-0x2401.1 (102.5) | | | count: 256 0x2390| b1 | . | rice_parameter: 1 0x239a.4-0x239b (0.4) -0x2390| 14 52 49 30 99| .RI0.| samples: raw bits 0x239b-0x2401.1 (102.1) +0x2390| 14 52 49 30 99| .RI0.| residuals: raw bits 0x239b-0x2401.1 (102.1) 0x23a0|34 8c 4d 93 8d 6f 8e 7b b3 b7 6f 5b 5a 64 d2 5a|4.M..o.{..o[Zd.Z| * |until 0x2401 (103) | | | | | [9]{}: partition 0x2401.1-0x2467.6 (102.5) | | | count: 256 0x2400| 0b | . | rice_parameter: 1 0x2401.1-0x2401.5 (0.4) -0x2400| 0b f9 fc c9 b1 19 31 18 4e 22 d1 42 60 99 09| ......1.N".B`..| samples: raw bits 0x2401.5-0x2467.6 (102.1) +0x2400| 0b f9 fc c9 b1 19 31 18 4e 22 d1 42 60 99 09| ......1.N".B`..| residuals: raw bits 0x2401.5-0x2467.6 (102.1) 0x2410|30 26 2c 4b 12 61 69 84 69 46 91 ad de 6b 3b 34|0&,K.ai.iF...k;4| * |until 0x2467.5 (103) | | | | | [10]{}: partition 0x2467.6-0x24d1.4 (105.6) | | | count: 256 0x2460| 88 58 | .X | rice_parameter: 1 0x2467.6-0x2468.2 (0.4) -0x2460| 58 8a 44 b1 69 10 c2 71| X.D.i..q| samples: raw bits 0x2468.2-0x24d1.4 (105.2) +0x2460| 58 8a 44 b1 69 10 c2 71| X.D.i..q| residuals: raw bits 0x2468.2-0x24d1.4 (105.2) 0x2470|1a d3 f4 35 9a 6e 3a 1c e8 e6 9a 32 f5 65 65 22|...5.n:....2.ee"| * |until 0x24d1.3 (106) | | | | | [11]{}: partition 0x24d1.4-0x2535.4 (100) | | | count: 256 0x24d0| 31 | 1 | rice_parameter: 1 0x24d1.4-0x24d2 (0.4) -0x24d0| 47 fa 0d 4f af 23 2a a4 94 8a 44 b0 5a 12| G..O.#*...D.Z.| samples: raw bits 0x24d2-0x2535.4 (99.4) +0x24d0| 47 fa 0d 4f af 23 2a a4 94 8a 44 b0 5a 12| G..O.#*...D.Z.| residuals: raw bits 0x24d2-0x2535.4 (99.4) 0x24e0|60 4c 92 2c 96 59 72 f5 a1 a4 34 69 ee 3b c6 47|`L.,.Yr...4i.;.G| * |until 0x2535.3 (100) | | | | | [12]{}: partition 0x2535.4-0x259f (105.4) | | | count: 256 0x2530| a1 | . | rice_parameter: 1 0x2535.4-0x2536 (0.4) -0x2530| 0b 16 24 a2 52 26 2e 89 e4 e4| ..$.R&....| samples: raw bits 0x2536-0x259f (105) +0x2530| 0b 16 24 a2 52 26 2e 89 e4 e4| ..$.R&....| residuals: raw bits 0x2536-0x259f (105) 0x2540|32 18 8c c4 3f 8e 34 32 3f 9e 9e bc 9a 88 c5 13|2...?.42?.......| * |until 0x259e.7 (105) | | | | | [13]{}: partition 0x259f-0x2604.7 (101.7) | | | count: 256 0x2590| 13| .| rice_parameter: 1 0x259f-0x259f.4 (0.4) -0x2590| 13| .| samples: raw bits 0x259f.4-0x2604.7 (101.3) +0x2590| 13| .| residuals: raw bits 0x259f.4-0x2604.7 (101.3) 0x25a0|bc 64 7a 1a cc 46 b6 53 13 2b 22 d0 98 90 8c 16|.dz..F.S.+".....| * |until 0x2604.6 (102) | | | | | [14]{}: partition 0x2604.7-0x266f.2 (106.3) | | | count: 256 0x2600| 16 22 | ." | rice_parameter: 1 0x2604.7-0x2605.3 (0.4) -0x2600| 22 49 09 84 b0 98 4c 23 16 27 13| "I....L#.'.| samples: raw bits 0x2605.3-0x266f.2 (105.7) +0x2600| 22 49 09 84 b0 98 4c 23 16 27 13| "I....L#.'.| residuals: raw bits 0x2605.3-0x266f.2 (105.7) 0x2610|88 d7 df 98 83 5b 18 43 73 f9 fc c9 b1 19 31 18|.....[.Cs.....1.| * |until 0x266f.1 (106) | | | | | [15]{}: partition 0x266f.2-0x26d6 (102.6) | | | count: 256 0x2660| 84| .| rice_parameter: 1 0x266f.2-0x266f.6 (0.4) -0x2660| 84| .| samples: raw bits 0x266f.6-0x26d6 (102.2) +0x2660| 84| .| residuals: raw bits 0x266f.6-0x26d6 (102.2) 0x2670|e7 bb 3b 76 f5 b5 a6 4d 25 a4 94 50 a8 2c 88 98|..;v...M%..P.,..| * |until 0x26d5.7 (103) | | | | | byte_align: 0 (valid) 0x26d6-0x26d6 (0) @@ -222,194 +222,194 @@ $ fq -d flac dv mono16.flac | | | count: 128 0x26d0| 16| .| rice_parameter: 11 0x26df.6-0x26e0.2 (0.4) 0x26e0|eb |. | -0x26e0|eb d7 1e f8 27 e6 d2 56 ab 76 21 b7 0d e7 64 52|....'..V.v!...dR| samples: raw bits 0x26e0.2-0x27b8.3 (216.1) +0x26e0|eb d7 1e f8 27 e6 d2 56 ab 76 21 b7 0d e7 64 52|....'..V.v!...dR| residuals: raw bits 0x26e0.2-0x27b8.3 (216.1) 0x26f0|94 06 5a 79 90 e6 d6 9d 76 7d 78 88 d1 29 a2 7c|..Zy....v}x..).|| * |until 0x27b8.2 (217) | | | | | [1]{}: partition 0x27b8.3-0x2885.1 (204.6) | | | count: 128 0x27b0| d7 | . | rice_parameter: 11 0x27b8.3-0x27b8.7 (0.4) -0x27b0| d7 66 97 81 86 19 01 96| .f......| samples: raw bits 0x27b8.7-0x2885.1 (204.2) +0x27b0| d7 66 97 81 86 19 01 96| .f......| residuals: raw bits 0x27b8.7-0x2885.1 (204.2) 0x27c0|99 99 98 99 45 8c 58 11 72 96 09 4b 93 41 19 d0|....E.X.r..K.A..| * |until 0x2885 (205) | | | | | [2]{}: partition 0x2885.1-0x295d.7 (216.6) | | | count: 128 0x2880| 5f | _ | rice_parameter: 11 0x2885.1-0x2885.5 (0.4) -0x2880| 5f a8 22 e1 45 4b a2 68 e3 a6 08| _.".EK.h...| samples: raw bits 0x2885.5-0x295d.7 (216.2) +0x2880| 5f a8 22 e1 45 4b a2 68 e3 a6 08| _.".EK.h...| residuals: raw bits 0x2885.5-0x295d.7 (216.2) 0x2890|10 26 10 af 43 16 0d b0 3b e0 41 80 95 81 4d 42|.&..C...;.A...MB| * |until 0x295d.6 (217) | | | | | [3]{}: partition 0x295d.7-0x2a2d.2 (207.3) | | | count: 128 0x2950| bf 69 | .i | rice_parameter: 11 0x295d.7-0x295e.3 (0.4) -0x2950| 69 39| i9| samples: raw bits 0x295e.3-0x2a2d.2 (206.7) +0x2950| 69 39| i9| residuals: raw bits 0x295e.3-0x2a2d.2 (206.7) 0x2960|4f ba a6 d6 3e b8 75 e9 af fd 81 ec 03 5e ba e4|O...>.u......^..| * |until 0x2a2d.1 (207) | | | | | [4]{}: partition 0x2a2d.2-0x2b09.7 (220.5) | | | count: 128 0x2a20| 73 | s | rice_parameter: 12 0x2a2d.2-0x2a2d.6 (0.4) -0x2a20| 73 0c 79| s.y| samples: raw bits 0x2a2d.6-0x2b09.7 (220.1) +0x2a20| 73 0c 79| s.y| residuals: raw bits 0x2a2d.6-0x2b09.7 (220.1) 0x2a30|a3 d7 6f 0f fb 37 ef 74 15 51 b3 4c 2d 45 b5 69|..o..7.t.Q.L-E.i| * |until 0x2b09.6 (221) | | | | | [5]{}: partition 0x2b09.7-0x2c05.4 (251.5) | | | count: 128 0x2b00| 07 c5 | .. | rice_parameter: 14 0x2b09.7-0x2b0a.3 (0.4) -0x2b00| c5 c8 23 cc 14 1f| ..#...| samples: raw bits 0x2b0a.3-0x2c05.4 (251.1) +0x2b00| c5 c8 23 cc 14 1f| ..#...| residuals: raw bits 0x2b0a.3-0x2c05.4 (251.1) 0x2b10|e5 73 76 c8 16 0b be b9 37 95 5d 27 e8 97 36 eb|.sv.....7.]'..6.| * |until 0x2c05.3 (252) | | | | | [6]{}: partition 0x2c05.4-0x2d04.7 (255.3) | | | count: 128 0x2c00| ce | . | rice_parameter: 14 0x2c05.4-0x2c06 (0.4) -0x2c00| b1 82 ee 75 1d b8 e4 b3 41 a9| ...u....A.| samples: raw bits 0x2c06-0x2d04.7 (254.7) +0x2c00| b1 82 ee 75 1d b8 e4 b3 41 a9| ...u....A.| residuals: raw bits 0x2c06-0x2d04.7 (254.7) 0x2c10|19 65 cd d1 01 82 5c 3a 76 aa b9 29 77 ea 2f 51|.e....\:v..)w./Q| * |until 0x2d04.6 (255) | | | | | [7]{}: partition 0x2d04.7-0x2e03.5 (254.6) | | | count: 128 0x2d00| 17 c3 | .. | rice_parameter: 14 0x2d04.7-0x2d05.3 (0.4) -0x2d00| c3 28 43 b8 0a d3 7b dd 45 49 c9| .(C...{.EI.| samples: raw bits 0x2d05.3-0x2e03.5 (254.2) +0x2d00| c3 28 43 b8 0a d3 7b dd 45 49 c9| .(C...{.EI.| residuals: raw bits 0x2d05.3-0x2e03.5 (254.2) 0x2d10|0a 9d eb 91 f8 33 e4 62 1a 4e bd de 96 4f 45 af|.....3.b.N...OE.| * |until 0x2e03.4 (255) | | | | | [8]{}: partition 0x2e03.5-0x2f00.4 (252.7) | | | count: 128 0x2e00| 4f 4e | ON | rice_parameter: 14 0x2e03.5-0x2e04.1 (0.4) -0x2e00| 4e 12 8a 82 ea 82 61 e7 d5 fa 77 ab| N.....a...w.| samples: raw bits 0x2e04.1-0x2f00.4 (252.3) +0x2e00| 4e 12 8a 82 ea 82 61 e7 d5 fa 77 ab| N.....a...w.| residuals: raw bits 0x2e04.1-0x2f00.4 (252.3) 0x2e10|d7 7c bd 55 8f f0 52 29 db 56 58 a0 85 d1 5a a9|.|.U..R).VX...Z.| * |until 0x2f00.3 (253) | | | | | [9]{}: partition 0x2f00.4-0x2ffe.1 (253.5) | | | count: 128 0x2f00|7e |~ | rice_parameter: 14 0x2f00.4-0x2f01 (0.4) -0x2f00| e0 c4 f9 9e 64 84 4c 0b 9b 11 d7 02 0e c9 2e| ....d.L........| samples: raw bits 0x2f01-0x2ffe.1 (253.1) +0x2f00| e0 c4 f9 9e 64 84 4c 0b 9b 11 d7 02 0e c9 2e| ....d.L........| residuals: raw bits 0x2f01-0x2ffe.1 (253.1) 0x2f10|ab ed 71 29 a5 b0 55 40 6c f4 7d 74 aa 30 49 21|..q)..U@l.}t.0I!| * |until 0x2ffe (254) | | | | | [10]{}: partition 0x2ffe.1-0x30fd.6 (255.5) | | | count: 128 0x2ff0| 73 | s | rice_parameter: 14 0x2ffe.1-0x2ffe.5 (0.4) -0x2ff0| 73 c5| s.| samples: raw bits 0x2ffe.5-0x30fd.6 (255.1) +0x2ff0| 73 c5| s.| residuals: raw bits 0x2ffe.5-0x30fd.6 (255.1) 0x3000|02 76 bd e2 d4 e9 82 2f b4 5d bb d9 86 52 2e 11|.v...../.]...R..| * |until 0x30fd.5 (256) | | | | | [11]{}: partition 0x30fd.6-0x31fb.4 (253.6) | | | count: 128 0x30f0| cb 93 | .. | rice_parameter: 14 0x30fd.6-0x30fe.2 (0.4) -0x30f0| 93 e8| ..| samples: raw bits 0x30fe.2-0x31fb.4 (253.2) +0x30f0| 93 e8| ..| residuals: raw bits 0x30fe.2-0x31fb.4 (253.2) 0x3100|ee f1 c4 39 30 1e 8b 73 87 3b a3 5d 6b aa a3 e5|...90..s.;.]k...| * |until 0x31fb.3 (254) | | | | | [12]{}: partition 0x31fb.4-0x32fb.3 (255.7) | | | count: 128 0x31f0| ce | . | rice_parameter: 14 0x31fb.4-0x31fc (0.4) -0x31f0| 8f ba c7 ae| ....| samples: raw bits 0x31fc-0x32fb.3 (255.3) +0x31f0| 8f ba c7 ae| ....| residuals: raw bits 0x31fc-0x32fb.3 (255.3) 0x3200|fa 41 5a 69 d7 95 e0 f1 a6 db 88 ac f2 89 c0 8e|.AZi............| * |until 0x32fb.2 (256) | | | | | [13]{}: partition 0x32fb.3-0x33f8.6 (253.3) | | | count: 128 0x32f0| 5d | ] | rice_parameter: 14 0x32fb.3-0x32fb.7 (0.4) -0x32f0| 5d 5d 1c 8f 7d| ]]..}| samples: raw bits 0x32fb.7-0x33f8.6 (252.7) +0x32f0| 5d 5d 1c 8f 7d| ]]..}| residuals: raw bits 0x32fb.7-0x33f8.6 (252.7) 0x3300|91 54 e5 61 28 63 32 a4 c5 13 53 60 dd af 51 84|.T.a(c2...S`..Q.| * |until 0x33f8.5 (253) | | | | | [14]{}: partition 0x33f8.6-0x34f6.6 (254) | | | count: 128 0x33f0| 4f 95 | O. | rice_parameter: 14 0x33f8.6-0x33f9.2 (0.4) -0x33f0| 95 28 8e d0 0b 96 0c| .(.....| samples: raw bits 0x33f9.2-0x34f6.6 (253.4) +0x33f0| 95 28 8e d0 0b 96 0c| .(.....| residuals: raw bits 0x33f9.2-0x34f6.6 (253.4) 0x3400|ec ca e2 c6 5b 7b c8 89 61 b9 b1 c6 f5 b4 45 63|....[{..a.....Ec| * |until 0x34f6.5 (254) | | | | | [15]{}: partition 0x34f6.6-0x35f4.6 (254) | | | count: 128 0x34f0| a3 b2 | .. | rice_parameter: 14 0x34f6.6-0x34f7.2 (0.4) -0x34f0| b2 9c b5 9e 21 54 a6 d3 54| ....!T..T| samples: raw bits 0x34f7.2-0x35f4.6 (253.4) +0x34f0| b2 9c b5 9e 21 54 a6 d3 54| ....!T..T| residuals: raw bits 0x34f7.2-0x35f4.6 (253.4) 0x3500|1c 1a a2 d1 89 e8 ac 1e 23 df fd 13 86 89 19 07|........#.......| * |until 0x35f4.5 (254) | | | | | [16]{}: partition 0x35f4.6-0x36f1.7 (253.1) | | | count: 128 0x35f0| f3 97 | .. | rice_parameter: 14 0x35f4.6-0x35f5.2 (0.4) -0x35f0| 97 7f eb f2 c8 3a 34 77 15 e0 95| .....:4w...| samples: raw bits 0x35f5.2-0x36f1.7 (252.5) +0x35f0| 97 7f eb f2 c8 3a 34 77 15 e0 95| .....:4w...| residuals: raw bits 0x35f5.2-0x36f1.7 (252.5) 0x3600|c5 9d 0b 2b a3 be f4 ca d8 d8 e4 bf 2d 8e 2c 8d|...+........-.,.| * |until 0x36f1.6 (253) | | | | | [17]{}: partition 0x36f1.7-0x37ef.7 (254) | | | count: 128 0x36f0| 17 c4 | .. | rice_parameter: 14 0x36f1.7-0x36f2.3 (0.4) -0x36f0| c4 53 98 12 28 eb 96 da 32 18 a5 89 c1 59| .S..(...2....Y| samples: raw bits 0x36f2.3-0x37ef.7 (253.4) +0x36f0| c4 53 98 12 28 eb 96 da 32 18 a5 89 c1 59| .S..(...2....Y| residuals: raw bits 0x36f2.3-0x37ef.7 (253.4) 0x3700|f8 ba 75 a7 38 30 de 16 36 c3 7a 6c 9a a0 4e fe|..u.80..6.zl..N.| * |until 0x37ef.6 (254) | | | | | [18]{}: partition 0x37ef.7-0x38ee.7 (255) | | | count: 128 0x37e0| 27| '| rice_parameter: 14 0x37ef.7-0x37f0.3 (0.4) 0x37f0|ce |. | -0x37f0|ce 0d 92 32 c5 a5 3c 9a 0c 79 79 0d f8 49 a1 35|...2..<..yy..I.5| samples: raw bits 0x37f0.3-0x38ee.7 (254.4) +0x37f0|ce 0d 92 32 c5 a5 3c 9a 0c 79 79 0d f8 49 a1 35|...2..<..yy..I.5| residuals: raw bits 0x37f0.3-0x38ee.7 (254.4) 0x3800|c4 b4 1e 1c e3 67 93 54 70 79 0d d2 92 81 e2 5c|.....g.Tpy.....\| * |until 0x38ee.6 (255) | | | | | [19]{}: partition 0x38ee.7-0x39ee.1 (255.2) | | | count: 128 0x38e0| 37 c8| 7.| rice_parameter: 14 0x38ee.7-0x38ef.3 (0.4) -0x38e0| c8| .| samples: raw bits 0x38ef.3-0x39ee.1 (254.6) +0x38e0| c8| .| residuals: raw bits 0x38ef.3-0x39ee.1 (254.6) 0x38f0|92 e2 93 21 63 b8 48 ce e9 d5 77 7e 23 45 00 a3|...!c.H...w~#E..| * |until 0x39ee (255) | | | | | [20]{}: partition 0x39ee.1-0x3aee.1 (256) | | | count: 128 0x39e0| f6 | . | rice_parameter: 14 0x39ee.1-0x39ee.5 (0.4) -0x39e0| f6 77| .w| samples: raw bits 0x39ee.5-0x3aee.1 (255.4) +0x39e0| f6 77| .w| residuals: raw bits 0x39ee.5-0x3aee.1 (255.4) 0x39f0|15 53 04 8b 73 c6 cc ce 17 c9 89 22 d9 d0 d2 24|.S..s......"...$| * |until 0x3aee (256) | | | | | [21]{}: partition 0x3aee.1-0x3bee.4 (256.3) | | | count: 128 0x3ae0| f6 | . | rice_parameter: 14 0x3aee.1-0x3aee.5 (0.4) -0x3ae0| f6 ef| ..| samples: raw bits 0x3aee.5-0x3bee.4 (255.7) +0x3ae0| f6 ef| ..| residuals: raw bits 0x3aee.5-0x3bee.4 (255.7) 0x3af0|e5 97 68 bd 11 9c 4b 2c 4a 3d 47 03 fa 93 62 14|..h...K,J=G...b.| * |until 0x3bee.3 (256) | | | | | [22]{}: partition 0x3bee.4-0x3ced.4 (255) | | | count: 128 0x3be0| 5e | ^ | rice_parameter: 14 0x3bee.4-0x3bef (0.4) -0x3be0| 9a| .| samples: raw bits 0x3bef-0x3ced.4 (254.4) +0x3be0| 9a| .| residuals: raw bits 0x3bef-0x3ced.4 (254.4) 0x3bf0|be c7 01 ee 60 a4 2f 16 e9 69 a4 e9 35 53 14 bd|....`./..i..5S..| * |until 0x3ced.3 (255) | | | | | [23]{}: partition 0x3ced.4-0x3deb.2 (253.6) | | | count: 128 0x3ce0| 3e | > | rice_parameter: 14 0x3ced.4-0x3cee (0.4) -0x3ce0| e8 c8| ..| samples: raw bits 0x3cee-0x3deb.2 (253.2) +0x3ce0| e8 c8| ..| residuals: raw bits 0x3cee-0x3deb.2 (253.2) 0x3cf0|70 e0 4f 83 32 0a 3d 8a a5 fc f9 99 21 75 c9 1c|p.O.2.=.....!u..| * |until 0x3deb.1 (254) | | | | | [24]{}: partition 0x3deb.2-0x3eea.3 (255.1) | | | count: 128 0x3de0| fb | . | rice_parameter: 14 0x3deb.2-0x3deb.6 (0.4) -0x3de0| fb be 7e 4c 67| ..~Lg| samples: raw bits 0x3deb.6-0x3eea.3 (254.5) +0x3de0| fb be 7e 4c 67| ..~Lg| residuals: raw bits 0x3deb.6-0x3eea.3 (254.5) 0x3df0|27 62 b2 19 86 dd 76 14 b5 7c 43 21 18 da c4 01|'b....v..|C!....| * |until 0x3eea.2 (255) | | | | | [25]{}: partition 0x3eea.3-0x3fe7.7 (253.4) | | | count: 128 0x3ee0| bd | . | rice_parameter: 14 0x3eea.3-0x3eea.7 (0.4) -0x3ee0| bd 06 86 04 a6 1a| ......| samples: raw bits 0x3eea.7-0x3fe7.7 (253) +0x3ee0| bd 06 86 04 a6 1a| ......| residuals: raw bits 0x3eea.7-0x3fe7.7 (253) 0x3ef0|95 0a 5a e3 a5 ab 52 f0 54 51 29 a6 64 72 3e b1|..Z...R.TQ).dr>.| * |until 0x3fe7.6 (253) | | | | | [26]{}: partition 0x3fe7.7-0x40e5.4 (253.5) | | | count: 128 0x3fe0| c1 c6 | .. | rice_parameter: 14 0x3fe7.7-0x3fe8.3 (0.4) -0x3fe0| c6 90 18 6c ca 4b 6d e7| ...l.Km.| samples: raw bits 0x3fe8.3-0x40e5.4 (253.1) +0x3fe0| c6 90 18 6c ca 4b 6d e7| ...l.Km.| residuals: raw bits 0x3fe8.3-0x40e5.4 (253.1) 0x3ff0|22 fd ab dd e4 c7 37 6d 9b fc e2 5b 4b f8 b2 10|".....7m...[K...| * |until 0x40e5.3 (254) | | | | | [27]{}: partition 0x40e5.4-0x41e4.3 (254.7) | | | count: 128 0x40e0| 5e | ^ | rice_parameter: 14 0x40e5.4-0x40e6 (0.4) -0x40e0| 81 af dd 83 f9 8c f0 c1 2d 7a| ........-z| samples: raw bits 0x40e6-0x41e4.3 (254.3) +0x40e0| 81 af dd 83 f9 8c f0 c1 2d 7a| ........-z| residuals: raw bits 0x40e6-0x41e4.3 (254.3) 0x40f0|1e f3 e8 9c 8d 81 70 21 26 31 1e 80 ec a6 d0 e6|......p!&1......| * |until 0x41e4.2 (255) | | | | | [28]{}: partition 0x41e4.3-0x42e3.3 (255) | | | count: 128 0x41e0| 7d | } | rice_parameter: 14 0x41e4.3-0x41e4.7 (0.4) -0x41e0| 7d d2 2d b6 06 2c de 62 4e 04 cb 9a| }.-..,.bN...| samples: raw bits 0x41e4.7-0x42e3.3 (254.4) +0x41e0| 7d d2 2d b6 06 2c de 62 4e 04 cb 9a| }.-..,.bN...| residuals: raw bits 0x41e4.7-0x42e3.3 (254.4) 0x41f0|da f7 0c 3b 84 dc b2 e9 8c 4a 31 c0 cf 7e b1 70|...;.....J1..~.p| * |until 0x42e3.2 (255) | | | | | [29]{}: partition 0x42e3.3-0x43e3.4 (256.1) | | | count: 128 0x42e0| 7d | } | rice_parameter: 14 0x42e3.3-0x42e3.7 (0.4) -0x42e0| 7d d3 81 c6 21 49 0a f8 8e 73 e4 ba b1| }...!I...s...| samples: raw bits 0x42e3.7-0x43e3.4 (255.5) +0x42e0| 7d d3 81 c6 21 49 0a f8 8e 73 e4 ba b1| }...!I...s...| residuals: raw bits 0x42e3.7-0x43e3.4 (255.5) 0x42f0|58 a0 c1 2a 8c ab 7e f8 fc 8a c9 52 67 6e 45 ee|X..*..~....RgnE.| * |until 0x43e3.3 (256) | | | | | [30]{}: partition 0x43e3.4-0x44e3.2 (255.6) | | | count: 128 0x43e0| ee | . | rice_parameter: 14 0x43e3.4-0x43e4 (0.4) -0x43e0| 8f 48 26 d2 cb 12 56 77 44 20 1a 80| .H&...VwD ..| samples: raw bits 0x43e4-0x44e3.2 (255.2) +0x43e0| 8f 48 26 d2 cb 12 56 77 44 20 1a 80| .H&...VwD ..| residuals: raw bits 0x43e4-0x44e3.2 (255.2) 0x43f0|f1 f2 6b 6b 52 15 e0 a4 88 57 23 b4 c3 ce 2e 5f|..kkR....W#...._| * |until 0x44e3.1 (256) | | | | | [31]{}: partition 0x44e3.2-0x45e0.7 (253.5) | | | count: 128 0x44e0| 3a | : | rice_parameter: 14 0x44e3.2-0x44e3.6 (0.4) -0x44e0| 3a be fc 2d 0f 07 f7 b3 be 0e 4f 56 48| :..-......OVH| samples: raw bits 0x44e3.6-0x45e0.7 (253.1) +0x44e0| 3a be fc 2d 0f 07 f7 b3 be 0e 4f 56 48| :..-......OVH| residuals: raw bits 0x44e3.6-0x45e0.7 (253.1) 0x44f0|aa a9 11 51 18 8b b1 10 64 b0 c5 d6 55 36 61 d0|...Q....d...U6a.| * |until 0x45e0.6 (254) | | 0x45e0|a4 |. | byte_align: 0 (valid) 0x45e0.7-0x45e1 (0.1) @@ -443,25 +443,25 @@ $ fq -d flac dv mono16.flac | | | [0]{}: partition 0x45ec.6-0x4e0e.4 (2081.6) | | | count: 1023 0x45e0| 0b ad | .. | rice_parameter: 14 0x45ec.6-0x45ed.2 (0.4) -0x45e0| ad 41 1b| .A.| samples: raw bits 0x45ed.2-0x4e0e.4 (2081.2) +0x45e0| ad 41 1b| .A.| residuals: raw bits 0x45ed.2-0x4e0e.4 (2081.2) 0x45f0|67 02 2d 4a 0b 4a ea c7 81 2b 98 2c f4 90 ea c4|g.-J.J...+.,....| * |until 0x4e0e.3 (2082) | | | | | [1]{}: partition 0x4e0e.4-0x52ad (1182.4) | | | count: 1024 0x4e00| c7 | . | rice_parameter: 7 0x4e0e.4-0x4e0f (0.4) -0x4e00| 29| )| samples: raw bits 0x4e0f-0x52ad (1182) +0x4e00| 29| )| residuals: raw bits 0x4e0f-0x52ad (1182) 0x4e10|89 47 f3 99 9c b4 4b 7d 70 60 51 43 4c db e9 f7|.G....K}p`QCL...| * |until 0x52ac.7 (1182) | | | | | [2]{}: partition 0x52ad-0x574b.3 (1182.3) | | | count: 1024 0x52a0| 73 | s | rice_parameter: 7 0x52ad-0x52ad.4 (0.4) -0x52a0| 73 48 ca| sH.| samples: raw bits 0x52ad.4-0x574b.3 (1181.7) +0x52a0| 73 48 ca| sH.| residuals: raw bits 0x52ad.4-0x574b.3 (1181.7) 0x52b0|2f 8b 02 78 8e 7d 39 19 4b 44 c7 e7 16 25 34 44|/..x.}9.KD...%4D| * |until 0x574b.2 (1182) | | | | | [3]{}: partition 0x574b.3-0x5be9.7 (1182.4) | | | count: 1024 0x5740| 4e | N | rice_parameter: 7 0x574b.3-0x574b.7 (0.4) -0x5740| 4e 60 18 86 11| N`...| samples: raw bits 0x574b.7-0x5be9.7 (1182) +0x5740| 4e 60 18 86 11| N`...| residuals: raw bits 0x574b.7-0x5be9.7 (1182) 0x5750|88 60 17 45 81 48 4c 10 cf 47 23 31 68 9a 40 73|.`.E.HL..G#1h.@s| * |until 0x5be9.6 (1182) | | 0x5be0| e8 | . | byte_align: 0 (valid) 0x5be9.7-0x5bea (0.1) @@ -499,97 +499,97 @@ $ fq -d flac dv mono16.flac | | | [0]{}: partition 0x5bf8.3-0x5d9d (420.5) | | | count: 255 0x5bf0| 96 | . | rice_parameter: 11 0x5bf8.3-0x5bf8.7 (0.4) -0x5bf0| 96 e1 16 7a af 4d 54 a9| ...z.MT.| samples: raw bits 0x5bf8.7-0x5d9d (420.1) +0x5bf0| 96 e1 16 7a af 4d 54 a9| ...z.MT.| residuals: raw bits 0x5bf8.7-0x5d9d (420.1) 0x5c00|71 41 df 82 ee 6e 4d db 6d 24 c9 6c 10 c6 d4 e3|qA...nM.m$.l....| * |until 0x5d9c.7 (421) | | | | | [1]{}: partition 0x5d9d-0x5f3c (415) | | | count: 256 0x5d90| ba | . | rice_parameter: 11 0x5d9d-0x5d9d.4 (0.4) -0x5d90| ba 07 b0| ...| samples: raw bits 0x5d9d.4-0x5f3c (414.4) +0x5d90| ba 07 b0| ...| residuals: raw bits 0x5d9d.4-0x5f3c (414.4) 0x5da0|7c 17 d3 1e 57 f8 74 5f a7 ed 66 ec 73 6d 5b b7||...W.t_..f.sm[.| * |until 0x5f3b.7 (415) | | | | | [2]{}: partition 0x5f3c-0x60e7.1 (427.1) | | | count: 256 0x5f30| ba | . | rice_parameter: 11 0x5f3c-0x5f3c.4 (0.4) -0x5f30| ba 26 b2 ec| .&..| samples: raw bits 0x5f3c.4-0x60e7.1 (426.5) +0x5f30| ba 26 b2 ec| .&..| residuals: raw bits 0x5f3c.4-0x60e7.1 (426.5) 0x5f40|4c d7 ce b4 ff a4 a7 2a 91 80 0d 5a 75 d1 02 c4|L......*...Zu...| * |until 0x60e7 (427) | | | | | [3]{}: partition 0x60e7.1-0x6288.5 (417.4) | | | count: 256 0x60e0| 59 | Y | rice_parameter: 11 0x60e7.1-0x60e7.5 (0.4) -0x60e0| 59 1a 4f d4 76 23 67 98 d0| Y.O.v#g..| samples: raw bits 0x60e7.5-0x6288.5 (417) +0x60e0| 59 1a 4f d4 76 23 67 98 d0| Y.O.v#g..| residuals: raw bits 0x60e7.5-0x6288.5 (417) 0x60f0|b2 64 eb 21 f3 c6 36 cb 12 2b 72 5c a0 3a 53 ea|.d.!..6..+r\.:S.| * |until 0x6288.4 (417) | | | | | [4]{}: partition 0x6288.5-0x643d.6 (437.1) | | | count: 256 0x6280| de 38 | .8 | rice_parameter: 12 0x6288.5-0x6289.1 (0.4) -0x6280| 38 1e da 5b 4d ec bf| 8..[M..| samples: raw bits 0x6289.1-0x643d.6 (436.5) +0x6280| 38 1e da 5b 4d ec bf| 8..[M..| residuals: raw bits 0x6289.1-0x643d.6 (436.5) 0x6290|b0 f6 bb 3a c8 6a 88 a7 aa 94 7a 28 bf f5 f5 2f|...:.j....z(.../| * |until 0x643d.5 (437) | | | | | [5]{}: partition 0x643d.6-0x6631.6 (500) | | | count: 256 0x6430| cb b6 | .. | rice_parameter: 14 0x643d.6-0x643e.2 (0.4) -0x6430| b6 e5| ..| samples: raw bits 0x643e.2-0x6631.6 (499.4) +0x6430| b6 e5| ..| residuals: raw bits 0x643e.2-0x6631.6 (499.4) 0x6440|72 bd 56 f1 6f 32 b7 51 80 9d 94 0f 65 bb ae e3|r.V.o2.Q....e...| * |until 0x6631.5 (500) | | | | | [6]{}: partition 0x6631.6-0x681e.5 (492.7) | | | count: 256 0x6630| c3 5e | .^ | rice_parameter: 13 0x6631.6-0x6632.2 (0.4) -0x6630| 5e 78 b7 72 64 d8 26 8a 96 a4 e7 4a 75 73| ^x.rd.&....Jus| samples: raw bits 0x6632.2-0x681e.5 (492.3) +0x6630| 5e 78 b7 72 64 d8 26 8a 96 a4 e7 4a 75 73| ^x.rd.&....Jus| residuals: raw bits 0x6632.2-0x681e.5 (492.3) 0x6640|cf f0 93 79 11 e9 b5 7e 93 bb f3 12 30 1f 46 1c|...y...~....0.F.| * |until 0x681e.4 (493) | | | | | [7]{}: partition 0x681e.5-0x6a0f.1 (496.4) | | | count: 256 0x6810| 7e b1| ~.| rice_parameter: 13 0x681e.5-0x681f.1 (0.4) -0x6810| b1| .| samples: raw bits 0x681f.1-0x6a0f.1 (496) +0x6810| b1| .| residuals: raw bits 0x681f.1-0x6a0f.1 (496) 0x6820|00 16 7d 14 06 04 59 c3 1c 1c 3f 05 5d 45 46 52|..}...Y...?.]EFR| * |until 0x6a0f (496) | | | | | [8]{}: partition 0x6a0f.1-0x6c01.6 (498.5) | | | count: 256 0x6a00| f5| .| rice_parameter: 14 0x6a0f.1-0x6a0f.5 (0.4) -0x6a00| f5| .| samples: raw bits 0x6a0f.5-0x6c01.6 (498.1) +0x6a00| f5| .| residuals: raw bits 0x6a0f.5-0x6c01.6 (498.1) 0x6a10|da 14 31 dd 19 f9 d5 90 8e 32 33 24 c9 c0 c5 6f|..1......23$...o| * |until 0x6c01.5 (499) | | | | | [9]{}: partition 0x6c01.6-0x6df3.3 (497.5) | | | count: 256 0x6c00| 17 a8 | .. | rice_parameter: 14 0x6c01.6-0x6c02.2 (0.4) -0x6c00| a8 05 37 26 6f cf ae 1b dd 7f 96 9b 1b 33| ..7&o........3| samples: raw bits 0x6c02.2-0x6df3.3 (497.1) +0x6c00| a8 05 37 26 6f cf ae 1b dd 7f 96 9b 1b 33| ..7&o........3| residuals: raw bits 0x6c02.2-0x6df3.3 (497.1) 0x6c10|df e3 ba 04 95 f6 82 17 58 58 06 72 11 7d 4e 58|........XX.r.}NX| * |until 0x6df3.2 (498) | | | | | [10]{}: partition 0x6df3.3-0x6fe5.6 (498.3) | | | count: 256 0x6df0| 1c | . | rice_parameter: 14 0x6df3.3-0x6df3.7 (0.4) -0x6df0| 1c 8d ce eb 01 fb f2 1c 62 62 25 99 c5| ........bb%..| samples: raw bits 0x6df3.7-0x6fe5.6 (497.7) +0x6df0| 1c 8d ce eb 01 fb f2 1c 62 62 25 99 c5| ........bb%..| residuals: raw bits 0x6df3.7-0x6fe5.6 (497.7) 0x6e00|e2 77 90 04 e0 c4 62 7b 03 93 4a a2 af ef 1a e6|.w....b{..J.....| * |until 0x6fe5.5 (498) | | | | | [11]{}: partition 0x6fe5.6-0x71d7.6 (498) | | | count: 256 0x6fe0| eb 96 | .. | rice_parameter: 14 0x6fe5.6-0x6fe6.2 (0.4) -0x6fe0| 96 ef b9 6e 13 94 e1 d2 b4 56| ...n.....V| samples: raw bits 0x6fe6.2-0x71d7.6 (497.4) +0x6fe0| 96 ef b9 6e 13 94 e1 d2 b4 56| ...n.....V| residuals: raw bits 0x6fe6.2-0x71d7.6 (497.4) 0x6ff0|33 41 60 3d 6a d1 73 fc fc 02 8f 22 81 b7 50 75|3A`=j.s...."..Pu| * |until 0x71d7.5 (498) | | | | | [12]{}: partition 0x71d7.6-0x73ca (498.2) | | | count: 256 0x71d0| 5b b5 | [. | rice_parameter: 14 0x71d7.6-0x71d8.2 (0.4) -0x71d0| b5 7c 22 b5 a0 2b 12 d6| .|"..+..| samples: raw bits 0x71d8.2-0x73ca (497.6) +0x71d0| b5 7c 22 b5 a0 2b 12 d6| .|"..+..| residuals: raw bits 0x71d8.2-0x73ca (497.6) 0x71e0|50 80 f8 ca 20 57 69 22 9a db c4 a6 cb 87 6d fa|P... Wi"......m.| * |until 0x73c9.7 (498) | | | | | [13]{}: partition 0x73ca-0x75ba.1 (496.1) | | | count: 256 0x73c0| d6 | . | rice_parameter: 13 0x73ca-0x73ca.4 (0.4) -0x73c0| d6 16 75 22 37 5b| ..u"7[| samples: raw bits 0x73ca.4-0x75ba.1 (495.5) +0x73c0| d6 16 75 22 37 5b| ..u"7[| residuals: raw bits 0x73ca.4-0x75ba.1 (495.5) 0x73d0|79 b6 21 47 3e 8c 18 4b 9d 99 ae a0 e3 58 4b e0|y.!G>..K.....XK.| * |until 0x75ba (496) | | | | | [14]{}: partition 0x75ba.1-0x77ac.5 (498.4) | | | count: 256 0x75b0| 77 | w | rice_parameter: 14 0x75ba.1-0x75ba.5 (0.4) -0x75b0| 77 ff 89 99 5d 95| w...].| samples: raw bits 0x75ba.5-0x77ac.5 (498) +0x75b0| 77 ff 89 99 5d 95| w...].| residuals: raw bits 0x75ba.5-0x77ac.5 (498) 0x75c0|6c 5f 65 b8 4f 16 98 52 e3 61 83 8a 20 d7 7e 8d|l_e.O..R.a.. .~.| * |until 0x77ac.4 (498) | | | | | [15]{}: partition 0x77ac.5-0x799f.1 (498.4) | | | count: 256 0x77a0| f7 5d | .] | rice_parameter: 14 0x77ac.5-0x77ad.1 (0.4) -0x77a0| 5d 85 ca| ]..| samples: raw bits 0x77ad.1-0x799f.1 (498) +0x77a0| 5d 85 ca| ]..| residuals: raw bits 0x77ad.1-0x799f.1 (498) 0x77b0|e4 d8 9f 77 0e de 67 77 5c 69 6c 98 eb c5 4d 68|...w..gw\il...Mh| * |until 0x799f (498) | | 0x7990| 00| .| byte_align: 0 (valid) 0x799f.1-0x79a0 (0.7) @@ -623,7 +623,7 @@ $ fq -d flac dv mono16.flac | | | [0]{}: partition 0x79ab.6-0x8596 (3050.2) | | | count: 1570 0x79a0| 03 4b | .K | rice_parameter: 13 0x79ab.6-0x79ac.2 (0.4) -0x79a0| 4b 7e 8d 4a| K~.J| samples: raw bits 0x79ac.2-0x8596 (3049.6) +0x79a0| 4b 7e 8d 4a| K~.J| residuals: raw bits 0x79ac.2-0x8596 (3049.6) 0x79b0|82 2d e2 77 61 1d 29 73 5a 34 d1 50 25 c5 49 94|.-.wa.)sZ4.P%.I.| * |until 0x8595.7 (3050) | | | | | byte_align: 0 (valid) 0x8596-0x8596 (0) diff --git a/format/flac/testdata/mono24.fqtest b/format/flac/testdata/mono24.fqtest index 6223182d5..349fba20a 100644 --- a/format/flac/testdata/mono24.fqtest +++ b/format/flac/testdata/mono24.fqtest @@ -105,192 +105,192 @@ $ fq -d flac dv mono24.flac | | | [0]{}: partition 0x20b7-0x20c7.1 (16.1) | | | count: 125 0x20b0| 0f | . | rice_parameter: 0 0x20b7-0x20b7.4 (0.4) -0x20b0| 0f ff ff ff ff ff ff ff ff| .........| samples: raw bits 0x20b7.4-0x20c7.1 (15.5) +0x20b0| 0f ff ff ff ff ff ff ff ff| .........| residuals: raw bits 0x20b7.4-0x20c7.1 (15.5) 0x20c0|ff ff ff ff ff ff ff 87 |........ | | | | [1]{}: partition 0x20c7.1-0x20d7.5 (16.4) | | | count: 128 0x20c0| 87 | . | rice_parameter: 0 0x20c7.1-0x20c7.5 (0.4) -0x20c0| 87 ff ff ff ff ff ff ff ff| .........| samples: raw bits 0x20c7.5-0x20d7.5 (16) +0x20c0| 87 ff ff ff ff ff ff ff ff| .........| residuals: raw bits 0x20c7.5-0x20d7.5 (16) 0x20d0|ff ff ff ff ff ff ff f9 |........ | | | | [2]{}: partition 0x20d7.5-0x2133 (91.3) | | | count: 128 0x20d0| f9 c4 | .. | rice_parameter: 3 0x20d7.5-0x20d8.1 (0.4) -0x20d0| c4 44 44 44 44 44 44 44| .DDDDDDD| samples: raw bits 0x20d8.1-0x2133 (90.7) +0x20d0| c4 44 44 44 44 44 44 44| .DDDDDDD| residuals: raw bits 0x20d8.1-0x2133 (90.7) 0x20e0|44 44 44 44 44 44 44 44 44 44 44 44 44 44 44 44|DDDDDDDDDDDDDDDD| * |until 0x2132.7 (91) | | | | | [3]{}: partition 0x2133-0x216f.5 (60.5) | | | count: 128 0x2130| 23 | # | rice_parameter: 2 0x2133-0x2133.4 (0.4) -0x2130| 23 c5 57 8a ab fb e7 ab 6c f6 cd 2e 49| #.W.....l...I| samples: raw bits 0x2133.4-0x216f.5 (60.1) +0x2130| 23 c5 57 8a ab fb e7 ab 6c f6 cd 2e 49| #.W.....l...I| residuals: raw bits 0x2133.4-0x216f.5 (60.1) 0x2140|b2 13 9a 12 1b 13 32 11 33 32 24 64 d1 94 cb b2|......2.32$d....| * |until 0x216f.4 (61) | | | | | [4]{}: partition 0x216f.5-0x21a9.2 (57.5) | | | count: 128 0x2160| a1| .| rice_parameter: 2 0x216f.5-0x2170.1 (0.4) 0x2170|24 |$ | -0x2170|24 6e 92 7d 3d bf c7 f0 b7 a9 50 ab 5e be 7f e2|$n.}=.....P.^...| samples: raw bits 0x2170.1-0x21a9.2 (57.1) +0x2170|24 6e 92 7d 3d bf c7 f0 b7 a9 50 ab 5e be 7f e2|$n.}=.....P.^...| residuals: raw bits 0x2170.1-0x21a9.2 (57.1) 0x2180|ea |. | * |until 0x21a9.1 (58) | | | | | [5]{}: partition 0x21a9.2-0x21e3.1 (57.7) | | | count: 128 0x21a0| 8b | . | rice_parameter: 2 0x21a9.2-0x21a9.6 (0.4) -0x21a0| 8b 13 21 11 18 94 48| ..!...H| samples: raw bits 0x21a9.6-0x21e3.1 (57.3) +0x21a0| 8b 13 21 11 18 94 48| ..!...H| residuals: raw bits 0x21a9.6-0x21e3.1 (57.3) 0x21b0|c8 db 12 e4 da cd 3c 9f db d7 c3 e2 c3 e7 5e f8|......<.......^.| * |until 0x21e3 (58) | | | | | [6]{}: partition 0x21e3.1-0x221e.6 (59.5) | | | count: 128 0x21e0| 95 | . | rice_parameter: 2 0x21e3.1-0x21e3.5 (0.4) -0x21e0| 95 cf 27 4b 29 2e cd c6 e4 c4 d8 c9 8c| ..'K)........| samples: raw bits 0x21e3.5-0x221e.6 (59.1) +0x21e0| 95 cf 27 4b 29 2e cd c6 e4 c4 d8 c9 8c| ..'K)........| residuals: raw bits 0x21e3.5-0x221e.6 (59.1) 0x21f0|90 c9 0d 9b 89 63 27 8c a8 a8 ec 58 b8 bf 1e 2a|.....c'....X...*| * |until 0x221e.5 (60) | | | | | [7]{}: partition 0x221e.6-0x225a.7 (60.1) | | | count: 128 0x2210| 90 8a| ..| rice_parameter: 2 0x221e.6-0x221f.2 (0.4) -0x2210| 8a| .| samples: raw bits 0x221f.2-0x225a.7 (59.5) +0x2210| 8a| .| residuals: raw bits 0x221f.2-0x225a.7 (59.5) 0x2220|56 2a d5 5e b4 f9 e3 ff 8a 8b 77 d2 e6 56 48 8d|V*.^......w..VH.| * |until 0x225a.6 (60) | | | | | [8]{}: partition 0x225a.7-0x2292.4 (55.5) | | | count: 128 0x2250| 08 39 | .9 | rice_parameter: 1 0x225a.7-0x225b.3 (0.4) -0x2250| 39 05 ac 10 62| 9...b| samples: raw bits 0x225b.3-0x2292.4 (55.1) +0x2250| 39 05 ac 10 62| 9...b| residuals: raw bits 0x225b.3-0x2292.4 (55.1) 0x2260|bf 9b 41 cc ce 30 e3 33 81 c3 41 ed f3 fa 5e 13|..A..0.3..A...^.| * |until 0x2292.3 (56) | | | | | [9]{}: partition 0x2292.4-0x22ce.2 (59.6) | | | count: 128 0x2290| 22 | " | rice_parameter: 2 0x2292.4-0x2293 (0.4) -0x2290| e2 52 63 53 35 13 12 31 23 64 c4 56 8c| .RcS5..1#d.V.| samples: raw bits 0x2293-0x22ce.2 (59.2) +0x2290| e2 52 63 53 35 13 12 31 23 64 c4 56 8c| .RcS5..1#d.V.| residuals: raw bits 0x2293-0x22ce.2 (59.2) 0x22a0|e9 bc 8f af 58 af 29 ef 55 f4 f3 bc 5f ee 79 3a|....X.).U..._.y:| * |until 0x22ce.1 (60) | | | | | [10]{}: partition 0x22ce.2-0x230a (59.6) | | | count: 128 0x22c0| ca | . | rice_parameter: 2 0x22ce.2-0x22ce.6 (0.4) -0x22c0| ca ad| ..| samples: raw bits 0x22ce.6-0x230a (59.2) +0x22c0| ca ad| ..| residuals: raw bits 0x22ce.6-0x230a (59.2) 0x22d0|b3 db 34 b9 26 c8 4e 68 48 6c 4c c8 44 cc c8 91|..4.&.NhHlL.D...| * |until 0x2309.7 (60) | | | | | [11]{}: partition 0x230a-0x2345.1 (59.1) | | | count: 128 0x2300| 2f | / | rice_parameter: 2 0x230a-0x230a.4 (0.4) -0x2300| 2f 1f c2 de a5 42| /....B| samples: raw bits 0x230a.4-0x2345.1 (58.5) +0x2300| 2f 1f c2 de a5 42| /....B| residuals: raw bits 0x230a.4-0x2345.1 (58.5) 0x2310|ad 7a f9 ff 8b ab b7 93 6d 51 13 26 22 50 95 0d|.z......mQ.&"P..| * |until 0x2345 (59) | | | | | [12]{}: partition 0x2345.1-0x237d.4 (56.3) | | | count: 128 0x2340| 08 | . | rice_parameter: 1 0x2345.1-0x2345.5 (0.4) -0x2340| 08 92 0b 44 97 29 d3 7e cd c0 d0| ...D.).~...| samples: raw bits 0x2345.5-0x237d.4 (55.7) +0x2340| 08 92 0b 44 97 29 d3 7e cd c0 d0| ...D.).~...| residuals: raw bits 0x2345.5-0x237d.4 (55.7) 0x2350|70 34 33 63 41 ed b7 6e 6a a8 5c 09 82 60 58 48|p43cA..nj.\..`XH| * |until 0x237d.3 (56) | | | | | [13]{}: partition 0x237d.4-0x23ba.3 (60.7) | | | count: 128 0x2370| 22 | " | rice_parameter: 2 0x237d.4-0x237e (0.4) -0x2370| 6e 37| n7| samples: raw bits 0x237e-0x23ba.3 (60.3) +0x2370| 6e 37| n7| residuals: raw bits 0x237e-0x23ba.3 (60.3) 0x2380|26 26 c6 4c 64 86 48 6c dc 4b 19 3c 65 45 47 62|&&.Ld.Hl.K.g.| samples: raw bits 0x348a.2-0x3607.3 (381.1) +0x3480| b8 31 72 3e 67 bd| .1r>g.| residuals: raw bits 0x348a.2-0x3607.3 (381.1) 0x3490|99 20 ef 13 02 c5 e6 c4 76 75 bf 9c 83 b4 4e 4b|. ......vu....NK| * |until 0x3607.2 (382) | | | | | [10]{}: partition 0x3607.3-0x3787.1 (383.6) | | | count: 128 0x3600| 96 | . | rice_parameter: 22 0x3607.3-0x3608 (0.5) -0x3600| 78 9f 54 4e d7 51 bc 5c| x.TN.Q.\| samples: raw bits 0x3608-0x3787.1 (383.1) +0x3600| 78 9f 54 4e d7 51 bc 5c| x.TN.Q.\| residuals: raw bits 0x3608-0x3787.1 (383.1) 0x3610|fe 9d 31 8c 45 f5 ca 8b b7 c7 7b 33 30 ca 42 a9|..1.E.....{30.B.| * |until 0x3787 (384) | | | | | [11]{}: partition 0x3787.1-0x3905 (381.7) | | | count: 128 0x3780| 59 | Y | rice_parameter: 22 0x3787.1-0x3787.6 (0.5) -0x3780| 59 3e 8e 9e ef 21 3c 43 a3| Y>...!...!T..| samples: raw bits 0x3d81.2-0x3efe.6 (381.4) +0x3d80| b2 9d 12 b5 9d b4 21 54 c1 a6 d3 3e 54 1c 04| ......!T...>T..| residuals: raw bits 0x3d81.2-0x3efe.6 (381.4) 0x3d90|1a a3 18 d1 8a 13 e8 ac 4c 1e 24 0d df fc e1 93|........L.$.....| * |until 0x3efe.5 (382) | | | | | [16]{}: partition 0x3efe.6-0x407c (381.2) | | | count: 128 0x3ef0| aa cb| ..| rice_parameter: 22 0x3efe.6-0x3eff.3 (0.5) -0x3ef0| cb| .| samples: raw bits 0x3eff.3-0x407c (380.5) +0x3ef0| cb| .| residuals: raw bits 0x3eff.3-0x407c (380.5) 0x3f00|c0 1b f5 f9 b9 64 1d 4b 1a 3b 4c 8a f0 29 0a e2|.....d.K.;L..)..| * |until 0x407b.7 (381) | | | | | [17]{}: partition 0x407c-0x41fa.1 (382.1) | | | count: 128 0x4070| b1 | . | rice_parameter: 22 0x407c-0x407c.5 (0.5) -0x4070| b1 14 e6 26| ...&| samples: raw bits 0x407c.5-0x41fa.1 (381.4) +0x4070| b1 14 e6 26| ...&| residuals: raw bits 0x407c.5-0x41fa.1 (381.4) 0x4080|04 8f ea 3a e2 a5 b6 81 cc 86 2b a9 62 83 30 56|...:......+.b.0V| * |until 0x41fa (382) | | | | | [18]{}: partition 0x41fa.1-0x4379.2 (383.1) | | | count: 128 0x41f0| d9 | . | rice_parameter: 22 0x41fa.1-0x41fa.6 (0.5) -0x41f0| d9 c1 ae d2 46 58| ....FX| samples: raw bits 0x41fa.6-0x4379.2 (382.4) +0x41f0| d9 c1 ae d2 46 58| ....FX| residuals: raw bits 0x41fa.6-0x4379.2 (382.4) 0x4200|38 b4 a9 73 93 41 19 8f 30 9f 21 bd ef 09 37 b4|8..s.A..0.!...7.| * |until 0x4379.1 (383) | | | | | [19]{}: partition 0x4379.2-0x44f8.5 (383.3) | | | count: 128 0x4370| 6c | l | rice_parameter: 22 0x4379.2-0x4379.7 (0.5) -0x4370| 6c 89 31 2a 29 31 fd| l.1*)1.| samples: raw bits 0x4379.7-0x44f8.5 (382.6) +0x4370| 6c 89 31 2a 29 31 fd| l.1*)1.| residuals: raw bits 0x4379.7-0x44f8.5 (382.6) 0x4380|16 3b 91 04 8c e7 4e 9d 3a 17 77 d0 62 33 ab 50|.;....N.:.w.b3.P| * |until 0x44f8.4 (383) | | | | | [20]{}: partition 0x44f8.5-0x4678.6 (384.1) | | | count: 128 0x44f0| 4d b3 | M. | rice_parameter: 22 0x44f8.5-0x44f9.2 (0.5) -0x44f0| b3 b9 55 aa 98 6a 24| ..U..j$| samples: raw bits 0x44f9.2-0x4678.6 (383.4) +0x44f0| b3 b9 55 aa 98 6a 24| ..U..j$| residuals: raw bits 0x44f9.2-0x4678.6 (383.4) 0x4500|5b b3 9e 36 79 e6 70 df be 4b ca 49 15 3e ce 86|[..6y.p..K.I.>..| * |until 0x4678.5 (384) | | | | | [21]{}: partition 0x4678.6-0x47f9.2 (384.4) | | | count: 128 0x4670| a6 db | .. | rice_parameter: 22 0x4678.6-0x4679.3 (0.5) -0x4670| db bf b1 16 5d 5e 22| ....]^"| samples: raw bits 0x4679.3-0x47f9.2 (383.7) +0x4670| db bf b1 16 5d 5e 22| ....]^"| residuals: raw bits 0x4679.3-0x47f9.2 (383.7) 0x4680|f4 40 46 71 cf 2c b0 97 28 f4 84 1c 0f ca ea 4d|.@Fq.,..(......M| * |until 0x47f9.1 (384) | | | | | [22]{}: partition 0x47f9.2-0x4978.3 (383.1) | | | count: 128 0x47f0| ed | . | rice_parameter: 22 0x47f9.2-0x47f9.7 (0.5) -0x47f0| ed 35 83 9d 8d fc 6b| .5....k| samples: raw bits 0x47f9.7-0x4978.3 (382.4) +0x47f0| ed 35 83 9d 8d fc 6b| .5....k| residuals: raw bits 0x47f9.7-0x4978.3 (382.4) 0x4800|dc ba 11 48 60 de 2d cf 52 d3 4b e9 d2 6b 02 a6|...H`.-.R.K..k..| * |until 0x4978.2 (383) | | | | | [23]{}: partition 0x4978.3-0x4af6.2 (381.7) | | | count: 128 0x4970| 76 | v | rice_parameter: 22 0x4978.3-0x4979 (0.5) -0x4970| e8 c6 e8 70 e0 aa 4f| ...p..O| samples: raw bits 0x4979-0x4af6.2 (381.2) +0x4970| e8 c6 e8 70 e0 aa 4f| ...p..O| residuals: raw bits 0x4979-0x4af6.2 (381.2) 0x4980|84 f7 32 0a 0f 3d 8b 1f a5 fd 51 f9 9a 3d 21 76|..2..=....Q..=!v| * |until 0x4af6.1 (382) | | | | | [24]{}: partition 0x4af6.2-0x4c75.4 (383.2) | | | count: 128 0x4af0| 6d | m | rice_parameter: 22 0x4af6.2-0x4af6.7 (0.5) -0x4af0| 6d df 40 77 26 2a f3 93 b0 51| m.@w&*...Q| samples: raw bits 0x4af6.7-0x4c75.4 (382.5) +0x4af0| 6d df 40 77 26 2a f3 93 b0 51| m.@w&*...Q| residuals: raw bits 0x4af6.7-0x4c75.4 (382.5) 0x4b00|59 0c a4 c3 6f 7a bb 0d 1a 5a be a2 21 91 22 8c|Y...oz...Z..!.".| * |until 0x4c75.3 (383) | | | | | [25]{}: partition 0x4c75.4-0x4df3.1 (381.5) | | | count: 128 0x4c70| db 41 | .A | rice_parameter: 22 0x4c75.4-0x4c76.1 (0.5) -0x4c70| 41 a1 db 81 26 61 86 a4 ad 42| A...&a...B| samples: raw bits 0x4c76.1-0x4df3.1 (381) +0x4c70| 41 a1 db 81 26 61 86 a4 ad 42| A...&a...B| residuals: raw bits 0x4c76.1-0x4df3.1 (381) 0x4c80|96 96 b8 f5 29 6a d5 2c bc 12 4d 14 4a 7a 69 9e|....)j.,..M.Jzi.| * |until 0x4df3 (381) | | | | | [26]{}: partition 0x4df3.1-0x4f70.7 (381.6) | | | count: 128 0x4df0| 58 | X | rice_parameter: 22 0x4df3.1-0x4df3.6 (0.5) -0x4df0| 58 d2 02 83 0d 98 c1 49 70 25 bc e8 64| X......Ip%..d| samples: raw bits 0x4df3.6-0x4f70.7 (381.1) +0x4df0| 58 d2 02 83 0d 98 c1 49 70 25 bc e8 64| X......Ip%..d| residuals: raw bits 0x4df3.6-0x4f70.7 (381.1) 0x4e00|5f b5 1f 7b bb 7e 98 e8 8e ed b4 17 7f a1 34 4b|_..{.~........4K| * |until 0x4f70.6 (382) | | | | | [27]{}: partition 0x4f70.7-0x50ef.7 (383) | | | count: 128 0x4f70|6b 68 |kh | rice_parameter: 22 0x4f70.7-0x4f71.4 (0.5) -0x4f70| 68 1a ef 7d d7 d8 bf 98 9d cf 0b 0a 12 d7 bb| h..}...........| samples: raw bits 0x4f71.4-0x50ef.7 (382.3) +0x4f70| 68 1a ef 7d d7 d8 bf 98 9d cf 0b 0a 12 d7 bb| h..}...........| residuals: raw bits 0x4f71.4-0x50ef.7 (382.3) 0x4f80|a1 ef 2e 3e 8a 3f c8 d8 86 17 01 ef 92 63 39 11|...>.?.......c9.| * |until 0x50ef.6 (383) | | | | | [28]{}: partition 0x50ef.7-0x526f (383.1) | | | count: 128 0x50e0| 93| .| rice_parameter: 22 0x50ef.7-0x50f0.4 (0.5) 0x50f0|6e |n | -0x50f0|6e 91 77 6d b0 36 b1 67 20 73 11 f5 70 25 7e 5c|n.wm.6.g s..p%~\| samples: raw bits 0x50f0.4-0x526f (382.4) +0x50f0|6e 91 77 6d b0 36 b1 67 20 73 11 f5 70 25 7e 5c|n.wm.6.g s..p%~\| residuals: raw bits 0x50f0.4-0x526f (382.4) 0x5100|d5 7c d7 b9 4c 61 db fe 26 e5 b7 97 4c 82 e2 52|.|..La..&...L..R| * |until 0x526e.7 (383) | | | | | [29]{}: partition 0x526f-0x53ef.2 (384.2) | | | count: 128 0x5260| b7| .| rice_parameter: 22 0x526f-0x526f.5 (0.5) -0x5260| b7| .| samples: raw bits 0x526f.5-0x53ef.2 (383.5) +0x5260| b7| .| residuals: raw bits 0x526f.5-0x53ef.2 (383.5) 0x5270|4e 0f 47 18 8f c5 24 20 ab e2 56 79 cf 5e 12 eb|N.G...$ ..Vy.^..| * |until 0x53ef.1 (384) | | | | | [30]{}: partition 0x53ef.2-0x556f.1 (383.7) | | | count: 128 0x53e0| 2d| -| rice_parameter: 22 0x53ef.2-0x53ef.7 (0.5) -0x53e0| 2d| -| samples: raw bits 0x53ef.7-0x556f.1 (383.2) +0x53e0| 2d| -| residuals: raw bits 0x53ef.7-0x556f.1 (383.2) 0x53f0|1e 8d e0 4d a5 07 96 23 30 ac ee de 88 40 00 35|...M...#0....@.5| * |until 0x556f (384) | | | | | [31]{}: partition 0x556f.1-0x56ec.7 (381.6) | | | count: 128 0x5560| 5a| Z| rice_parameter: 22 0x556f.1-0x556f.6 (0.5) -0x5560| 5a| Z| samples: raw bits 0x556f.6-0x56ec.7 (381.1) +0x5560| 5a| Z| residuals: raw bits 0x556f.6-0x56ec.7 (381.1) 0x5570|bf 07 dc 2c fa 0f 07 fe 37 b3 be 3e 0d a0 4f 55|...,....7..>..OU| * |until 0x56ec.6 (382) | | 0x56e0| e8 | . | byte_align: 0 (valid) 0x56ec.7-0x56ed (0.1) @@ -545,25 +545,25 @@ $ fq -d flac dv mono24.flac | | | [0]{}: partition 0x56f9.6-0x631a.5 (3104.7) | | | count: 1023 0x56f0| 4a d6 | J. | rice_parameter: 22 0x56f9.6-0x56fa.3 (0.5) -0x56f0| d6 a0 73 8d b3 75| ..s..u| samples: raw bits 0x56fa.3-0x631a.5 (3104.2) +0x56f0| d6 a0 73 8d b3 75| ..s..u| residuals: raw bits 0x56fa.3-0x631a.5 (3104.2) 0x5700|81 16 a7 5d 05 ac ed 75 60 eb c0 97 c5 cc 22 96|...]...u`.....".| * |until 0x631a.4 (3105) | | | | | [1]{}: partition 0x631a.5-0x6bb9.4 (2206.7) | | | count: 1024 0x6310| 03 ca | .. | rice_parameter: 15 0x631a.5-0x631b.2 (0.5) -0x6310| ca 70 02 50 01| .p.P.| samples: raw bits 0x631b.2-0x6bb9.4 (2206.2) +0x6310| ca 70 02 50 01| .p.P.| residuals: raw bits 0x631b.2-0x6bb9.4 (2206.2) 0x6320|fc 00 e6 00 67 00 2c c0 12 e0 1f 60 1b e0 18 00|....g.,....`....| * |until 0x6bb9.3 (2207) | | | | | [2]{}: partition 0x6bb9.4-0x7458.4 (2207) | | | count: 1024 0x6bb0| 07 9a | .. | rice_parameter: 15 0x6bb9.4-0x6bba.1 (0.5) -0x6bb0| 9a 60 06 48 01 7a| .`.H.z| samples: raw bits 0x6bba.1-0x7458.4 (2206.3) +0x6bb0| 9a 60 06 48 01 7a| .`.H.z| residuals: raw bits 0x6bba.1-0x7458.4 (2206.3) 0x6bc0|00 58 00 13 e0 04 70 03 e8 01 c8 00 cb 00 59 80|.X....p.......Y.| * |until 0x7458.3 (2207) | | | | | [3]{}: partition 0x7458.4-0x7cf7.3 (2206.7) | | | count: 1024 0x7450| 07 98 | .. | rice_parameter: 15 0x7458.4-0x7459.1 (0.5) -0x7450| 98 00 06 20 01 86 00| ... ...| samples: raw bits 0x7459.1-0x7cf7.3 (2206.2) +0x7450| 98 00 06 20 01 86 00| ... ...| residuals: raw bits 0x7459.1-0x7cf7.3 (2206.2) 0x7460|61 80 18 00 05 d0 01 60 00 52 00 13 00 04 38 03|a......`.R....8.| * |until 0x7cf7.2 (2207) | | 0x7cf0| 00 | . | byte_align: 0 (valid) 0x7cf7.3-0x7cf8 (0.5) @@ -601,97 +601,97 @@ $ fq -d flac dv mono24.flac | | | [0]{}: partition 0x7d07.6-0x7fab.4 (675.6) | | | count: 255 0x7d00| 52 6e | Rn | rice_parameter: 19 0x7d07.6-0x7d08.3 (0.5) -0x7d00| 6e 12 eb 67 bf 7a f5 25| n..g.z.%| samples: raw bits 0x7d08.3-0x7fab.4 (675.1) +0x7d00| 6e 12 eb 67 bf 7a f5 25| n..g.z.%| residuals: raw bits 0x7d08.3-0x7fab.4 (675.1) 0x7d10|55 4d 2a 97 40 54 1e d3 f8 33 9e e7 a4 e4 e0 fd|UM*.@T...3......| * |until 0x7fab.3 (676) | | | | | [1]{}: partition 0x7fab.4-0x824a.5 (671.1) | | | count: 256 0x7fa0| 19 d0 | .. | rice_parameter: 19 0x7fab.4-0x7fac.1 (0.5) -0x7fa0| d0 45 4d 84| .EM.| samples: raw bits 0x7fac.1-0x824a.5 (670.4) +0x7fa0| d0 45 4d 84| .EM.| residuals: raw bits 0x7fac.1-0x824a.5 (670.4) 0x7fb0|75 e0 bb 0e 99 a0 f2 d4 8f c5 33 a3 07 8d 3f 81|u.........3...?.| * |until 0x824a.4 (671) | | | | | [2]{}: partition 0x824a.5-0x84f5.7 (683.2) | | | count: 256 0x8240| d4 e8 | .. | rice_parameter: 19 0x824a.5-0x824b.2 (0.5) -0x8240| e8 8c 52 cb 77| ..R.w| samples: raw bits 0x824b.2-0x84f5.7 (682.5) +0x8240| e8 8c 52 cb 77| ..R.w| residuals: raw bits 0x824b.2-0x84f5.7 (682.5) 0x8250|31 2f 93 5e 88 3a ce c3 fe 71 92 96 b0 aa 27 05|1/.^.:...q....'.| * |until 0x84f5.6 (683) | | | | | [3]{}: partition 0x84f5.7-0x8797.4 (673.5) | | | count: 256 0x84f0| 05 32 | .2 | rice_parameter: 19 0x84f5.7-0x84f6.4 (0.5) -0x84f0| 32 34 61 9f a8 10 ec 27 26 ce| 24a....'&.| samples: raw bits 0x84f6.4-0x8797.4 (673) +0x84f0| 32 34 61 9f a8 10 ec 27 26 ce| 24a....'&.| residuals: raw bits 0x84f6.4-0x8797.4 (673) 0x8500|d9 31 a2 f1 64 ae 89 d5 c4 43 d4 b7 8b f2 6d 84|.1..d....C....m.| * |until 0x8797.3 (673) | | | | | [4]{}: partition 0x8797.4-0x8a4c.6 (693.2) | | | count: 256 0x8790| 1a 38 | .8 | rice_parameter: 20 0x8797.4-0x8798.1 (0.5) -0x8790| 38 22 6a da 6a bb 4e 2c| 8"j.j.N,| samples: raw bits 0x8798.1-0x8a4c.6 (692.5) +0x8790| 38 22 6a da 6a bb 4e 2c| 8"j.j.N,| residuals: raw bits 0x8798.1-0x8a4c.6 (692.5) 0x87a0|2c c0 b4 b0 f8 8e bb 40 1a c8 8c 2a 89 30 a7 ad|,......@...*.0..| * |until 0x8a4c.5 (693) | | | | | [5]{}: partition 0x8a4c.6-0x8d40.7 (756.1) | | | count: 256 0x8a40| 5a db | Z. | rice_parameter: 22 0x8a4c.6-0x8a4d.3 (0.5) -0x8a40| db 72 8d| .r.| samples: raw bits 0x8a4d.3-0x8d40.7 (755.4) +0x8a40| db 72 8d| .r.| residuals: raw bits 0x8a4d.3-0x8d40.7 (755.4) 0x8a50|b9 5e cb ab 79 97 b7 97 77 5b a8 dc c0 54 16 ca|.^..y...w[...T..| * |until 0x8d40.6 (756) | | | | | [6]{}: partition 0x8d40.7-0x902d.7 (749) | | | count: 256 0x8d40|39 57 |9W | rice_parameter: 21 0x8d40.7-0x8d41.4 (0.5) -0x8d40| 57 9e 50 6d dc 50 99 35 ce 09 a2 68 a5 aa a5| W.Pm.P.5...h...| samples: raw bits 0x8d41.4-0x902d.7 (748.3) +0x8d40| 57 9e 50 6d dc 50 99 35 ce 09 a2 68 a5 aa a5| W.Pm.P.5...h...| residuals: raw bits 0x8d41.4-0x902d.7 (748.3) 0x8d50|39 d1 6c 9d 5f c4 f4 06 fc 24 dc b8 44 7c fe 6d|9.l._....$..D|.m| * |until 0x902d.6 (749) | | | | | [7]{}: partition 0x902d.7-0x931e.4 (752.5) | | | count: 256 0x9020| 9b 56 | .V | rice_parameter: 21 0x902d.7-0x902e.4 (0.5) -0x9020| 56 1f| V.| samples: raw bits 0x902e.4-0x931e.4 (752) +0x9020| 56 1f| V.| residuals: raw bits 0x902e.4-0x931e.4 (752) 0x9030|b1 82 cf ab c2 80 b5 a0 8b 31 d0 63 83 27 87 d3|.........1.c.'..| * |until 0x931e.3 (752) | | | | | [8]{}: partition 0x931e.4-0x9611.2 (754.6) | | | count: 256 0x9310| 7b 5d| {]| rice_parameter: 22 0x931e.4-0x931f.1 (0.5) -0x9310| 5d| ]| samples: raw bits 0x931f.1-0x9611.2 (754.1) +0x9310| 5d| ]| residuals: raw bits 0x931f.1-0x9611.2 (754.1) 0x9320|a2 8b 43 1e c1 d1 a3 23 9d 57 e1 08 d6 e3 23 2f|..C....#.W....#/| * |until 0x9611.1 (755) | | | | | [9]{}: partition 0x9611.2-0x9903 (753.6) | | | count: 256 0x9610| ed | . | rice_parameter: 22 0x9611.2-0x9611.7 (0.5) -0x9610| ed 40 21 51 b9 30 3b 7e 7b 6d 71 03 de ec 14| .@!Q.0;~{mq....| samples: raw bits 0x9611.7-0x9903 (753.1) +0x9610| ed 40 21 51 b9 30 3b 7e 7b 6d 71 03 de ec 14| .@!Q.0;~{mq....| residuals: raw bits 0x9611.7-0x9903 (753.1) 0x9620|7c b5 11 58 d8 e1 1e fe d9 9d cf ab 24 b0 af b4||..X........$...| * |until 0x9902.7 (754) | | | | | [10]{}: partition 0x9903-0x9bf5.4 (754.4) | | | count: 256 0x9900| b2 | . | rice_parameter: 22 0x9903-0x9903.5 (0.5) -0x9900| b2 37 50 4b ab f3 d7 ef b5 e8 71 4d 09| .7PK......qM.| samples: raw bits 0x9903.5-0x9bf5.4 (753.7) +0x9900| b2 37 50 4b ab f3 d7 ef b5 e8 71 4d 09| .7PK......qM.| residuals: raw bits 0x9903.5-0x9bf5.4 (753.7) 0x9910|88 51 16 67 21 17 8a 05 5e 3f 14 13 83 29 91 8a|.Q.g!...^?...)..| * |until 0x9bf5.3 (754) | | | | | [11]{}: partition 0x9bf5.4-0x9ee7.5 (754.1) | | | count: 256 0x9bf0| 8b 2d | .- | rice_parameter: 22 0x9bf5.4-0x9bf6.1 (0.5) -0x9bf0| 2d de 24 72 db b6 27 2a fe c3| -.$r..'*..| samples: raw bits 0x9bf6.1-0x9ee7.5 (753.4) +0x9bf0| 2d de 24 72 db b6 27 2a fe c3| -.$r..'*..| residuals: raw bits 0x9bf6.1-0x9ee7.5 (753.4) 0x9c00|a7 dd 68 aa e6 66 81 bc c0 7c 66 d5 a7 de e7 f3|..h..f...|f.....| * |until 0x9ee7.4 (754) | | | | | [12]{}: partition 0x9ee7.5-0xa1da (754.3) | | | count: 256 0x9ee0| 45 b5 | E. | rice_parameter: 22 0x9ee7.5-0x9ee8.2 (0.5) -0x9ee0| b5 7b 69 22 b6 40 a0 2a| .{i".@.*| samples: raw bits 0x9ee8.2-0xa1da (753.6) +0x9ee0| b5 7b 69 22 b6 40 a0 2a| .{i".@.*| residuals: raw bits 0x9ee8.2-0xa1da (753.6) 0x9ef0|4a 12 d6 ad d0 81 8e 78 c8 de 20 57 06 69 21 ea|J......x.. W.i!.| * |until 0xa1d9.7 (754) | | | | | [13]{}: partition 0xa1da-0xa4ca.2 (752.2) | | | count: 256 0xa1d0| ab | . | rice_parameter: 21 0xa1da-0xa1da.5 (0.5) -0xa1d0| ab 0b 6d ba 90 6c| ..m..l| samples: raw bits 0xa1da.5-0xa4ca.2 (751.5) +0xa1d0| ab 0b 6d ba 90 6c| ..m..l| residuals: raw bits 0xa1da.5-0xa4ca.2 (751.5) 0xa1e0|9b ae e4 bc de 89 10 a4 a2 9f 44 a2 0c 25 f2 ce|..........D..%..| * |until 0xa4ca.1 (752) | | | | | [14]{}: partition 0xa4ca.2-0xa7bc.7 (754.5) | | | count: 256 0xa4c0| 2d | - | rice_parameter: 22 0xa4ca.2-0xa4ca.7 (0.5) -0xa4c0| 2d ff de 5a 66 46| -..ZfF| samples: raw bits 0xa4ca.7-0xa7bc.7 (754) +0xa4c0| 2d ff de 5a 66 46| -..ZfF| residuals: raw bits 0xa4ca.7-0xa7bc.7 (754) 0xa4d0|87 65 81 7b 17 aa 19 6d d6 13 c4 df a6 14 a7 b8|.e.{...m........| * |until 0xa7bc.6 (754) | | | | | [15]{}: partition 0xa7bc.7-0xaaaf.4 (754.5) | | | count: 256 0xa7b0| fd 6b | .k | rice_parameter: 22 0xa7bc.7-0xa7bd.4 (0.5) -0xa7b0| 6b b0 dd| k..| samples: raw bits 0xa7bd.4-0xaaaf.4 (754) +0xa7b0| 6b b0 dd| k..| residuals: raw bits 0xa7bd.4-0xaaaf.4 (754) 0xa7c0|39 5c 9e 9b 14 20 6e e2 d0 db c9 de ee eb 33 8d|9\... n.......3.| * |until 0xaaaf.3 (754) | | 0xaaa0| 00| .| byte_align: 0 (valid) 0xaaaf.4-0xaab0 (0.4) @@ -725,7 +725,7 @@ $ fq -d flac dv mono24.flac | | | [0]{}: partition 0xaabb.6-0xbcc8.1 (4620.3) | | | count: 1570 0xaab0| 42 a5 | B. | rice_parameter: 21 0xaabb.6-0xaabc.3 (0.5) -0xaab0| a5 bf 5d 86| ..].| samples: raw bits 0xaabc.3-0xbcc8.1 (4619.6) +0xaab0| a5 bf 5d 86| ..].| residuals: raw bits 0xaabc.3-0xbcc8.1 (4619.6) 0xaac0|a5 4e 41 16 ea f1 3b b4 90 8e 95 e4 b9 b3 3d 1a|.NA...;.......=.| * |until 0xbcc8 (4620) | | 0xbcc0| 80 | . | byte_align: 0 (valid) 0xbcc8.1-0xbcc9 (0.7) diff --git a/format/flac/testdata/mono32.fqtest b/format/flac/testdata/mono32.fqtest index 3c46c6ae1..a11f2ed0a 100644 --- a/format/flac/testdata/mono32.fqtest +++ b/format/flac/testdata/mono32.fqtest @@ -80,7 +80,7 @@ $ fq -d flac dv mono32.flac | | | [0]{}: partition 0x20aa.6-0x22ab.2 (512.4) | | | count: 4096 0x020a0| 00 3f | .? | rice_parameter: 0 0x20aa.6-0x20ab.2 (0.4) -0x020a0| 3f ff ff ff ff| ?....| samples: raw bits 0x20ab.2-0x22ab.2 (512) +0x020a0| 3f ff ff ff ff| ?....| residuals: raw bits 0x20ab.2-0x22ab.2 (512) 0x020b0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x22ab.1 (512) | | 0x022a0| c0 | . | byte_align: 0 (valid) 0x22ab.2-0x22ac (0.6) @@ -135,98 +135,98 @@ $ fq -d flac dv mono32.flac | | | [0]{}: partition 0x22e5.7-0x2305.4 (31.5) | | | count: 248 0x022e0| 28 0f | (. | rice_parameter: 0 0x22e5.7-0x22e6.4 (0.5) -0x022e0| 0f ff ff ff ff ff ff ff ff ff| ..........| samples: raw bits 0x22e6.4-0x2305.4 (31) +0x022e0| 0f ff ff ff ff ff ff ff ff ff| ..........| residuals: raw bits 0x22e6.4-0x2305.4 (31) 0x022f0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| 0x02300|ff ff ff ff ff fb |...... | | | | [1]{}: partition 0x2305.4-0x2605.1 (767.5) | | | count: 256 0x02300| fb 40 | .@ | rice_parameter: 22 0x2305.4-0x2306.1 (0.5) -0x02300| 40 00 00 80 00 01 00 00 02 00| @.........| samples: raw bits 0x2306.1-0x2605.1 (767) +0x02300| 40 00 00 80 00 01 00 00 02 00| @.........| residuals: raw bits 0x2306.1-0x2605.1 (767) 0x02310|00 04 00 00 08 00 00 10 00 00 20 00 00 40 00 00|.......... ..@..| * |until 0x2605 (767) | | | | | [2]{}: partition 0x2605.1-0x290f (777.7) | | | count: 256 0x02600| da | . | rice_parameter: 22 0x2605.1-0x2605.6 (0.5) -0x02600| da 63 39 f9 8e c4 9c 2c fd 30 12| .c9....,.0.| samples: raw bits 0x2605.6-0x290f (777.2) +0x02600| da 63 39 f9 8e c4 9c 2c fd 30 12| .c9....,.0.| residuals: raw bits 0x2605.6-0x290f (777.2) 0x02610|10 da 16 40 5d 83 5e 9b ec d1 62 e1 ed 8e 1b 48|...@].^...b....H| * |until 0x290e.7 (778) | | | | | [3]{}: partition 0x290f-0x2c17.3 (776.3) | | | count: 256 0x02900| b1| .| rice_parameter: 22 0x290f-0x290f.5 (0.5) -0x02900| b1| .| samples: raw bits 0x290f.5-0x2c17.3 (775.6) +0x02900| b1| .| residuals: raw bits 0x290f.5-0x2c17.3 (775.6) 0x02910|d9 89 06 96 b5 f8 6a c2 7c 56 5d 25 33 86 8a b3|......j.|V]%3...| * |until 0x2c17.2 (776) | | | | | [4]{}: partition 0x2c17.3-0x2f1f.4 (776.1) | | | count: 256 0x02c10| 36 | 6 | rice_parameter: 22 0x2c17.3-0x2c18 (0.5) -0x02c10| b6 75 52 cf ce 96 98 2f| .uR..../| samples: raw bits 0x2c18-0x2f1f.4 (775.4) +0x02c10| b6 75 52 cf ce 96 98 2f| .uR..../| residuals: raw bits 0x2c18-0x2f1f.4 (775.4) 0x02c20|80 98 55 2c 14 fb c9 15 d9 49 e3 b7 bc 55 ac 2b|..U,.....I...U.+| * |until 0x2f1f.3 (776) | | | | | [5]{}: partition 0x2f1f.4-0x3225.4 (774) | | | count: 256 0x02f10| ab| .| rice_parameter: 22 0x2f1f.4-0x2f20.1 (0.5) 0x02f20|39 |9 | -0x02f20|39 eb 77 64 8d 54 0a dd 13 d8 3b 33 c5 05 f1 40|9.wd.T....;3...@| samples: raw bits 0x2f20.1-0x3225.4 (773.3) +0x02f20|39 eb 77 64 8d 54 0a dd 13 d8 3b 33 c5 05 f1 40|9.wd.T....;3...@| residuals: raw bits 0x2f20.1-0x3225.4 (773.3) 0x02f30|d2 |. | * |until 0x3225.3 (774) | | | | | [6]{}: partition 0x3225.4-0x352e.1 (776.5) | | | count: 256 0x03220| 5b 30 | [0 | rice_parameter: 22 0x3225.4-0x3226.1 (0.5) -0x03220| 30 5c f6 14 24 2a ff aa 76 28| 0\..$*..v(| samples: raw bits 0x3226.1-0x352e.1 (776) +0x03220| 30 5c f6 14 24 2a ff aa 76 28| 0\..$*..v(| residuals: raw bits 0x3226.1-0x352e.1 (776) 0x03230|8e e3 7e a1 17 32 7e 7c 96 75 b9 44 84 41 27 c4|..~..2~|.u.D.A'.| * |until 0x352e (776) | | | | | [7]{}: partition 0x352e.1-0x3836.3 (776.2) | | | count: 256 0x03520| d8 | . | rice_parameter: 22 0x352e.1-0x352e.6 (0.5) -0x03520| d8 de| ..| samples: raw bits 0x352e.6-0x3836.3 (775.5) +0x03520| d8 de| ..| residuals: raw bits 0x352e.6-0x3836.3 (775.5) 0x03530|b2 29 64 d6 c1 b2 5b 38 af 5b e6 6b d9 47 36 11|.)d...[8.[.k.G6.| * |until 0x3836.2 (776) | | | | | [8]{}: partition 0x3836.3-0x3b3f (776.5) | | | count: 256 0x03830| 56 | V | rice_parameter: 22 0x3836.3-0x3837 (0.5) -0x03830| f5 72 08 b6 c5 46 80 46 02| .r...F.F.| samples: raw bits 0x3837-0x3b3f (776) +0x03830| f5 72 08 b6 c5 46 80 46 02| .r...F.F.| residuals: raw bits 0x3837-0x3b3f (776) 0x03840|5d 5f b9 26 e8 2a 34 0e ff 8d 09 a3 64 94 18 c1|]_.&.*4.....d...| * |until 0x3b3e.7 (776) | | | | | [9]{}: partition 0x3b3f-0x3e47 (776) | | | count: 256 0x03b30| b3| .| rice_parameter: 22 0x3b3f-0x3b3f.5 (0.5) -0x03b30| b3| .| samples: raw bits 0x3b3f.5-0x3e47 (775.3) +0x03b30| b3| .| residuals: raw bits 0x3b3f.5-0x3e47 (775.3) 0x03b40|1c 67 53 65 02 7b c7 cd ef bc 9c 67 f2 32 39 03|.gSe.{.....g.29.| * |until 0x3e46.7 (776) | | | | | [10]{}: partition 0x3e47-0x414f.1 (776.1) | | | count: 256 0x03e40| b5 | . | rice_parameter: 22 0x3e47-0x3e47.5 (0.5) -0x03e40| b5 39 92 d0 e4 13 d4 dc 32| .9......2| samples: raw bits 0x3e47.5-0x414f.1 (775.4) +0x03e40| b5 39 92 d0 e4 13 d4 dc 32| .9......2| residuals: raw bits 0x3e47.5-0x414f.1 (775.4) 0x03e50|7f c0 6c 07 4e 88 d1 d6 65 08 c0 d2 3a 6a 79 4e|..l.N...e...:jyN| * |until 0x414f (776) | | | | | [11]{}: partition 0x414f.1-0x4457.4 (776.3) | | | count: 256 0x04140| d9| .| rice_parameter: 22 0x414f.1-0x414f.6 (0.5) -0x04140| d9| .| samples: raw bits 0x414f.6-0x4457.4 (775.6) +0x04140| d9| .| residuals: raw bits 0x414f.6-0x4457.4 (775.6) 0x04150|1a c3 5e 48 03 b2 e4 31 9b 59 3c 06 e3 ba 36 e0|..^H...1.Y<...6.| * |until 0x4457.3 (776) | | | | | [12]{}: partition 0x4457.4-0x475e.4 (775) | | | count: 256 0x04450| 7b 51 | {Q | rice_parameter: 22 0x4457.4-0x4458.1 (0.5) -0x04450| 51 5d f4 51 3e 32 69 44| Q].Q>2iD| samples: raw bits 0x4458.1-0x475e.4 (774.3) +0x04450| 51 5d f4 51 3e 32 69 44| Q].Q>2iD| residuals: raw bits 0x4458.1-0x475e.4 (774.3) 0x04460|52 5f 3d 64 59 aa d8 ff d7 39 b2 bd d2 8f 62 e4|R_=dY....9....b.| * |until 0x475e.3 (775) | | | | | [13]{}: partition 0x475e.4-0x4a66.3 (775.7) | | | count: 256 0x04750| 0b 6f| .o| rice_parameter: 22 0x475e.4-0x475f.1 (0.5) -0x04750| 6f| o| samples: raw bits 0x475f.1-0x4a66.3 (775.2) +0x04750| 6f| o| residuals: raw bits 0x475f.1-0x4a66.3 (775.2) 0x04760|3b 93 da 9b e0 95 18 22 29 ee ad af 9d ac 7f 82|;......").......| * |until 0x4a66.2 (776) | | | | | [14]{}: partition 0x4a66.3-0x4d70.2 (777.7) | | | count: 256 0x04a60| b6 | . | rice_parameter: 22 0x4a66.3-0x4a67 (0.5) -0x04a60| 53 65 90 1e be bd 5f c7 e8| Se...._..| samples: raw bits 0x4a67-0x4d70.2 (777.2) +0x04a60| 53 65 90 1e be bd 5f c7 e8| Se...._..| residuals: raw bits 0x4a67-0x4d70.2 (777.2) 0x04a70|fc a5 c4 a2 64 6f 3d dd b1 28 af 8a e4 66 a3 9e|....do=..(...f..| * |until 0x4d70.1 (778) | | | | | [15]{}: partition 0x4d70.2-0x5079 (776.6) | | | count: 256 0x04d70|6d |m | rice_parameter: 22 0x4d70.2-0x4d70.7 (0.5) -0x04d70|6d 94 8e df 60 cb 31 d7 d4 f1 2e 8b 24 b7 87 e3|m...`.1.....$...| samples: raw bits 0x4d70.7-0x5079 (776.1) +0x04d70|6d 94 8e df 60 cb 31 d7 d4 f1 2e 8b 24 b7 87 e3|m...`.1.....$...| residuals: raw bits 0x4d70.7-0x5079 (776.1) 0x04d80|f7 81 51 7b d7 ac ac 51 51 d3 ff 77 0f a8 e9 15|..Q{...QQ..w....| * |until 0x5078.7 (777) | | | | | byte_align: 0 (valid) 0x5079-0x5079 (0) @@ -274,195 +274,195 @@ $ fq -d flac dv mono32.flac | | | [0]{}: partition 0x50a1.2-0x525a.3 (441.1) | | | count: 123 0x050a0| 77 | w | rice_parameter: 27 0x50a1.2-0x50a1.7 (0.5) -0x050a0| 77 db 30 f9 7f f6 77 8a 85 3b 41 74 33 6d 9a| w.0...w..;At3m.| samples: raw bits 0x50a1.7-0x525a.3 (440.4) +0x050a0| 77 db 30 f9 7f f6 77 8a 85 3b 41 74 33 6d 9a| w.0...w..;At3m.| residuals: raw bits 0x50a1.7-0x525a.3 (440.4) 0x050b0|a7 4a e9 7d 46 a6 e0 ea e5 47 fb 5a 74 cb aa f1|.J.}F....G.Zt...| * |until 0x525a.2 (441) | | | | | [1]{}: partition 0x525a.3-0x5417.3 (445) | | | count: 128 0x05250| da | . | rice_parameter: 26 0x525a.3-0x525b (0.5) -0x05250| bc b4 91 d2 7e| ....~| samples: raw bits 0x525b-0x5417.3 (444.3) +0x05250| bc b4 91 d2 7e| ....~| residuals: raw bits 0x525b-0x5417.3 (444.3) 0x05260|5b 12 dd 6d ec 4e 4a a3 6a 81 bb d1 35 a0 ba a9|[..m.NJ.j...5...| * |until 0x5417.2 (445) | | | | | [2]{}: partition 0x5417.3-0x55de.2 (454.7) | | | count: 128 0x05410| 5a | Z | rice_parameter: 26 0x5417.3-0x5418 (0.5) -0x05410| cd 14 8a 08 28 fe 74 85| ....(.t.| samples: raw bits 0x5418-0x55de.2 (454.2) +0x05410| cd 14 8a 08 28 fe 74 85| ....(.t.| residuals: raw bits 0x5418-0x55de.2 (454.2) 0x05420|2d d5 09 db f0 68 bd 7b 3a cc 44 50 20 43 41 a5|-....h.{:.DP CA.| * |until 0x55de.1 (455) | | | | | [3]{}: partition 0x55de.2-0x579e.7 (448.5) | | | count: 128 0x055d0| f4 | . | rice_parameter: 26 0x55de.2-0x55de.7 (0.5) -0x055d0| f4 b7| ..| samples: raw bits 0x55de.7-0x579e.7 (448) +0x055d0| f4 b7| ..| residuals: raw bits 0x55de.7-0x579e.7 (448) 0x055e0|43 3d ec 52 17 82 e4 1a 2f eb f2 ef ce d6 a8 da|C=.R..../.......| * |until 0x579e.6 (448) | | | | | [4]{}: partition 0x579e.7-0x596d.6 (462.7) | | | count: 128 0x05790| cb bd| ..| rice_parameter: 27 0x579e.7-0x579f.4 (0.5) -0x05790| bd| .| samples: raw bits 0x579f.4-0x596d.6 (462.2) +0x05790| bd| .| residuals: raw bits 0x579f.4-0x596d.6 (462.2) 0x057a0|27 9a d7 db 50 89 fe 36 fe 37 ed 65 58 5f 41 c9|'...P..6.7.eX_A.| * |until 0x596d.5 (463) | | | | | [5]{}: partition 0x596d.6-0x5b5b.4 (493.6) | | | count: 128 0x05960| 57 a7 | W. | rice_parameter: 29 0x596d.6-0x596e.3 (0.5) -0x05960| a7 cf| ..| samples: raw bits 0x596e.3-0x5b5b.4 (493.1) +0x05960| a7 cf| ..| residuals: raw bits 0x596e.3-0x5b5b.4 (493.1) 0x05970|ab 50 86 45 e1 c2 17 ed 8d 28 13 25 d2 9d bb a6|.P.E.....(.%....| * |until 0x5b5b.3 (494) | | | | | [6]{}: partition 0x5b5b.4-0x5d4b.6 (496.2) | | | count: 128 0x05b50| 4e f3 | N. | rice_parameter: 29 0x5b5b.4-0x5b5c.1 (0.5) -0x05b50| f3 ea 78 5e| ..x^| samples: raw bits 0x5b5c.1-0x5d4b.6 (495.5) +0x05b50| f3 ea 78 5e| ..x^| residuals: raw bits 0x5b5c.1-0x5d4b.6 (495.5) 0x05b60|5e 52 3d 01 6d 1c 42 19 e9 e6 25 8c ad 26 d4 ca|^R=.m.B...%..&..| * |until 0x5d4b.5 (496) | | | | | [7]{}: partition 0x5d4b.6-0x5f3b.1 (495.3) | | | count: 128 0x05d40| 3f a3 | ?. | rice_parameter: 29 0x5d4b.6-0x5d4c.3 (0.5) -0x05d40| a3 45 ba 88| .E..| samples: raw bits 0x5d4c.3-0x5f3b.1 (494.6) +0x05d40| a3 45 ba 88| .E..| residuals: raw bits 0x5d4c.3-0x5f3b.1 (494.6) 0x05d50|e6 89 b1 f7 29 a4 58 14 5b 09 4e c0 6d 74 59 c1|....).X.[.N.mtY.| * |until 0x5f3b (495) | | | | | [8]{}: partition 0x5f3b.1-0x6129.2 (494.1) | | | count: 128 0x05f30| 76 | v | rice_parameter: 29 0x5f3b.1-0x5f3b.6 (0.5) -0x05f30| 76 15 94 3b 89| v..;.| samples: raw bits 0x5f3b.6-0x6129.2 (493.4) +0x05f30| 76 15 94 3b 89| v..;.| residuals: raw bits 0x5f3b.6-0x6129.2 (493.4) 0x05f40|a4 75 16 de 30 b2 61 96 af 90 4b a2 ac 59 f9 3a|.u..0.a...K..Y.:| * |until 0x6129.1 (494) | | | | | [9]{}: partition 0x6129.2-0x6318.5 (495.3) | | | count: 128 0x06120| fb | . | rice_parameter: 29 0x6129.2-0x6129.7 (0.5) -0x06120| fb 3b b2 97 a3 6f 29| .;...o)| samples: raw bits 0x6129.7-0x6318.5 (494.6) +0x06120| fb 3b b2 97 a3 6f 29| .;...o)| residuals: raw bits 0x6129.7-0x6318.5 (494.6) 0x06130|b0 b3 83 74 06 86 f5 ea f1 3d ca 51 01 59 ea 8f|...t.....=.Q.Y..| * |until 0x6318.4 (495) | | | | | [10]{}: partition 0x6318.5-0x6508.6 (496.1) | | | count: 128 0x06310| b7 5b | .[ | rice_parameter: 29 0x6318.5-0x6319.2 (0.5) -0x06310| 5b 8c 4f cc 7d 3b cb| [.O.};.| samples: raw bits 0x6319.2-0x6508.6 (495.4) +0x06310| 5b 8c 4f cc 7d 3b cb| [.O.};.| residuals: raw bits 0x6319.2-0x6508.6 (495.4) 0x06320|cf cb 4e 6b 9b 10 9c 16 02 c9 b4 94 cb 08 27 f8|..Nk..........'.| * |until 0x6508.5 (496) | | | | | [11]{}: partition 0x6508.6-0x66f8.4 (495.6) | | | count: 128 0x06500| 83 ab | .. | rice_parameter: 29 0x6508.6-0x6509.3 (0.5) -0x06500| ab af 23 dc ed 80 7e| ..#...~| samples: raw bits 0x6509.3-0x66f8.4 (495.1) +0x06500| ab af 23 dc ed 80 7e| ..#...~| residuals: raw bits 0x6509.3-0x66f8.4 (495.1) 0x06510|09 8e 1e c8 fc e6 82 88 2c 22 2c fb d8 66 c8 86|........,",..f..| * |until 0x66f8.3 (496) | | | | | [12]{}: partition 0x66f8.4-0x68ea.1 (497.5) | | | count: 128 0x066f0| 8e c7 | .. | rice_parameter: 29 0x66f8.4-0x66f9.1 (0.5) -0x066f0| c7 a4 8c 2f f3 61 91| .../.a.| samples: raw bits 0x66f9.1-0x68ea.1 (497) +0x066f0| c7 a4 8c 2f f3 61 91| .../.a.| residuals: raw bits 0x66f9.1-0x68ea.1 (497) 0x06700|3b 8e ab 4a eb 93 b1 68 1d 33 ef fe b3 53 a1 06|;..J...h.3...S..| * |until 0x68ea (497) | | | | | [13]{}: partition 0x68ea.1-0x6ad8.6 (494.5) | | | count: 128 0x068e0| 76 | v | rice_parameter: 29 0x68ea.1-0x68ea.6 (0.5) -0x068e0| 76 54 51 e3 c2 6d| vTQ..m| samples: raw bits 0x68ea.6-0x6ad8.6 (494) +0x068e0| 76 54 51 e3 c2 6d| vTQ..m| residuals: raw bits 0x68ea.6-0x6ad8.6 (494) 0x068f0|50 89 8b 39 84 94 c4 39 ba f9 d0 8c 1a 04 68 70|P..9...9......hp| * |until 0x6ad8.5 (494) | | | | | [14]{}: partition 0x6ad8.6-0x6cc8.6 (496) | | | count: 128 0x06ad0| 9f ad | .. | rice_parameter: 29 0x6ad8.6-0x6ad9.3 (0.5) -0x06ad0| ad 2a cd 3a 05 b8 ee| .*.:...| samples: raw bits 0x6ad9.3-0x6cc8.6 (495.3) +0x06ad0| ad 2a cd 3a 05 b8 ee| .*.:...| residuals: raw bits 0x6ad9.3-0x6cc8.6 (495.3) 0x06ae0|64 ca b0 9d d9 89 48 36 ff bb 85 fb 90 2f bb e4|d.....H6...../..| * |until 0x6cc8.5 (496) | | | | | [15]{}: partition 0x6cc8.6-0x6eb7.7 (495.1) | | | count: 128 0x06cc0| e7 b2 | .. | rice_parameter: 29 0x6cc8.6-0x6cc9.3 (0.5) -0x06cc0| b2 b8 c7 54 a8 36 2a| ...T.6*| samples: raw bits 0x6cc9.3-0x6eb7.7 (494.4) +0x06cc0| b2 b8 c7 54 a8 36 2a| ...T.6*| residuals: raw bits 0x6cc9.3-0x6eb7.7 (494.4) 0x06cd0|90 41 53 29 e2 a7 e1 e1 b2 09 28 aa 71 fe b5 de|.AS)......(.q...| * |until 0x6eb7.6 (495) | | | | | [16]{}: partition 0x6eb7.7-0x70a6.6 (494.7) | | | count: 128 0x06eb0| 41 d5 | A. | rice_parameter: 29 0x6eb7.7-0x6eb8.4 (0.5) -0x06eb0| d5 23 80 24 f1 d8 3e 38| .#.$..>8| samples: raw bits 0x6eb8.4-0x70a6.6 (494.2) +0x06eb0| d5 23 80 24 f1 d8 3e 38| .#.$..>8| residuals: raw bits 0x6eb8.4-0x70a6.6 (494.2) 0x06ec0|c2 c0 3b 4a 77 a9 d5 b0 63 94 5e 0c ab 33 ed 38|..;Jw...c.^..3.8| * |until 0x70a6.5 (495) | | | | | [17]{}: partition 0x70a6.6-0x7297.5 (496.7) | | | count: 128 0x070a0| 37 a5 | 7. | rice_parameter: 29 0x70a6.6-0x70a7.3 (0.5) -0x070a0| a5 48 fa b1 f1 b1 cd c6 2b| .H......+| samples: raw bits 0x70a7.3-0x7297.5 (496.2) +0x070a0| a5 48 fa b1 f1 b1 cd c6 2b| .H......+| residuals: raw bits 0x70a7.3-0x7297.5 (496.2) 0x070b0|f0 79 d6 e1 2a 89 a3 ec 02 64 b4 1f 23 66 b2 29|.y..*....d..#f.)| * |until 0x7297.4 (497) | | | | | [18]{}: partition 0x7297.5-0x7488.3 (496.6) | | | count: 128 0x07290| 8f 4a | .J | rice_parameter: 29 0x7297.5-0x7298.2 (0.5) -0x07290| 4a f7 ca a1 31 e2 8d 61| J...1..a| samples: raw bits 0x7298.2-0x7488.3 (496.1) +0x07290| 4a f7 ca a1 31 e2 8d 61| J...1..a| residuals: raw bits 0x7298.2-0x7488.3 (496.1) 0x072a0|12 04 0d 45 db 6c cd e8 d5 ce fd 46 68 4e cd 35|...E.l.....FhN.5| * |until 0x7488.2 (497) | | | | | [19]{}: partition 0x7488.3-0x7679.6 (497.3) | | | count: 128 0x07480| bd | . | rice_parameter: 29 0x7488.3-0x7489 (0.5) -0x07480| 46 fa 19 46 2b a6 da| F..F+..| samples: raw bits 0x7489-0x7679.6 (496.6) +0x07480| 46 fa 19 46 2b a6 da| F..F+..| residuals: raw bits 0x7489-0x7679.6 (496.6) 0x07490|f6 3b e0 b2 98 12 32 8e fc 56 cb 88 8d 38 fb 80|.;....2..V...8..| * |until 0x7679.5 (497) | | | | | [20]{}: partition 0x7679.6-0x786b.2 (497.4) | | | count: 128 0x07670| af b3 | .. | rice_parameter: 29 0x7679.6-0x767a.3 (0.5) -0x07670| b3 0f d8 52 aa fe| ...R..| samples: raw bits 0x767a.3-0x786b.2 (496.7) +0x07670| b3 0f d8 52 aa fe| ...R..| residuals: raw bits 0x767a.3-0x786b.2 (496.7) 0x07680|db 0a 4e fe fb 42 28 fd a7 93 85 76 15 ed f1 36|..N..B(....v...6| * |until 0x786b.1 (497) | | | | | [21]{}: partition 0x786b.2-0x7a5c.5 (497.3) | | | count: 128 0x07860| 7a | z | rice_parameter: 29 0x786b.2-0x786b.7 (0.5) -0x07860| 7a 96 43 87 89| z.C..| samples: raw bits 0x786b.7-0x7a5c.5 (496.6) +0x07860| 7a 96 43 87 89| z.C..| residuals: raw bits 0x786b.7-0x7a5c.5 (496.6) 0x07870|2e 6b 6e 45 84 3a eb 96 99 97 45 9b d9 33 51 27|.knE.:....E..3Q'| * |until 0x7a5c.4 (497) | | | | | [22]{}: partition 0x7a5c.5-0x7c4c.6 (496.1) | | | count: 128 0x07a50| 0f 7b | .{ | rice_parameter: 29 0x7a5c.5-0x7a5d.2 (0.5) -0x07a50| 7b 4c ae| {L.| samples: raw bits 0x7a5d.2-0x7c4c.6 (495.4) +0x07a50| 7b 4c ae| {L.| residuals: raw bits 0x7a5d.2-0x7c4c.6 (495.4) 0x07a60|fb 27 47 ed 4e d9 90 c4 a0 b7 73 24 26 6b 2e 10|.'G.N.....s$&k..| * |until 0x7c4c.5 (496) | | | | | [23]{}: partition 0x7c4c.6-0x7e3d.4 (496.6) | | | count: 128 0x07c40| b7 ad | .. | rice_parameter: 29 0x7c4c.6-0x7c4d.3 (0.5) -0x07c40| ad d4 4a| ..J| samples: raw bits 0x7c4d.3-0x7e3d.4 (496.1) +0x07c40| ad d4 4a| ..J| residuals: raw bits 0x7c4d.3-0x7e3d.4 (496.1) 0x07c50|74 0b d7 17 d9 11 03 d2 07 9c d3 cc 03 19 27 16|t.............'.| * |until 0x7e3d.3 (497) | | | | | [24]{}: partition 0x7e3d.4-0x802f.4 (498) | | | count: 128 0x07e30| 1e b2 | .. | rice_parameter: 29 0x7e3d.4-0x7e3e.1 (0.5) -0x07e30| b2 e2| ..| samples: raw bits 0x7e3e.1-0x802f.4 (497.3) +0x07e30| b2 e2| ..| residuals: raw bits 0x7e3e.1-0x802f.4 (497.3) 0x07e40|b3 01 5f ed 2e f8 b2 29 28 18 ce 74 08 84 d7 de|.._....)(..t....| * |until 0x802f.3 (498) | | | | | [25]{}: partition 0x802f.4-0x821e.2 (494.6) | | | count: 128 0x08020| be| .| rice_parameter: 29 0x802f.4-0x8030.1 (0.5) 0x08030|f0 |. | -0x08030|f0 c4 49 ef 4f 6b ad 57 26 69 f5 aa 43 70 cd f8|..I.Ok.W&i..Cp..| samples: raw bits 0x8030.1-0x821e.2 (494.1) +0x08030|f0 c4 49 ef 4f 6b ad 57 26 69 f5 aa 43 70 cd f8|..I.Ok.W&i..Cp..| residuals: raw bits 0x8030.1-0x821e.2 (494.1) 0x08040|51 |Q | * |until 0x821e.1 (495) | | | | | [26]{}: partition 0x821e.2-0x840e (495.6) | | | count: 128 0x08210| ba | . | rice_parameter: 29 0x821e.2-0x821e.7 (0.5) -0x08210| ba 79| .y| samples: raw bits 0x821e.7-0x840e (495.1) +0x08210| ba 79| .y| residuals: raw bits 0x821e.7-0x840e (495.1) 0x08220|40 9f 13 03 5a 15 2b 11 52 cf 16 fa 7e cd 63 bb|@...Z.+.R...~.c.| * |until 0x840d.7 (496) | | | | | [27]{}: partition 0x840e-0x85fe.4 (496.4) | | | count: 128 0x08400| ec | . | rice_parameter: 29 0x840e-0x840e.5 (0.5) -0x08400| ec 92| ..| samples: raw bits 0x840e.5-0x85fe.4 (495.7) +0x08400| ec 92| ..| residuals: raw bits 0x840e.5-0x85fe.4 (495.7) 0x08410|f0 c0 c9 17 18 e1 17 fa 3b b8 f2 83 63 90 22 af|........;...c.".| * |until 0x85fe.3 (496) | | | | | [28]{}: partition 0x85fe.4-0x87ef.4 (497) | | | count: 128 0x085f0| fe a8| ..| rice_parameter: 29 0x85fe.4-0x85ff.1 (0.5) -0x085f0| a8| .| samples: raw bits 0x85ff.1-0x87ef.4 (496.3) +0x085f0| a8| .| residuals: raw bits 0x85ff.1-0x87ef.4 (496.3) 0x08600|27 8f d1 70 0f ca c3 52 1b 15 f5 47 f7 0a 09 7d|'..p...R...G...}| * |until 0x87ef.3 (497) | | | | | [29]{}: partition 0x87ef.4-0x89e1.4 (498) | | | count: 128 0x087e0| be| .| rice_parameter: 29 0x87ef.4-0x87f0.1 (0.5) 0x087f0|fa |. | -0x087f0|fa 88 70 a0 db 62 7b b9 93 30 99 76 09 e5 cc b3|..p..b{..0.v....| samples: raw bits 0x87f0.1-0x89e1.4 (497.3) +0x087f0|fa 88 70 a0 db 62 7b b9 93 30 99 76 09 e5 cc b3|..p..b{..0.v....| residuals: raw bits 0x87f0.1-0x89e1.4 (497.3) 0x08800|f9 |. | * |until 0x89e1.3 (498) | | | | | [30]{}: partition 0x89e1.4-0x8bd3.6 (498.2) | | | count: 128 0x089e0| ae eb | .. | rice_parameter: 29 0x89e1.4-0x89e2.1 (0.5) -0x089e0| eb 38 59 26 2a c7 d8 2d 93 31 9c 7d 45 e7| .8Y&*..-.1.}E.| samples: raw bits 0x89e2.1-0x8bd3.6 (497.5) +0x089e0| eb 38 59 26 2a c7 d8 2d 93 31 9c 7d 45 e7| .8Y&*..-.1.}E.| residuals: raw bits 0x89e2.1-0x8bd3.6 (497.5) 0x089f0|7f ea 8f 3f 35 e0 c1 9a 2a 55 42 07 7b 62 37 c1|...?5...*UB.{b7.| * |until 0x8bd3.5 (498) | | | | | [31]{}: partition 0x8bd3.6-0x8dc3.5 (495.7) | | | count: 128 0x08bd0| 43 b5 | C. | rice_parameter: 29 0x8bd3.6-0x8bd4.3 (0.5) -0x08bd0| b5 b7 c8 dd c4 92 cb f4 89 76 c4 5f| .........v._| samples: raw bits 0x8bd4.3-0x8dc3.5 (495.2) +0x08bd0| b5 b7 c8 dd c4 92 cb f4 89 76 c4 5f| .........v._| residuals: raw bits 0x8bd4.3-0x8dc3.5 (495.2) 0x08be0|85 ac 15 6f 95 8f 88 a6 1a fb 00 59 bf d1 c9 01|...o.......Y....| * |until 0x8dc3.4 (496) | | 0x08dc0| 10 | . | byte_align: 0 (valid) 0x8dc3.5-0x8dc4 (0.3) @@ -497,25 +497,25 @@ $ fq -d flac dv mono32.flac | | | [0]{}: partition 0x8dd1.6-0x9d7c.6 (4011) | | | count: 1023 0x08dd0| 4b b3 | K. | rice_parameter: 29 0x8dd1.6-0x8dd2.3 (0.5) -0x08dd0| b3 27 5a 70 0a 75 6f a0 03 51 2d cf f5 3e| .'Zp.uo..Q-..>| samples: raw bits 0x8dd2.3-0x9d7c.6 (4010.3) +0x08dd0| b3 27 5a 70 0a 75 6f a0 03 51 2d cf f5 3e| .'Zp.uo..Q-..>| residuals: raw bits 0x8dd2.3-0x9d7c.6 (4010.3) 0x08de0|bc df e4 68 23 40 18 86 04 80 4e 53 8f be cd f8|...h#@....NS....| * |until 0x9d7c.5 (4011) | | | | | [1]{}: partition 0x9d7c.6-0xa9e7.5 (3178.7) | | | count: 1024 0x09d70| 82 ee | .. | rice_parameter: 23 0x9d7c.6-0x9d7d.3 (0.5) -0x09d70| ee a5 a4| ...| samples: raw bits 0x9d7d.3-0xa9e7.5 (3178.2) +0x09d70| ee a5 a4| ...| residuals: raw bits 0x9d7d.3-0xa9e7.5 (3178.2) 0x09d80|0b 23 64 01 51 22 41 dd a4 e1 e1 74 21 2f 55 40|.#d.Q"A....t!/U@| * |until 0xa9e7.4 (3179) | | | | | [2]{}: partition 0xa9e7.5-0xb650.4 (3176.7) | | | count: 1024 0x0a9e0| 85 d3 | .. | rice_parameter: 23 0xa9e7.5-0xa9e8.2 (0.5) -0x0a9e0| d3 0c dc 05 75 02 82 e3| ....u...| samples: raw bits 0xa9e8.2-0xb650.4 (3176.2) +0x0a9e0| d3 0c dc 05 75 02 82 e3| ....u...| residuals: raw bits 0xa9e8.2-0xb650.4 (3176.2) 0x0a9f0|e9 c2 0d ec 01 5c cb 40 99 c6 a0 56 73 20 25 b1|.....\.@...Vs %.| * |until 0xb650.3 (3177) | | | | | [3]{}: partition 0xb650.4-0xc2bf.1 (3182.5) | | | count: 1024 0x0b650|8b ac |.. | rice_parameter: 23 0xb650.4-0xb651.1 (0.5) -0x0b650| ac 78 d1 0f b0 f8 44 e5 05 79 f0 3e f8 b8 b9| .x....D..y.>...| samples: raw bits 0xb651.1-0xc2bf.1 (3182) +0x0b650| ac 78 d1 0f b0 f8 44 e5 05 79 f0 3e f8 b8 b9| .x....D..y.>...| residuals: raw bits 0xb651.1-0xc2bf.1 (3182) 0x0b660|70 4d 25 f8 0a bc db 0d a7 38 0b 4a a3 f7 4f 73|pM%......8.J..Os| * |until 0xc2bf (3182) | | 0x0c2b0| 00| .| byte_align: 0 (valid) 0xc2bf.1-0xc2c0 (0.7) @@ -568,97 +568,97 @@ $ fq -d flac dv mono32.flac | | | [0]{}: partition 0xc2f4-0xc661.5 (877.5) | | | count: 249 0x0c2f0| d7 | . | rice_parameter: 26 0xc2f4-0xc2f4.5 (0.5) -0x0c2f0| d7 f4 0a e9 ce 6e 07 f8 a1 5f 3e c5| .....n..._>.| samples: raw bits 0xc2f4.5-0xc661.5 (877) +0x0c2f0| d7 f4 0a e9 ce 6e 07 f8 a1 5f 3e c5| .....n..._>.| residuals: raw bits 0xc2f4.5-0xc661.5 (877) 0x0c300|1b 7b c5 41 98 98 15 a1 27 23 e1 de 62 e6 24 c4|.{.A....'#..b.$.| * |until 0xc661.4 (877) | | | | | [1]{}: partition 0xc661.5-0xc9db.7 (890.2) | | | count: 256 0x0c660| de b4 | .. | rice_parameter: 26 0xc661.5-0xc662.2 (0.5) -0x0c660| b4 02 1e 3e 6c d1 7b f0 ff 57 bd ba d0 05| ...>l.{..W....| samples: raw bits 0xc662.2-0xc9db.7 (889.5) +0x0c660| b4 02 1e 3e 6c d1 7b f0 ff 57 bd ba d0 05| ...>l.{..W....| residuals: raw bits 0xc662.2-0xc9db.7 (889.5) 0x0c670|21 11 10 51 3f 0e bd 43 ca 86 d7 a3 c9 05 a4 19|!..Q?..C........| * |until 0xc9db.6 (890) | | | | | [2]{}: partition 0xc9db.7-0xcd5d (897.1) | | | count: 256 0x0c9d0| d7 a8 | .. | rice_parameter: 26 0xc9db.7-0xc9dc.4 (0.5) -0x0c9d0| a8 82 2e 05| ....| samples: raw bits 0xc9dc.4-0xcd5d (896.4) +0x0c9d0| a8 82 2e 05| ....| residuals: raw bits 0xc9dc.4-0xcd5d (896.4) 0x0c9e0|39 33 6a 2a b7 7f e6 f9 02 b6 cf 4b ee 5e ab 9f|93j*.......K.^..| * |until 0xcd5c.7 (897) | | | | | [3]{}: partition 0xcd5d-0xd0de.5 (897.5) | | | count: 256 0x0cd50| d3 | . | rice_parameter: 26 0xcd5d-0xcd5d.5 (0.5) -0x0cd50| d3 0d 9c| ...| samples: raw bits 0xcd5d.5-0xd0de.5 (897) +0x0cd50| d3 0d 9c| ...| residuals: raw bits 0xcd5d.5-0xd0de.5 (897) 0x0cd60|bd 2e 78 78 93 1a f1 87 24 53 f1 c2 0e eb 20 6f|..xx....$S.... o| * |until 0xd0de.4 (897) | | | | | [4]{}: partition 0xd0de.5-0xd475 (918.3) | | | count: 256 0x0d0d0| ae d9| ..| rice_parameter: 27 0xd0de.5-0xd0df.2 (0.5) -0x0d0d0| d9| .| samples: raw bits 0xd0df.2-0xd475 (917.6) +0x0d0d0| d9| .| residuals: raw bits 0xd0df.2-0xd475 (917.6) 0x0d0e0|72 ff ee c2 a0 bf 15 c0 bc 41 ac 52 d2 6d 4f 98|r........A.R.mO.| * |until 0xd474.7 (918) | | | | | [5]{}: partition 0xd475-0xd84a.6 (981.6) | | | count: 256 0x0d470| ea | . | rice_parameter: 29 0xd475-0xd475.5 (0.5) -0x0d470| ea 19 d2 83 4f ff f6 52 59 d7 94| ....O..RY..| samples: raw bits 0xd475.5-0xd84a.6 (981.1) +0x0d470| ea 19 d2 83 4f ff f6 52 59 d7 94| ....O..RY..| residuals: raw bits 0xd475.5-0xd84a.6 (981.1) 0x0d480|96 93 23 a5 fb 52 3a d6 7f 60 c8 34 39 2d 8e 2d|..#..R:..`.49-.-| * |until 0xd84a.5 (982) | | | | | [6]{}: partition 0xd84a.6-0xdc1d.3 (978.5) | | | count: 256 0x0d840| 1b a9 | .. | rice_parameter: 29 0xd84a.6-0xd84b.3 (0.5) -0x0d840| a9 5c e5 95 7b| .\..{| samples: raw bits 0xd84b.3-0xdc1d.3 (978) +0x0d840| a9 5c e5 95 7b| .\..{| residuals: raw bits 0xd84b.3-0xdc1d.3 (978) 0x0d850|e7 c2 c4 e8 0a 18 51 db da e8 15 c0 47 c4 ed dc|......Q.....G...| * |until 0xdc1d.2 (978) | | | | | [7]{}: partition 0xdc1d.3-0xdff0.2 (978.7) | | | count: 256 0x0dc10| fd | . | rice_parameter: 29 0xdc1d.3-0xdc1e (0.5) -0x0dc10| 52 35| R5| samples: raw bits 0xdc1e-0xdff0.2 (978.2) +0x0dc10| 52 35| R5| residuals: raw bits 0xdc1e-0xdff0.2 (978.2) 0x0dc20|ca e0 bd e8 c6 71 68 9c a4 63 c4 b4 7e 67 89 ea|.....qh..c..~g..| * |until 0xdff0.1 (979) | | | | | [8]{}: partition 0xdff0.2-0xe3c4.5 (980.3) | | | count: 256 0x0dff0|3b |; | rice_parameter: 29 0xdff0.2-0xdff0.7 (0.5) -0x0dff0|3b d3 ab 43 2a 4e 79 9c dd b4 8a 30 eb 20 59 72|;..C*Ny....0. Yr| samples: raw bits 0xdff0.7-0xe3c4.5 (979.6) +0x0dff0|3b d3 ab 43 2a 4e 79 9c dd b4 8a 30 eb 20 59 72|;..C*Ny....0. Yr| residuals: raw bits 0xdff0.7-0xe3c4.5 (979.6) 0x0e000|53 80 e5 31 10 38 82 77 6e 21 64 73 fa a4 da b4|S..1.8.wn!ds....| * |until 0xe3c4.4 (980) | | | | | [9]{}: partition 0xe3c4.5-0xe79a.5 (982) | | | count: 256 0x0e3c0| 4f 66 | Of | rice_parameter: 29 0xe3c4.5-0xe3c5.2 (0.5) -0x0e3c0| 66 70 67 58 20 75 07 14 e3 1a 96| fpgX u.....| samples: raw bits 0xe3c5.2-0xe79a.5 (981.3) +0x0e3c0| 66 70 67 58 20 75 07 14 e3 1a 96| fpgX u.....| residuals: raw bits 0xe3c5.2-0xe79a.5 (981.3) 0x0e3d0|7e 67 ef 8c ff cd 8d 72 77 58 4c 67 5f 04 0f 20|~g.....rwXLg_.. | * |until 0xe79a.4 (982) | | | | | [10]{}: partition 0xe79a.5-0xeb70.2 (981.5) | | | count: 256 0x0e790| 07 7d | .} | rice_parameter: 29 0xe79a.5-0xe79b.2 (0.5) -0x0e790| 7d f4 c6 2b 6f| }..+o| samples: raw bits 0xe79b.2-0xeb70.2 (981) +0x0e790| 7d f4 c6 2b 6f| }..+o| residuals: raw bits 0xe79b.2-0xeb70.2 (981) 0x0e7a0|d0 30 f4 82 cb 23 da 10 60 7a a4 a1 8e dd d7 6b|.0...#..`z.....k| * |until 0xeb70.1 (981) | | | | | [11]{}: partition 0xeb70.2-0xef46.1 (981.7) | | | count: 256 0x0eb70|ba |. | rice_parameter: 29 0xeb70.2-0xeb70.7 (0.5) -0x0eb70|ba e1 a6 bc 51 0e 69 1e 21 85 2d a5 fd bc fb 75|....Q.i.!.-....u| samples: raw bits 0xeb70.7-0xef46.1 (981.2) +0x0eb70|ba e1 a6 bc 51 0e 69 1e 21 85 2d a5 fd bc fb 75|....Q.i.!.-....u| residuals: raw bits 0xeb70.7-0xef46.1 (981.2) 0x0eb80|0d d9 99 f9 9d a6 23 95 23 fb e6 d3 67 90 46 da|......#.#...g.F.| * |until 0xef46 (982) | | | | | [12]{}: partition 0xef46.1-0xf31a.3 (980.2) | | | count: 256 0x0ef40| 76 | v | rice_parameter: 29 0xef46.1-0xef46.6 (0.5) -0x0ef40| 76 90 3d 41 ef 86 fc 28 d0 24| v.=A...(.$| samples: raw bits 0xef46.6-0xf31a.3 (979.5) +0x0ef40| 76 90 3d 41 ef 86 fc 28 d0 24| v.=A...(.$| residuals: raw bits 0xef46.6-0xf31a.3 (979.5) 0x0ef50|88 b1 17 28 94 4d a1 d6 bb 97 f9 29 b5 71 33 21|...(.M.....).q3!| * |until 0xf31a.2 (980) | | | | | [13]{}: partition 0xf31a.3-0xf6ed.4 (979.1) | | | count: 256 0x0f310| 7d | } | rice_parameter: 29 0xf31a.3-0xf31b (0.5) -0x0f310| de 7a b8 5e 77| .z.^w| samples: raw bits 0xf31b-0xf6ed.4 (978.4) +0x0f310| de 7a b8 5e 77| .z.^w| residuals: raw bits 0xf31b-0xf6ed.4 (978.4) 0x0f320|ad 21 6f 1e 35 66 fe 22 66 a9 65 67 81 6e f0 b4|.!o.5f."f.eg.n..| * |until 0xf6ed.3 (979) | | | | | [14]{}: partition 0xf6ed.4-0xfac3 (981.4) | | | count: 256 0x0f6e0| 8e ab | .. | rice_parameter: 29 0xf6ed.4-0xf6ee.1 (0.5) -0x0f6e0| ab b7| ..| samples: raw bits 0xf6ee.1-0xfac3 (980.7) +0x0f6e0| ab b7| ..| residuals: raw bits 0xf6ee.1-0xfac3 (980.7) 0x0f6f0|a8 06 92 8b d9 df 66 69 8a dc 00 21 85 2e dc 0e|......fi...!....| * |until 0xfac2.7 (981) | | | | | [15]{}: partition 0xfac3-0xfe98.4 (981.4) | | | count: 256 0x0fac0| ee | . | rice_parameter: 29 0xfac3-0xfac3.5 (0.5) -0x0fac0| ee 86 bd 6a b4 44 5d c2 10 41 4c 49 d2| ...j.D]..ALI.| samples: raw bits 0xfac3.5-0xfe98.4 (980.7) +0x0fac0| ee 86 bd 6a b4 44 5d c2 10 41 4c 49 d2| ...j.D]..ALI.| residuals: raw bits 0xfac3.5-0xfe98.4 (980.7) 0x0fad0|4f 1f 2b 0a a3 e5 cf 2b f7 f1 fd 26 87 4f b7 0e|O.+....+...&.O..| * |until 0xfe98.3 (981) | | 0x0fe90| 40 | @ | byte_align: 0 (valid) 0xfe98.4-0xfe99 (0.4) @@ -692,7 +692,7 @@ $ fq -d flac dv mono32.flac | | | [0]{}: partition 0xfea4.6-0x11622.7 (6014.1) | | | count: 1570 0x0fea0| 43 ac | C. | rice_parameter: 29 0xfea4.6-0xfea5.3 (0.5) -0x0fea0| ac 96 24 70 16 80 26 00 18 a0 0c| ..$p..&....| samples: raw bits 0xfea5.3-0x11622.7 (6013.4) +0x0fea0| ac 96 24 70 16 80 26 00 18 a0 0c| ..$p..&....| residuals: raw bits 0xfea5.3-0x11622.7 (6013.4) 0x0feb0|80 24 bb a1 00 6c 6f ac fe cd a6 e1 ff 1d a7 d3|.$...lo.........| * |until 0x11622.6 (6014) | | 0x11620| 7e | ~ | byte_align: 0 (valid) 0x11622.7-0x11623 (0.1) diff --git a/format/flac/testdata/mono8.fqtest b/format/flac/testdata/mono8.fqtest index aa99cf2b5..af2aa8dcb 100644 --- a/format/flac/testdata/mono8.fqtest +++ b/format/flac/testdata/mono8.fqtest @@ -96,13 +96,13 @@ $ fq -d flac dv mono8.flac | | | [0]{}: partition 0x2082.6-0x2210.2 (397.4) | | | count: 2047 0x2080| 04 3f | .? | rice_parameter: 0 0x2082.6-0x2083.2 (0.4) -0x2080| 3f ff ff ff ff ff ff ff ff ff ff ff ff| ?............| samples: raw bits 0x2083.2-0x2210.2 (397) +0x2080| 3f ff ff ff ff ff ff ff ff ff ff ff ff| ?............| residuals: raw bits 0x2083.2-0x2210.2 (397) 0x2090|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2210.1 (397) | | | | | [1]{}: partition 0x2210.2-0x23b8 (423.6) | | | count: 2048 0x2210|c1 |. | rice_parameter: 0 0x2210.2-0x2210.6 (0.4) -0x2210|c1 bb ff 39 99 32 4c 92 64 99 33 39 ff bb 6d 6d|...9.2L.d.39..mm| samples: raw bits 0x2210.6-0x23b8 (423.2) +0x2210|c1 bb ff 39 99 32 4c 92 64 99 33 39 ff bb 6d 6d|...9.2L.d.39..mm| residuals: raw bits 0x2210.6-0x23b8 (423.2) 0x2220|b6 df fe 66 66 4c 93 26 4c 99 9e 7e ee d6 d5 ad|...ffL.&L..~....| * |until 0x23b7.7 (424) | | | | | byte_align: 0 (valid) 0x23b8-0x23b8 (0) @@ -135,195 +135,195 @@ $ fq -d flac dv mono8.flac | | | [0]{}: partition 0x23c1.6-0x2419 (87.2) | | | count: 128 0x23c0| 14 e6 | .. | rice_parameter: 3 0x23c1.6-0x23c2.2 (0.4) -0x23c0| e6 f7 d2 95 b5 ef 24 b2 cd 34 f3 c4 89 12| ......$..4....| samples: raw bits 0x23c2.2-0x2419 (86.6) +0x23c0| e6 f7 d2 95 b5 ef 24 b2 cd 34 f3 c4 89 12| ......$..4....| residuals: raw bits 0x23c2.2-0x2419 (86.6) 0x23d0|24 58 b1 62 c5 89 12 24 49 e7 9a 69 65 92 4b de|$X.b...$I..ie.K.| * |until 0x2418.7 (87) | | | | | [1]{}: partition 0x2419-0x2465.7 (76.7) | | | count: 128 0x2410| 3c | < | rice_parameter: 3 0x2419-0x2419.4 (0.4) -0x2410| 3c cc cc cc cc cc ca| <......| samples: raw bits 0x2419.4-0x2465.7 (76.3) +0x2410| 3c cc cc cc cc cc ca| <......| residuals: raw bits 0x2419.4-0x2465.7 (76.3) 0x2420|a8 89 9b bd df f4 ad 6d 6b de 49 24 96 59 65 96|.......mk.I$.Ye.| * |until 0x2465.6 (77) | | | | | [2]{}: partition 0x2465.7-0x24c0.2 (90.3) | | | count: 128 0x2460| 9c 68 | .h | rice_parameter: 3 0x2465.7-0x2466.3 (0.4) -0x2460| 68 42 98 e7 10 51 46 1c 70 81| hB...QF.p.| samples: raw bits 0x2466.3-0x24c0.2 (89.7) +0x2460| 68 42 98 e7 10 51 46 1c 70 81| hB...QF.p.| residuals: raw bits 0x2466.3-0x24c0.2 (89.7) 0x2470|42 86 0c 1c 38 70 e0 80 80 80 80 80 81 c3 87 0c|B...8p..........| * |until 0x24c0.1 (90) | | | | | [3]{}: partition 0x24c0.2-0x250f.1 (78.7) | | | count: 128 0x24c0|cd |. | rice_parameter: 3 0x24c0.2-0x24c0.6 (0.4) -0x24c0|cd 29 4a d6 b5 ad 6b 5a d2 94 ff ee dd cc c4 55|.)J...kZ.......U| samples: raw bits 0x24c0.6-0x250f.1 (78.3) +0x24c0|cd 29 4a d6 b5 ad 6b 5a d2 94 ff ee dd cc c4 55|.)J...kZ.......U| residuals: raw bits 0x24c0.6-0x250f.1 (78.3) 0x24d0|66 77 21 0a 52 98 c6 31 8c 63 18 a5 29 08 ee ca|fw!.R..1.c..)...| * |until 0x250f (79) | | | | | [4]{}: partition 0x250f.1-0x256b.2 (92.1) | | | count: 128 0x2500| a5| .| rice_parameter: 4 0x250f.1-0x250f.5 (0.4) -0x2500| a5| .| samples: raw bits 0x250f.5-0x256b.2 (91.5) +0x2500| a5| .| residuals: raw bits 0x250f.5-0x256b.2 (91.5) 0x2510|f3 9d f7 bf 45 34 d5 55 76 59 6d b6 dd 75 d7 df|....E4.UvYm..u..| * |until 0x256b.1 (92) | | | | | [5]{}: partition 0x256b.2-0x25e6.7 (123.5) | | | count: 128 0x2560| d8 | . | rice_parameter: 6 0x256b.2-0x256b.6 (0.4) -0x2560| d8 b8 7a 84 ae| ..z..| samples: raw bits 0x256b.6-0x25e6.7 (123.1) +0x2560| d8 b8 7a 84 ae| ..z..| residuals: raw bits 0x256b.6-0x25e6.7 (123.1) 0x2570|d6 bf d6 eb 9d 26 dd f0 9f 99 4d c5 c9 4f 05 86|.....&....M..O..| * |until 0x25e6.6 (124) | | | | | [6]{}: partition 0x25e6.7-0x2666.1 (127.2) | | | count: 128 0x25e0| f0 d5 | .. | rice_parameter: 6 0x25e6.7-0x25e7.3 (0.4) -0x25e0| d5 de 24 1c 68 22 ba 20 4b| ..$.h". K| samples: raw bits 0x25e7.3-0x2666.1 (126.6) +0x25e0| d5 de 24 1c 68 22 ba 20 4b| ..$.h". K| residuals: raw bits 0x25e7.3-0x2666.1 (126.6) 0x25f0|4d 57 2f 46 32 47 2a bf 2e b8 16 c5 1a fb 69 58|MW/F2G*.......iX| * |until 0x2666 (127) | | | | | [7]{}: partition 0x2666.1-0x26e4.7 (126.6) | | | count: 128 0x2660| b0 | . | rice_parameter: 6 0x2666.1-0x2666.5 (0.4) -0x2660| b0 cc ee b2 f9 52 47 84 8d 18| .....RG...| samples: raw bits 0x2666.5-0x26e4.7 (126.2) +0x2660| b0 cc ee b2 f9 52 47 84 8d 18| .....RG...| residuals: raw bits 0x2666.5-0x26e4.7 (126.2) 0x2670|93 77 93 eb 93 d7 de 93 e5 a4 93 f3 ae 5e 81 50|.w...........^.P| * |until 0x26e4.6 (127) | | | | | [8]{}: partition 0x26e4.7-0x2761.5 (124.6) | | | count: 128 0x26e0| 96 d3 | .. | rice_parameter: 6 0x26e4.7-0x26e5.3 (0.4) -0x26e0| d3 a2 ba 98 74 9d f6 2f 64 14 76| ....t../d.v| samples: raw bits 0x26e5.3-0x2761.5 (124.2) +0x26e0| d3 a2 ba 98 74 9d f6 2f 64 14 76| ....t../d.v| residuals: raw bits 0x26e5.3-0x2761.5 (124.2) 0x26f0|96 21 56 74 f1 e9 4f 68 86 53 f6 d4 2b 24 fd 98|.!Vt..Oh.S..+$..| * |until 0x2761.4 (125) | | | | | [9]{}: partition 0x2761.5-0x27df.1 (125.4) | | | count: 128 0x2760| 9b 70 | .p | rice_parameter: 6 0x2761.5-0x2762.1 (0.4) -0x2760| 70 7b 32 25 ce ed 04 99 f8 92 d6 9e 7a bd| p{2%........z.| samples: raw bits 0x2762.1-0x27df.1 (125) +0x2760| 70 7b 32 25 ce ed 04 99 f8 92 d6 9e 7a bd| p{2%........z.| residuals: raw bits 0x2762.1-0x27df.1 (125) 0x2770|14 8e 80 78 ab 1c 97 5b b5 c4 54 93 c3 6c 09 0e|...x...[..T..l..| * |until 0x27df (125) | | | | | [10]{}: partition 0x27df.1-0x285e.7 (127.6) | | | count: 128 0x27d0| 33| 3| rice_parameter: 6 0x27df.1-0x27df.5 (0.4) -0x27d0| 33| 3| samples: raw bits 0x27df.5-0x285e.7 (127.2) +0x27d0| 33| 3| residuals: raw bits 0x27df.5-0x285e.7 (127.2) 0x27e0|c2 6d d4 e2 34 5b c6 6e 11 06 26 cd 6b 91 06 e1|.m..4[.n..&.k...| * |until 0x285e.6 (128) | | | | | [11]{}: partition 0x285e.7-0x28dc.4 (125.5) | | | count: 128 0x2850| a4 c9| ..| rice_parameter: 6 0x285e.7-0x285f.3 (0.4) -0x2850| c9| .| samples: raw bits 0x285f.3-0x28dc.4 (125.1) +0x2850| c9| .| residuals: raw bits 0x285f.3-0x28dc.4 (125.1) 0x2860|f7 61 97 c5 c3 a1 ad d9 ee 9a c4 3b 98 3c 2e f0|.a.........;.<..| * |until 0x28dc.3 (126) | | | | | [12]{}: partition 0x28dc.4-0x295c.2 (127.6) | | | count: 128 0x28d0| 06 | . | rice_parameter: 6 0x28dc.4-0x28dd (0.4) -0x28d0| 8e c6 fd| ...| samples: raw bits 0x28dd-0x295c.2 (127.2) +0x28d0| 8e c6 fd| ...| residuals: raw bits 0x28dd-0x295c.2 (127.2) 0x28e0|59 d5 e1 ab 8d 09 ce 4d c7 59 cd d5 90 ce aa 64|Y......M.Y.....d| * |until 0x295c.1 (128) | | | | | [13]{}: partition 0x295c.2-0x29d9.5 (125.3) | | | count: 128 0x2950| 9a | . | rice_parameter: 6 0x295c.2-0x295c.6 (0.4) -0x2950| 9a b9 23 19| ..#.| samples: raw bits 0x295c.6-0x29d9.5 (124.7) +0x2950| 9a b9 23 19| ..#.| residuals: raw bits 0x295c.6-0x29d9.5 (124.7) 0x2960|ca 56 69 66 a1 b6 98 88 7e 5e ce 42 65 2b 3b f3|.Vif....~^.Be+;.| * |until 0x29d9.4 (125) | | | | | [14]{}: partition 0x29d9.5-0x2a57.5 (126) | | | count: 128 0x29d0| 3b 2a | ;* | rice_parameter: 6 0x29d9.5-0x29da.1 (0.4) -0x29d0| 2a 1d 97 1a 16 0c| *.....| samples: raw bits 0x29da.1-0x2a57.5 (125.4) +0x29d0| 2a 1d 97 1a 16 0c| *.....| residuals: raw bits 0x29da.1-0x2a57.5 (125.4) 0x29e0|b7 92 f2 8d e8 86 a2 b0 c5 45 a7 0a 0d 49 53 0b|.........E...IS.| * |until 0x2a57.4 (126) | | | | | [15]{}: partition 0x2a57.5-0x2ad5.6 (126.1) | | | count: 128 0x2a50| 43 65 | Ce | rice_parameter: 6 0x2a57.5-0x2a58.1 (0.4) -0x2a50| 65 6c 41 4e a8 34 a2 d2| elAN.4..| samples: raw bits 0x2a58.1-0x2ad5.6 (125.5) +0x2a50| 65 6c 41 4e a8 34 a2 d2| elAN.4..| residuals: raw bits 0x2a58.1-0x2ad5.6 (125.5) 0x2a60|3b 90 13 89 07 3a 48 e4 d4 49 19 e6 35 13 94 2c|;....:H..I..5..,| * |until 0x2ad5.5 (126) | | | | | [16]{}: partition 0x2ad5.6-0x2b52.7 (125.1) | | | count: 128 0x2ad0| 59 97 | Y. | rice_parameter: 6 0x2ad5.6-0x2ad6.2 (0.4) -0x2ad0| 97 6b c8 34 16 16 1d 2b be ca| .k.4...+..| samples: raw bits 0x2ad6.2-0x2b52.7 (124.5) +0x2ad0| 97 6b c8 34 16 16 1d 2b be ca| .k.4...+..| residuals: raw bits 0x2ad6.2-0x2b52.7 (124.5) 0x2ae0|d8 c1 8c 8a af d2 21 bf 6e 08 e6 db d4 5b e2 29|......!.n....[.)| * |until 0x2b52.6 (125) | | | | | [17]{}: partition 0x2b52.7-0x2bd1 (126.1) | | | count: 128 0x2b50| ca c4 | .. | rice_parameter: 6 0x2b52.7-0x2b53.3 (0.4) -0x2b50| c4 58 09 17 31 a5 c1 f6 75 37 de 37 7a| .X..1...u7.7z| samples: raw bits 0x2b53.3-0x2bd1 (125.5) +0x2b50| c4 58 09 17 31 a5 c1 f6 75 37 de 37 7a| .X..1...u7.7z| residuals: raw bits 0x2b53.3-0x2bd1 (125.5) 0x2b60|9c 4e ef 07 d9 89 ce 59 74 9c 50 b4 47 38 6d 5e|.N.....Yt.P.G8m^| * |until 0x2bd0.7 (126) | | | | | [18]{}: partition 0x2bd1-0x2c4f.7 (126.7) | | | count: 128 0x2bd0| 67 | g | rice_parameter: 6 0x2bd1-0x2bd1.4 (0.4) -0x2bd0| 67 08 e2 ce 46 3c 7b d0 62 0e f1 49 b8 06 e9| g...F<{.b..I...| samples: raw bits 0x2bd1.4-0x2c4f.7 (126.3) +0x2bd0| 67 08 e2 ce 46 3c 7b d0 62 0e f1 49 b8 06 e9| g...F<{.b..I...| residuals: raw bits 0x2bd1.4-0x2c4f.7 (126.3) 0x2be0|30 f8 b2 df 20 c3 2e f2 6c 38 8a 9f 6a 7a 31 6b|0... ...l8..jz1k| * |until 0x2c4f.6 (127) | | | | | [19]{}: partition 0x2c4f.7-0x2ccf.2 (127.3) | | | count: 128 0x2c40| 8e| .| rice_parameter: 6 0x2c4f.7-0x2c50.3 (0.4) 0x2c50|c8 |. | -0x2c50|c8 62 91 60 48 e9 76 25 03 f1 06 ca 59 3b 1e 07|.b.`H.v%....Y;..| samples: raw bits 0x2c50.3-0x2ccf.2 (126.7) +0x2c50|c8 62 91 60 48 e9 76 25 03 f1 06 ca 59 3b 1e 07|.b.`H.v%....Y;..| residuals: raw bits 0x2c50.3-0x2ccf.2 (126.7) 0x2c60|24 f2 83 d6 8a 22 65 a2 04 ad 72 68 3f d0 20 27|$...."e...rh?. '| * |until 0x2ccf.1 (127) | | | | | [20]{}: partition 0x2ccf.2-0x2d4f.2 (128) | | | count: 128 0x2cc0| db| .| rice_parameter: 6 0x2ccf.2-0x2ccf.6 (0.4) -0x2cc0| db| .| samples: raw bits 0x2ccf.6-0x2d4f.2 (127.4) +0x2cc0| db| .| residuals: raw bits 0x2ccf.6-0x2d4f.2 (127.4) 0x2cd0|3a b2 39 de 5b e4 ac e9 05 44 bb 0b 2f 6a 2c 73|:.9.[....D../j,s| * |until 0x2d4f.1 (128) | | | | | [21]{}: partition 0x2d4f.2-0x2dcf.5 (128.3) | | | count: 128 0x2d40| db| .| rice_parameter: 6 0x2d4f.2-0x2d4f.6 (0.4) -0x2d40| db| .| samples: raw bits 0x2d4f.6-0x2dcf.5 (127.7) +0x2d40| db| .| residuals: raw bits 0x2d4f.6-0x2dcf.5 (127.7) 0x2d50|72 d4 68 a5 a5 23 7d 31 08 f0 61 27 98 7a be 1e|r.h..#}1..a'.z..| * |until 0x2dcf.4 (128) | | | | | [22]{}: partition 0x2dcf.5-0x2e4e.6 (127.1) | | | count: 128 0x2dc0| 7b| {| rice_parameter: 6 0x2dcf.5-0x2dd0.1 (0.4) 0x2dd0|4d |M | -0x2dd0|4d 64 f8 51 8c b2 74 a6 5e 7a 45 d7 79 ae aa 84|Md.Q..t.^zE.y...| samples: raw bits 0x2dd0.1-0x2e4e.6 (126.5) +0x2dd0|4d 64 f8 51 8c b2 74 a6 5e 7a 45 d7 79 ae aa 84|Md.Q..t.^zE.y...| residuals: raw bits 0x2dd0.1-0x2e4e.6 (126.5) 0x2de0|bb |. | * |until 0x2e4e.5 (127) | | | | | [23]{}: partition 0x2e4e.6-0x2ecc.3 (125.5) | | | count: 128 0x2e40| ed ba| ..| rice_parameter: 6 0x2e4e.6-0x2e4f.2 (0.4) -0x2e40| ba| .| samples: raw bits 0x2e4f.2-0x2ecc.3 (125.1) +0x2e40| ba| .| residuals: raw bits 0x2e4f.2-0x2ecc.3 (125.1) 0x2e50|1c 13 cc 8f 69 7e 48 32 95 97 6e d2 76 28 c9 f2|....i~H2..n.v(..| * |until 0x2ecc.2 (126) | | | | | [24]{}: partition 0x2ecc.3-0x2f4b.5 (127.2) | | | count: 128 0x2ec0| 6d | m | rice_parameter: 6 0x2ecc.3-0x2ecc.7 (0.4) -0x2ec0| 6d df 23 91| m.#.| samples: raw bits 0x2ecc.7-0x2f4b.5 (126.6) +0x2ec0| 6d df 23 91| m.#.| residuals: raw bits 0x2ecc.7-0x2f4b.5 (126.6) 0x2ed0|54 c2 ba 5a 21 8c 62 06 6f 02 11 19 35 2b be 21|T..Z!.b.o...5+.!| * |until 0x2f4b.4 (127) | | | | | [25]{}: partition 0x2f4b.5-0x2fc9.2 (125.5) | | | count: 128 0x2f40| bb 41 | .A | rice_parameter: 6 0x2f4b.5-0x2f4c.1 (0.4) -0x2f40| 41 81 85 3e| A..>| samples: raw bits 0x2f4c.1-0x2fc9.2 (125.1) +0x2f40| 41 81 85 3e| A..>| residuals: raw bits 0x2f4c.1-0x2fc9.2 (125.1) 0x2f50|b9 64 bd 1a 69 1f b4 6f 8a ed 62 56 b6 15 c9 8c|.d..i..o..bV....| * |until 0x2fc9.1 (126) | | | | | [26]{}: partition 0x2fc9.2-0x3047 (125.6) | | | count: 128 0x2fc0| 18 | . | rice_parameter: 6 0x2fc9.2-0x2fc9.6 (0.4) -0x2fc0| 18 d3 11 45 bc 5f 7c| ...E._|| samples: raw bits 0x2fc9.6-0x3047 (125.2) +0x2fc0| 18 d3 11 45 bc 5f 7c| ...E._|| residuals: raw bits 0x2fc9.6-0x3047 (125.2) 0x2fd0|96 eb 7c 4b 20 21 59 e2 c2 a4 8e 73 c5 af d9 69|..|K !Y....s...i| * |until 0x3046.7 (126) | | | | | [27]{}: partition 0x3047-0x30c5.7 (126.7) | | | count: 128 0x3040| 68 | h | rice_parameter: 6 0x3047-0x3047.4 (0.4) -0x3040| 68 1e 3f d0 13 22 3e c8 17| h.?..">..| samples: raw bits 0x3047.4-0x30c5.7 (126.3) +0x3040| 68 1e 3f d0 13 22 3e c8 17| h.?..">..| residuals: raw bits 0x3047.4-0x30c5.7 (126.3) 0x3050|12 92 0e ac e9 de d4 f8 9e c4 99 33 21 c4 28 eb|...........3!.(.| * |until 0x30c5.6 (127) | | | | | [28]{}: partition 0x30c5.7-0x3145 (127.1) | | | count: 128 0x30c0| ee dc | .. | rice_parameter: 6 0x30c5.7-0x30c6.3 (0.4) -0x30c0| dc db 62 e6 e0 b9 b0 c4 4d 2e| ..b.....M.| samples: raw bits 0x30c6.3-0x3145 (126.5) +0x30c0| dc db 62 e6 e0 b9 b0 c4 4d 2e| ..b.....M.| residuals: raw bits 0x30c6.3-0x3145 (126.5) 0x30d0|c3 1b f8 16 e3 58 43 d4 2f d1 60 98 25 ee 43 18|.....XC./.`.%.C.| * |until 0x3144.7 (127) | | | | | [29]{}: partition 0x3145-0x31c5.3 (128.3) | | | count: 128 0x3140| 6e | n | rice_parameter: 6 0x3145-0x3145.4 (0.4) -0x3140| 6e 8e 4a 57 f4 25 8a c5 f4 5c 07| n.JW.%...\.| samples: raw bits 0x3145.4-0x31c5.3 (127.7) +0x3140| 6e 8e 4a 57 f4 25 8a c5 f4 5c 07| n.JW.%...\.| residuals: raw bits 0x3145.4-0x31c5.3 (127.7) 0x3150|d6 33 42 32 26 e1 04 57 c6 aa 9a 70 21 ab eb 2d|.3B2&..W...p!..-| * |until 0x31c5.2 (128) | | | | | [30]{}: partition 0x31c5.3-0x3245.1 (127.6) | | | count: 128 0x31c0| 0d | . | rice_parameter: 6 0x31c5.3-0x31c5.7 (0.4) -0x31c0| 0d 20 4d 98 aa 88 34 e4 d6 a3 c1| . M...4....| samples: raw bits 0x31c5.7-0x3245.1 (127.2) +0x31c0| 0d 20 4d 98 aa 88 34 e4 d6 a3 c1| . M...4....| residuals: raw bits 0x31c5.7-0x3245.1 (127.2) 0x31d0|0e 39 84 5b 84 80 c9 93 d9 80 b9 11 08 55 2b 95|.9.[.........U+.| * |until 0x3245 (128) | | | | | [31]{}: partition 0x3245.1-0x32c2.5 (125.4) | | | count: 128 0x3240| 35 | 5 | rice_parameter: 6 0x3245.1-0x3245.5 (0.4) -0x3240| 35 78 5d ef 7c a0 91 52 a1 1a 19| 5x].|..R...| samples: raw bits 0x3245.5-0x32c2.5 (125) +0x3240| 35 78 5d ef 7c a0 91 52 a1 1a 19| 5x].|..R...| residuals: raw bits 0x3245.5-0x32c2.5 (125) 0x3250|63 aa 73 a3 1a 71 0d 0b 84 a5 a7 9e 46 b2 a9 38|c.s..q......F..8| * |until 0x32c2.4 (125) | | 0x32c0| 60 | ` | byte_align: 0 (valid) 0x32c2.5-0x32c3 (0.3) @@ -357,25 +357,25 @@ $ fq -d flac dv mono8.flac | | | [0]{}: partition 0x32cd.6-0x36f1.1 (1059.3) | | | count: 1023 0x32c0| 09 ad | .. | rice_parameter: 6 0x32cd.6-0x32ce.2 (0.4) -0x32c0| ad 1b| ..| samples: raw bits 0x32ce.2-0x36f1.1 (1058.7) +0x32c0| ad 1b| ..| residuals: raw bits 0x32ce.2-0x36f1.1 (1058.7) 0x32d0|82 2f f5 cf 16 da 21 9f f6 81 20 49 a6 61 52 0a|./....!... I.aR.| * |until 0x36f1 (1059) | | | | | [1]{}: partition 0x36f1.1-0x37c5.1 (212) | | | count: 1024 0x36f0| 01 | . | rice_parameter: 0 0x36f1.1-0x36f1.5 (0.4) -0x36f0| 01 99 e7 f7 6d b5 b5 b6 de f9 e6 66 64 99 32| ....m......fd.2| samples: raw bits 0x36f1.5-0x37c5.1 (211.4) +0x36f0| 01 99 e7 f7 6d b5 b5 b6 de f9 e6 66 64 99 32| ....m......fd.2| residuals: raw bits 0x36f1.5-0x37c5.1 (211.4) 0x3700|64 cc e7 ff 6e b6 b5 ad b7 7f ce 66 64 c9 93 26|d...n......fd..&| * |until 0x37c5 (212) | | | | | [2]{}: partition 0x37c5.1-0x3898.3 (211.2) | | | count: 1024 0x37c0| 84 | . | rice_parameter: 0 0x37c5.1-0x37c5.5 (0.4) -0x37c0| 84 99 99 cf f7 75 b5 ad 5b 6d f7| .....u..[m.| samples: raw bits 0x37c5.5-0x3898.3 (210.6) +0x37c0| 84 99 99 cf f7 75 b5 ad 5b 6d f7| .....u..[m.| residuals: raw bits 0x37c5.5-0x3898.3 (210.6) 0x37d0|3e 66 66 4c 99 93 33 9f fd b6 d6 ad 6b 6d df f3|>ffL..3.....km..| * |until 0x3898.2 (211) | | | | | [3]{}: partition 0x3898.3-0x396b.7 (211.4) | | | count: 1024 0x3890| 60 | ` | rice_parameter: 0 0x3898.3-0x3898.7 (0.4) -0x3890| 60 4c 99 99 9c ff bb 6b| `L.....k| samples: raw bits 0x3898.7-0x396b.7 (211) +0x3890| 60 4c 99 99 9c ff bb 6b| `L.....k| residuals: raw bits 0x3898.7-0x396b.7 (211) 0x38a0|5a d5 ad b7 7f 9c e6 4c c9 99 33 9c ff 76 da d5|Z......L..3..v..| * |until 0x396b.6 (211) | | 0x3960| 32 | 2 | byte_align: 0 (valid) 0x396b.7-0x396c (0.1) @@ -413,97 +413,97 @@ $ fq -d flac dv mono8.flac | | | [0]{}: partition 0x3978.5-0x3a19.7 (161.2) | | | count: 255 0x3970| 21 ad | !. | rice_parameter: 3 0x3978.5-0x3979.1 (0.4) -0x3970| ad 69 4f ee dc cc 45| .iO...E| samples: raw bits 0x3979.1-0x3a19.7 (160.6) +0x3970| ad 69 4f ee dc cc 45| .iO...E| residuals: raw bits 0x3979.1-0x3a19.7 (160.6) 0x3980|45 56 66 77 77 77 77 76 66 55 44 4c 4d de ff a5|EVfwwwwvfUDLM...| * |until 0x3a19.6 (161) | | | | | [1]{}: partition 0x3a19.7-0x3ab6.4 (156.5) | | | count: 256 0x3a10| 12 71 | .q | rice_parameter: 3 0x3a19.7-0x3a1a.3 (0.4) -0x3a10| 71 33 77 bf e9 4a| q3w..J| samples: raw bits 0x3a1a.3-0x3ab6.4 (156.1) +0x3a10| 71 33 77 bf e9 4a| q3w..J| residuals: raw bits 0x3a1a.3-0x3ab6.4 (156.1) 0x3a20|da d7 bc 92 4b 2c d3 4d 3c f3 cf 3c f3 cd 34 d3|....K,.M<..<..4.| * |until 0x3ab6.3 (157) | | | | | [2]{}: partition 0x3ab6.4-0x3b66.1 (175.5) | | | count: 256 0x3ab0| a3 | . | rice_parameter: 3 0x3ab6.4-0x3ab7 (0.4) -0x3ab0| ac ce e4 29 8c 71 04 14 61| ...).q..a| samples: raw bits 0x3ab7-0x3b66.1 (175.1) +0x3ab0| ac ce e4 29 8c 71 04 14 61| ...).q..a| residuals: raw bits 0x3ab7-0x3b66.1 (175.1) 0x3ac0|87 08 10 28 50 c1 83 07 0e 1c 38 70 e1 c3 87 0e|...(P.....8p....| * |until 0x3b66 (176) | | | | | [3]{}: partition 0x3b66.1-0x3c04.2 (158.1) | | | count: 256 0x3b60| 19 | . | rice_parameter: 3 0x3b66.1-0x3b66.5 (0.4) -0x3b60| 19 44 10 e6 31 48 47 66 54 4c| .D..1HGfTL| samples: raw bits 0x3b66.5-0x3c04.2 (157.5) +0x3b60| 19 44 10 e6 31 48 47 66 54 4c| .D..1HGfTL| residuals: raw bits 0x3b66.5-0x3c04.2 (157.5) 0x3b70|4d de ef fa 52 95 ad 6b 5a d6 b4 a5 3f ff bb 73|M...R..kZ...?..s| * |until 0x3c04.1 (158) | | | | | [4]{}: partition 0x3c04.2-0x3cb6.7 (178.5) | | | count: 256 0x3c00| d1 | . | rice_parameter: 4 0x3c04.2-0x3c04.6 (0.4) -0x3c00| d1 b6 59 5d 75 55 4d 14 7f de ef 39| ..Y]uUM....9| samples: raw bits 0x3c04.6-0x3cb6.7 (178.1) +0x3c00| d1 b6 59 5d 75 55 4d 14 7f de ef 39| ..Y]uUM....9| residuals: raw bits 0x3c04.6-0x3cb6.7 (178.1) 0x3c10|bd 6b 39 c6 30 84 25 08 42 10 84 21 18 42 31 9c|.k9.0.%.B..!.B1.| * |until 0x3cb6.6 (179) | | | | | [5]{}: partition 0x3cb6.7-0x3dab.2 (244.3) | | | count: 256 0x3cb0| 2c dc | ,. | rice_parameter: 6 0x3cb6.7-0x3cb7.3 (0.4) -0x3cb0| dc 37 aa b8 5c ba c7 ad d9| .7..\....| samples: raw bits 0x3cb7.3-0x3dab.2 (243.7) +0x3cb0| dc 37 aa b8 5c ba c7 ad d9| .7..\....| residuals: raw bits 0x3cb7.3-0x3dab.2 (243.7) 0x3cc0|f4 80 a3 9d dd 52 ef 09 95 a9 34 22 d4 4b 47 78|.....R....4".KGx| * |until 0x3dab.1 (244) | | | | | [6]{}: partition 0x3dab.2-0x3e98.2 (237) | | | count: 256 0x3da0| 95 | . | rice_parameter: 5 0x3dab.2-0x3dab.6 (0.4) -0x3da0| 95 db a6 42 69| ...Bi| samples: raw bits 0x3dab.6-0x3e98.2 (236.4) +0x3da0| 95 db a6 42 69| ...Bi| residuals: raw bits 0x3dab.6-0x3e98.2 (236.4) 0x3db0|4f 25 3b 09 90 9a e7 c1 30 80 e9 6c e3 c0 90 d4|O%;.....0..l....| * |until 0x3e98.1 (237) | | | | | [7]{}: partition 0x3e98.2-0x3f89 (240.6) | | | count: 256 0x3e90| 55 | U | rice_parameter: 5 0x3e98.2-0x3e98.6 (0.4) -0x3e90| 55 90 b8 a0 24 17 e4 2c| U...$..,| samples: raw bits 0x3e98.6-0x3f89 (240.2) +0x3e90| 55 90 b8 a0 24 17 e4 2c| U...$..,| residuals: raw bits 0x3e98.6-0x3f89 (240.2) 0x3ea0|2a 9b 34 25 81 27 34 fa 12 10 1b 10 b9 11 0e b9|*.4%.'4.........| * |until 0x3f88.7 (241) | | | | | [8]{}: partition 0x3f89-0x407c.1 (243.1) | | | count: 256 0x3f80| 6b | k | rice_parameter: 6 0x3f89-0x3f89.4 (0.4) -0x3f80| 6b a8 39 f4 22 66 47| k.9."fG| samples: raw bits 0x3f89.4-0x407c.1 (242.5) +0x3f80| 6b a8 39 f4 22 66 47| k.9."fG| residuals: raw bits 0x3f89.4-0x407c.1 (242.5) 0x3f90|80 db 89 55 56 66 36 f7 04 76 22 23 aa 9b 6d fb|...UVf6..v"#..m.| * |until 0x407c (243) | | | | | [9]{}: partition 0x407c.1-0x416d.5 (241.4) | | | count: 256 0x4070| b5 | . | rice_parameter: 6 0x407c.1-0x407c.5 (0.4) -0x4070| b5 26 ed f5| .&..| samples: raw bits 0x407c.5-0x416d.5 (241) +0x4070| b5 26 ed f5| .&..| residuals: raw bits 0x407c.5-0x416d.5 (241) 0x4080|7a f1 66 7e 78 8e ca e7 02 2f cb 04 06 79 36 70|z.f~x..../...y6p| * |until 0x416d.4 (241) | | | | | [10]{}: partition 0x416d.5-0x4260 (242.3) | | | count: 256 0x4160| 53 22 | S" | rice_parameter: 6 0x416d.5-0x416e.1 (0.4) -0x4160| 22 bb| ".| samples: raw bits 0x416e.1-0x4260 (241.7) +0x4160| 22 bb| ".| residuals: raw bits 0x416e.1-0x4260 (241.7) 0x4170|20 44 4c b4 ba f4 9c 87 6a 74 3e 1c 6e fc 22 d0| DL.....jt>.n.".| * |until 0x425f.7 (242) | | | | | [11]{}: partition 0x4260-0x4351.2 (241.2) | | | count: 256 0x4260|65 |e | rice_parameter: 6 0x4260-0x4260.4 (0.4) -0x4260|65 ee 84 d8 6d 4c d7 da 5d be a2 ff a2 82 e2 e9|e...mL..].......| samples: raw bits 0x4260.4-0x4351.2 (240.6) +0x4260|65 ee 84 d8 6d 4c d7 da 5d be a2 ff a2 82 e2 e9|e...mL..].......| residuals: raw bits 0x4260.4-0x4351.2 (240.6) 0x4270|0e 2d f7 0f bf 30 d8 56 58 47 99 17 fd bf 3d 33|.-...0.VXG....=3| * |until 0x4351.1 (241) | | | | | [12]{}: partition 0x4351.2-0x4443.5 (242.3) | | | count: 256 0x4350| 1b | . | rice_parameter: 6 0x4351.2-0x4351.6 (0.4) -0x4350| 1b 62 1a 11 25 07 92 16 a9 7b ed 75 a9 82 0a| .b..%....{.u...| samples: raw bits 0x4351.6-0x4443.5 (241.7) +0x4350| 1b 62 1a 11 25 07 92 16 a9 7b ed 75 a9 82 0a| .b..%....{.u...| residuals: raw bits 0x4351.6-0x4443.5 (241.7) 0x4360|d5 b6 6e eb a8 69 6a 5a fd 57 5f 93 90 87 82 6b|..n..ijZ.W_....k| * |until 0x4443.4 (242) | | | | | [13]{}: partition 0x4443.5-0x4533.3 (239.6) | | | count: 256 0x4440| 4a af | J. | rice_parameter: 5 0x4443.5-0x4444.1 (0.4) -0x4440| af b1 bb b3 f3 e1 79 ca ee 84 c5 65| ......y....e| samples: raw bits 0x4444.1-0x4533.3 (239.2) +0x4440| af b1 bb b3 f3 e1 79 ca ee 84 c5 65| ......y....e| residuals: raw bits 0x4444.1-0x4533.3 (239.2) 0x4450|83 6a 99 f1 01 b8 e0 62 75 c3 11 c1 23 f1 5d a4|.j.....bu...#.].| * |until 0x4533.2 (240) | | | | | [14]{}: partition 0x4533.3-0x4626.6 (243.3) | | | count: 256 0x4530| 0c | . | rice_parameter: 6 0x4533.3-0x4533.7 (0.4) -0x4530| 0c 81 3b ad ac ca 12 5d 31 46 f1 ab 0a| ..;....]1F...| samples: raw bits 0x4533.7-0x4626.6 (242.7) +0x4530| 0c 81 3b ad ac ca 12 5d 31 46 f1 ab 0a| ..;....]1F...| residuals: raw bits 0x4533.7-0x4626.6 (242.7) 0x4540|99 03 bf 76 56 be 56 d9 1c 9c a0 b6 6c 75 46 6c|...vV.V.....luFl| * |until 0x4626.5 (243) | | | | | [15]{}: partition 0x4626.6-0x4719.5 (242.7) | | | count: 256 0x4620| f1 ad | .. | rice_parameter: 6 0x4626.6-0x4627.2 (0.4) -0x4620| ad e6 69 b7 73 ae 16 35 e6| ..i.s..5.| samples: raw bits 0x4627.2-0x4719.5 (242.3) +0x4620| ad e6 69 b7 73 ae 16 35 e6| ..i.s..5.| residuals: raw bits 0x4627.2-0x4719.5 (242.3) 0x4630|c4 fc b9 97 62 ce e7 c3 21 19 d1 cf 4c 07 8b f1|....b...!...L...| * |until 0x4719.4 (243) | | 0x4710| a0 | . | byte_align: 0 (valid) 0x4719.5-0x471a (0.3) @@ -537,7 +537,7 @@ $ fq -d flac dv mono8.flac | | | [0]{}: partition 0x4725.6-0x4ced.6 (1480) | | | count: 1570 0x4720| 01 4b | .K | rice_parameter: 5 0x4725.6-0x4726.2 (0.4) -0x4720| 4b 8d 82 22 81 19 6a 31 55 c9| K.."..j1U.| samples: raw bits 0x4726.2-0x4ced.6 (1479.4) +0x4720| 4b 8d 82 22 81 19 6a 31 55 c9| K.."..j1U.| residuals: raw bits 0x4726.2-0x4ced.6 (1479.4) 0x4730|4b e8 09 38 57 55 8b 53 56 14 0b ee 3c 70 14 15|K..8WU.SV...A.$.| samples: raw bits 0x9087.3-0x90f6.5 (111.2) +0x9080| bf 7d f7 c8 3e 41 f2 24 08| .}..>A.$.| residuals: raw bits 0x9087.3-0x90f6.5 (111.2) 0x9090|11 22 44 89 12 44 49 12 24 4c 91 22 64 c9 93 28|."D..DI.$L."d..(| * |until 0x90f6.4 (112) | | | | | [21]{}: partition 0x90f6.5-0x9167.1 (112.4) | | | count: 128 0x90f0| d2 ba | .. | rice_parameter: 5 0x90f6.5-0x90f7.1 (0.4) -0x90f0| ba 74 e9 d3 a7 4e 9d 3a 74| .t...N.:t| samples: raw bits 0x90f7.1-0x9167.1 (112) +0x90f0| ba 74 e9 d3 a7 4e 9d 3a 74| .t...N.:t| residuals: raw bits 0x90f7.1-0x9167.1 (112) 0x9100|e9 d3 c7 4e 9d 3a 74 e9 e3 a7 4e 9d 3a 78 e9 d3|...N.:t...N.:x..| * |until 0x9167 (112) | | | | | [22]{}: partition 0x9167.1-0x91c5.1 (94) | | | count: 128 0x9160| 21 | ! | rice_parameter: 4 0x9167.1-0x9167.5 (0.4) -0x9160| 21 a3 46 8c 18 30 60 b1 82| !.F..0`..| samples: raw bits 0x9167.5-0x91c5.1 (93.4) +0x9160| 21 a3 46 8c 18 30 60 b1 82| !.F..0`..| residuals: raw bits 0x9167.5-0x91c5.1 (93.4) 0x9170|c6 0b 14 2c 58 a1 62 85 09 14 24 50 91 22 44 08|...,X.b...$P."D.| * |until 0x91c5 (94) | | | | | [23]{}: partition 0x91c5.1-0x922a.4 (101.3) | | | count: 128 0x91c0| a5 | . | rice_parameter: 4 0x91c5.1-0x91c5.5 (0.4) -0x91c0| a5 eb 7b e6 f9 ce 77 9d ef 7b ef| ..{...w..{.| samples: raw bits 0x91c5.5-0x922a.4 (100.7) +0x91c0| a5 eb 7b e6 f9 ce 77 9d ef 7b ef| ..{...w..{.| residuals: raw bits 0x91c5.5-0x922a.4 (100.7) 0x91d0|7b df f7 ff ff d1 45 14 51 4d 34 d3 4d 55 53 55|{.....E.QM4.MUSU| * |until 0x922a.3 (101) | | | | | [24]{}: partition 0x922a.4-0x929b (112.4) | | | count: 128 0x9220| f5 | . | rice_parameter: 5 0x922a.4-0x922b (0.4) -0x9220| 62 c5 9b 36 2c| b..6,| samples: raw bits 0x922b-0x929b (112) +0x9220| 62 c5 9b 36 2c| b..6,| residuals: raw bits 0x922b-0x929b (112) 0x9230|59 b3 62 cd ab 36 6c d9 b5 6a d5 9b 56 ad 5a b5|Y.b..6l..j..V.Z.| * |until 0x929a.7 (112) | | | | | [25]{}: partition 0x929b-0x9306 (107) | | | count: 128 0x9290| 56 | V | rice_parameter: 5 0x929b-0x929b.4 (0.4) -0x9290| 56 ed 59 b5 6a| V.Y.j| samples: raw bits 0x929b.4-0x9306 (106.4) +0x9290| 56 ed 59 b5 6a| V.Y.j| residuals: raw bits 0x929b.4-0x9306 (106.4) 0x92a0|d5 9b 56 ac d9 b3 66 d5 9b 36 2c d8 b3 66 c5 8b|..V...f..6,..f..| * |until 0x9305.7 (107) | | | | | [26]{}: partition 0x9306-0x935c.7 (86.7) | | | count: 128 0x9300| 37 | 7 | rice_parameter: 3 0x9306-0x9306.4 (0.4) -0x9300| 37 bd ed 7b 5a d5 b5 6b 5a 56| 7..{Z..kZV| samples: raw bits 0x9306.4-0x935c.7 (86.3) +0x9300| 37 bd ed 7b 5a d5 b5 6b 5a 56| 7..{Z..kZV| residuals: raw bits 0x9306.4-0x935c.7 (86.3) 0x9310|94 a7 fd 3b ff bb bb 7b 77 37 33 31 31 11 51 55|...;...{w7311.QU| * |until 0x935c.6 (87) | | | | | [27]{}: partition 0x935c.7-0x93cd.3 (112.4) | | | count: 128 0x9350| 14 a8 | .. | rice_parameter: 5 0x935c.7-0x935d.3 (0.4) -0x9350| a8 91 24| ..$| samples: raw bits 0x935d.3-0x93cd.3 (112) +0x9350| a8 91 24| ..$| residuals: raw bits 0x935d.3-0x93cd.3 (112) 0x9360|44 91 22 44 c9 12 26 4c 99 32 84 ca 14 28 50 a1|D."D..&L.2...(P.| * |until 0x93cd.2 (112) | | | | | [28]{}: partition 0x93cd.3-0x943d.7 (112.4) | | | count: 128 0x93c0| 4a | J | rice_parameter: 5 0x93cd.3-0x93cd.7 (0.4) -0x93c0| 4a e9 d3| J..| samples: raw bits 0x93cd.7-0x943d.7 (112) +0x93c0| 4a e9 d3| J..| residuals: raw bits 0x93cd.7-0x943d.7 (112) 0x93d0|a7 4e 9e 3a 74 e9 d3 a7 8e 9d 3a 74 e9 d3 c7 4e|.N.:t.....:t...N| * |until 0x943d.6 (112) | | | | | [29]{}: partition 0x943d.7-0x9498.3 (90.4) | | | count: 128 0x9430| 4c 85 | L. | rice_parameter: 4 0x943d.7-0x943e.3 (0.4) -0x9430| 85 8a| ..| samples: raw bits 0x943e.3-0x9498.3 (90) +0x9430| 85 8a| ..| residuals: raw bits 0x943e.3-0x9498.3 (90) 0x9440|16 28 50 91 42 45 09 12 24 40 81 22 04 08 3c f1|.(P.BE..$@."..<.| * |until 0x9498.2 (90) | | | | | [30]{}: partition 0x9498.3-0x9502.2 (105.7) | | | count: 128 0x9490| 6b | k | rice_parameter: 5 0x9498.3-0x9498.7 (0.4) -0x9490| 6b 5d b6 db 6d f6 df 7d| k]..m..}| samples: raw bits 0x9498.7-0x9502.2 (105.3) +0x9490| 6b 5d b6 db 6d f6 df 7d| k]..m..}| residuals: raw bits 0x9498.7-0x9502.2 (105.3) 0x94a0|f7 e3 8e 38 e3 9e 79 e7 9e ba e7 ae fb eb be fb|...8..y.........| * |until 0x9502.1 (106) | | | | | [31]{}: partition 0x9502.2-0x9572.6 (112.4) | | | count: 128 0x9500| d5 | . | rice_parameter: 5 0x9502.2-0x9502.6 (0.4) -0x9500| d5 9b 56 ad 59 b5 6a d5 ab 56 ad da b5 6e| ..V.Y.j..V...n| samples: raw bits 0x9502.6-0x9572.6 (112) +0x9500| d5 9b 56 ad 59 b5 6a d5 ab 56 ad da b5 6e| ..V.Y.j..V...n| residuals: raw bits 0x9502.6-0x9572.6 (112) 0x9510|dd ab 76 ed 5b b7 72 dd bb 76 ed db b9 72 dd cb|..v.[.r..v...r..| * |until 0x9572.5 (112) | | 0x9570| d4 | . | byte_align: 0 (valid) 0x9572.6-0x9573 (0.2) @@ -651,97 +651,97 @@ $ fq -d flac dv stereo16.flac | | | [0]{}: partition 0x957c.6-0x9732.4 (437.6) | | | count: 256 0x9570| 13 10 | .. | rice_parameter: 12 0x957c.6-0x957d.2 (0.4) -0x9570| 10 df f3| ...| samples: raw bits 0x957d.2-0x9732.4 (437.2) +0x9570| 10 df f3| ...| residuals: raw bits 0x957d.2-0x9732.4 (437.2) 0x9580|ff 00 72 df 6c 9a 0b c5 76 2b 94 16 b6 46 5b b8|..r.l...v+...F[.| * |until 0x9732.3 (438) | | | | | [1]{}: partition 0x9732.4-0x98e8.3 (437.7) | | | count: 256 0x9730| 2c | , | rice_parameter: 12 0x9732.4-0x9733 (0.4) -0x9730| 4e b9 17 4f 8d 72 93 42 d7 76 a6 34 83| N..O.r.B.v.4.| samples: raw bits 0x9733-0x98e8.3 (437.3) +0x9730| 4e b9 17 4f 8d 72 93 42 d7 76 a6 34 83| N..O.r.B.v.4.| residuals: raw bits 0x9733-0x98e8.3 (437.3) 0x9740|a1 5b 36 9b 0e e3 0f 6b bd df 41 25 29 55 2f 56|.[6....k..A%)U/V| * |until 0x98e8.2 (438) | | | | | [2]{}: partition 0x98e8.3-0x9a9e.1 (437.6) | | | count: 256 0x98e0| 78 | x | rice_parameter: 12 0x98e8.3-0x98e8.7 (0.4) -0x98e0| 78 b2 0a 86 e9 02 fe c7| x.......| samples: raw bits 0x98e8.7-0x9a9e.1 (437.2) +0x98e0| 78 b2 0a 86 e9 02 fe c7| x.......| residuals: raw bits 0x98e8.7-0x9a9e.1 (437.2) 0x98f0|a8 7a bb c0 ed 5c 65 77 00 19 5d 55 c3 03 9a ba|.z...\ew..]U....| * |until 0x9a9e (438) | | | | | [3]{}: partition 0x9a9e.1-0x9c53.7 (437.6) | | | count: 256 0x9a90| 63 | c | rice_parameter: 12 0x9a9e.1-0x9a9e.5 (0.4) -0x9a90| 63 12| c.| samples: raw bits 0x9a9e.5-0x9c53.7 (437.2) +0x9a90| 63 12| c.| residuals: raw bits 0x9a9e.5-0x9c53.7 (437.2) 0x9aa0|cb 5f 29 7c 94 b2 09 9d e2 db 06 31 ac 3d 36 a8|._)|.......1.=6.| * |until 0x9c53.6 (438) | | | | | [4]{}: partition 0x9c53.7-0x9e1d.2 (457.3) | | | count: 256 0x9c50| 17 8d | .. | rice_parameter: 12 0x9c53.7-0x9c54.3 (0.4) -0x9c50| 8d 4f b2 06 b9 ba a8 29 90 a1 bf e7| .O.....)....| samples: raw bits 0x9c54.3-0x9e1d.2 (456.7) +0x9c50| 8d 4f b2 06 b9 ba a8 29 90 a1 bf e7| .O.....)....| residuals: raw bits 0x9c54.3-0x9e1d.2 (456.7) 0x9c60|fe 00 e5 be d9 34 17 8a ec 57 28 2d 6c 8c b7 70|.....4...W(-l..p| * |until 0x9e1d.1 (457) | | | | | [5]{}: partition 0x9e1d.2-0xa031.1 (531.7) | | | count: 256 0x9e10| 39 | 9 | rice_parameter: 14 0x9e1d.2-0x9e1d.6 (0.4) -0x9e10| 39 81 91| 9..| samples: raw bits 0x9e1d.6-0xa031.1 (531.3) +0x9e10| 39 81 91| 9..| residuals: raw bits 0x9e1d.6-0xa031.1 (531.3) 0x9e20|8f 64 e8 42 2a 6e 7d 4c 40 6f 13 cd 59 17 c6 4e|.d.B*n}L@o..Y..N| * |until 0xa031 (532) | | | | | [6]{}: partition 0xa031.1-0xa23d.3 (524.2) | | | count: 256 0xa030| 71 | q | rice_parameter: 14 0xa031.1-0xa031.5 (0.4) -0xa030| 71 27 95 4d 79 48 18 f4 49 68 cc b8 95 7b 6c| q'.MyH..Ih...{l| samples: raw bits 0xa031.5-0xa23d.3 (523.6) +0xa030| 71 27 95 4d 79 48 18 f4 49 68 cc b8 95 7b 6c| q'.MyH..Ih...{l| residuals: raw bits 0xa031.5-0xa23d.3 (523.6) 0xa040|51 a9 1a bc 14 6e 44 73 74 7c ba c7 0e 5b 46 ac|Q....nDst|...[F.| * |until 0xa23d.2 (524) | | | | | [7]{}: partition 0xa23d.3-0xa44b.6 (526.3) | | | count: 256 0xa230| bd | . | rice_parameter: 14 0xa23d.3-0xa23d.7 (0.4) -0xa230| bd f9 40| ..@| samples: raw bits 0xa23d.7-0xa44b.6 (525.7) +0xa230| bd f9 40| ..@| residuals: raw bits 0xa23d.7-0xa44b.6 (525.7) 0xa240|fb 70 f1 cc 35 d6 0f 1c 71 a7 4e db 0f 9d 54 22|.p..5...q.N...T"| * |until 0xa44b.5 (526) | | | | | [8]{}: partition 0xa44b.6-0xa65d.5 (529.7) | | | count: 256 0xa440| 37 95 | 7. | rice_parameter: 14 0xa44b.6-0xa44c.2 (0.4) -0xa440| 95 05 cc 29| ...)| samples: raw bits 0xa44c.2-0xa65d.5 (529.3) +0xa440| 95 05 cc 29| ...)| residuals: raw bits 0xa44c.2-0xa65d.5 (529.3) 0xa450|6d f6 3c a8 9b b8 3a d9 1a 1e 6f cf 8e e0 b7 8c|m.<...:...o.....| * |until 0xa65d.4 (530) | | | | | [9]{}: partition 0xa65d.5-0xa871.1 (531.4) | | | count: 256 0xa650| af 56 | .V | rice_parameter: 14 0xa65d.5-0xa65e.1 (0.4) -0xa650| 56 aa| V.| samples: raw bits 0xa65e.1-0xa871.1 (531) +0xa650| 56 aa| V.| residuals: raw bits 0xa65e.1-0xa871.1 (531) 0xa660|16 34 96 e7 7b 1f ba a7 b7 4f 9f 8a 87 b5 81 d1|.4..{....O......| * |until 0xa871 (531) | | | | | [10]{}: partition 0xa871.1-0xaa83 (529.7) | | | count: 256 0xa870| 73 | s | rice_parameter: 14 0xa871.1-0xa871.5 (0.4) -0xa870| 73 e1 08 ed a8 58 94 bc 10 6a b0 4b 08 34 1b| s....X...j.K.4.| samples: raw bits 0xa871.5-0xaa83 (529.3) +0xa870| 73 e1 08 ed a8 58 94 bc 10 6a b0 4b 08 34 1b| s....X...j.K.4.| residuals: raw bits 0xa871.5-0xaa83 (529.3) 0xa880|8f 90 47 76 07 3b 7f a1 5b 8e 24 51 38 15 27 f7|..Gv.;..[.$Q8.'.| * |until 0xaa82.7 (530) | | | | | [11]{}: partition 0xaa83-0xac93.2 (528.2) | | | count: 256 0xaa80| e1 | . | rice_parameter: 14 0xaa83-0xaa83.4 (0.4) -0xaa80| e1 66 88 97 fc 3c b8 cc 82 1b e3 87 44| .f...<......D| samples: raw bits 0xaa83.4-0xac93.2 (527.6) +0xaa80| e1 66 88 97 fc 3c b8 cc 82 1b e3 87 44| .f...<......D| residuals: raw bits 0xaa83.4-0xac93.2 (527.6) 0xaa90|0b 21 27 8d d1 f9 c1 50 6d d2 85 a1 de 73 eb 54|.!'....Pm....s.T| * |until 0xac93.1 (528) | | | | | [12]{}: partition 0xac93.2-0xaea5.4 (530.2) | | | count: 256 0xac90| b9 | . | rice_parameter: 14 0xac93.2-0xac93.6 (0.4) -0xac90| b9 df e1 aa 8c af b4 3a a7 b9 36 bc f4| .......:..6..| samples: raw bits 0xac93.6-0xaea5.4 (529.6) +0xac90| b9 df e1 aa 8c af b4 3a a7 b9 36 bc f4| .......:..6..| residuals: raw bits 0xac93.6-0xaea5.4 (529.6) 0xaca0|18 5d 1c f8 22 74 23 80 a5 94 27 dc fd a2 5a 24|.].."t#...'...Z$| * |until 0xaea5.3 (530) | | | | | [13]{}: partition 0xaea5.4-0xb0b5.2 (527.6) | | | count: 256 0xaea0| 5e | ^ | rice_parameter: 14 0xaea5.4-0xaea6 (0.4) -0xaea0| 5b fb b8 4c c4 d2 e5 06 7c 11| [..L....|.| samples: raw bits 0xaea6-0xb0b5.2 (527.2) +0xaea0| 5b fb b8 4c c4 d2 e5 06 7c 11| [..L....|.| residuals: raw bits 0xaea6-0xb0b5.2 (527.2) 0xaeb0|10 25 04 ea f3 9e 9b 06 a2 01 00 b1 e4 48 39 2c|.%...........H9,| * |until 0xb0b5.1 (528) | | | | | [14]{}: partition 0xb0b5.2-0xb2c6.5 (529.3) | | | count: 256 0xb0b0| b9 | . | rice_parameter: 14 0xb0b5.2-0xb0b5.6 (0.4) -0xb0b0| b9 fa 32 9f a3 b4 ee 1f a4 1e 42| ..2.......B| samples: raw bits 0xb0b5.6-0xb2c6.5 (528.7) +0xb0b0| b9 fa 32 9f a3 b4 ee 1f a4 1e 42| ..2.......B| residuals: raw bits 0xb0b5.6-0xb2c6.5 (528.7) 0xb0c0|ae 65 d6 f1 5c 4b f8 a4 09 96 46 84 b2 e4 f3 b3|.e..\K....F.....| * |until 0xb2c6.4 (529) | | | | | [15]{}: partition 0xb2c6.5-0xb4d9 (530.3) | | | count: 256 0xb2c0| 97 26 | .& | rice_parameter: 14 0xb2c6.5-0xb2c7.1 (0.4) -0xb2c0| 26 ea ec aa 1c 82 58 16 ec| &.....X..| samples: raw bits 0xb2c7.1-0xb4d9 (529.7) +0xb2c0| 26 ea ec aa 1c 82 58 16 ec| &.....X..| residuals: raw bits 0xb2c7.1-0xb4d9 (529.7) 0xb2d0|40 12 50 59 d8 c6 90 f2 bd 40 82 24 75 9b 70 c9|@.PY.....@.$u.p.| * |until 0xb4d8.7 (530) | | | | | [1]{}: subframe 0xb4d9-0xb88e.2 (949.2) @@ -760,13 +760,13 @@ $ fq -d flac dv stereo16.flac | | | [0]{}: partition 0xb4de.6-0xb6b4.3 (469.5) | | | count: 2046 0xb4d0| 04 0a| ..| rice_parameter: 0 0xb4de.6-0xb4df.2 (0.4) -0xb4d0| 0a| .| samples: raw bits 0xb4df.2-0xb6b4.3 (469.1) +0xb4d0| 0a| .| residuals: raw bits 0xb4df.2-0xb6b4.3 (469.1) 0xb4e0|59 f2 cf 49 a6 92 96 65 2c cb 9e 52 92 ca 65 29|Y..I...e,..R..e)| * |until 0xb6b4.2 (470) | | | | | [1]{}: partition 0xb6b4.3-0xb88e.2 (473.7) | | | count: 2048 0xb6b0| 20 | | rice_parameter: 0 0xb6b4.3-0xb6b4.7 (0.4) -0xb6b0| 20 25 2c d9 65 97 fe 44 f4 22 52 9d| %,.e..D."R.| samples: raw bits 0xb6b4.7-0xb88e.2 (473.3) +0xb6b0| 20 25 2c d9 65 97 fe 44 f4 22 52 9d| %,.e..D."R.| residuals: raw bits 0xb6b4.7-0xb88e.2 (473.3) 0xb6c0|29 66 e5 2f cb ff a7 d3 4e 94 d9 66 cb 97 2c b4|)f./....N..f..,.| * |until 0xb88e.1 (474) | | 0xb880| 40 | @ | byte_align: 0 (valid) 0xb88e.2-0xb88f (0.6) @@ -812,7 +812,7 @@ $ fq -d flac dv stereo16.flac | | | [0]{}: partition 0xc4e3.6-0xc6a7.2 (451.4) | | | count: 1568 0xc4e0| 00 65 | .e | rice_parameter: 1 0xc4e3.6-0xc4e4.2 (0.4) -0xc4e0| 65 d5 55 5a ad 5a d6 b9 74 ba aa aa| e.UZ.Z..t...| samples: raw bits 0xc4e4.2-0xc6a7.2 (451) +0xc4e0| 65 d5 55 5a ad 5a d6 b9 74 ba aa aa| e.UZ.Z..t...| residuals: raw bits 0xc4e4.2-0xc6a7.2 (451) 0xc4f0|b5 5a b5 72 e5 cb a9 75 6a aa d6 ab 5c ae 96 ba|.Z.r...uj...\...| * |until 0xc6a7.1 (451) | | 0xc6a0| 80 | . | byte_align: 0 (valid) 0xc6a7.2-0xc6a8 (0.6) diff --git a/format/flac/testdata/stereo24.fqtest b/format/flac/testdata/stereo24.fqtest index b74e3add3..ccc216c36 100644 --- a/format/flac/testdata/stereo24.fqtest +++ b/format/flac/testdata/stereo24.fqtest @@ -114,13 +114,13 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x20bd.5-0x2306.4 (584.7) | | | count: 2046 0x020b0| 08 7f | .. | rice_parameter: 0 0x20bd.5-0x20be.1 (0.4) -0x020b0| 7f ff| ..| samples: raw bits 0x20be.1-0x2306.4 (584.3) +0x020b0| 7f ff| ..| residuals: raw bits 0x20be.1-0x2306.4 (584.3) 0x020c0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2306.3 (585) | | | | | [1]{}: partition 0x2306.4-0x2572.5 (620.1) | | | count: 2048 0x02300| 50 | P | rice_parameter: 0 0x2306.4-0x2307 (0.4) -0x02300| 25 32 85 92 ce 59 fc c8 64| %2...Y..d| samples: raw bits 0x2307-0x2572.5 (619.5) +0x02300| 25 32 85 92 ce 59 fc c8 64| %2...Y..d| residuals: raw bits 0x2307-0x2572.5 (619.5) 0x02310|86 42 84 99 0c 98 66 43 85 0c c3 93 33 0a 61 49|.B....fC....3.aI| * |until 0x2572.4 (620) | | | | | [1]{}: subframe 0x2572.5-0x2a12 (1183.3) @@ -156,191 +156,191 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x2590.6-0x25a0.3 (15.5) | | | count: 121 0x02590|14 3f |.? | rice_parameter: 0 0x2590.6-0x2591.2 (0.4) -0x02590| 3f ff ff ff ff ff ff ff ff ff ff ff ff ff ff| ?..............| samples: raw bits 0x2591.2-0x25a0.3 (15.1) +0x02590| 3f ff ff ff ff ff ff ff ff ff ff ff ff ff ff| ?..............| residuals: raw bits 0x2591.2-0x25a0.3 (15.1) 0x025a0|e1 |. | | | | [1]{}: partition 0x25a0.3-0x25b0.7 (16.4) | | | count: 128 0x025a0|e1 |. | rice_parameter: 0 0x25a0.3-0x25a0.7 (0.4) -0x025a0|e1 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| samples: raw bits 0x25a0.7-0x25b0.7 (16) +0x025a0|e1 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| residuals: raw bits 0x25a0.7-0x25b0.7 (16) 0x025b0|fe |. | | | | [2]{}: partition 0x25b0.7-0x2618.6 (103.7) | | | count: 128 0x025b0|fe 90 |.. | rice_parameter: 4 0x25b0.7-0x25b1.3 (0.4) -0x025b0| 90 84 21 08 42 10 84 21 08 42 10 84 21 08 42| ..!.B..!.B..!.B| samples: raw bits 0x25b1.3-0x2618.6 (103.3) +0x025b0| 90 84 21 08 42 10 84 21 08 42 10 84 21 08 42| ..!.B..!.B..!.B| residuals: raw bits 0x25b1.3-0x2618.6 (103.3) 0x025c0|10 84 21 08 42 10 84 21 08 42 10 84 21 08 42 10|..!.B..!.B..!.B.| * |until 0x2618.5 (104) | | | | | [3]{}: partition 0x2618.6-0x263b.5 (34.7) | | | count: 128 0x02610| d0 21 | .! | rice_parameter: 0 0x2618.6-0x2619.2 (0.4) -0x02610| 21 9c 26 87 3c 9f 9c| !.&.<..| samples: raw bits 0x2619.2-0x263b.5 (34.3) +0x02610| 21 9c 26 87 3c 9f 9c| !.&.<..| residuals: raw bits 0x2619.2-0x263b.5 (34.3) 0x02620|f8 66 73 32 4e 43 a1 32 87 30 e6 64 2c 9a 13 33|.fs2NC.2.0.d,..3| 0x02630|27 93 99 39 9f 27 0a 72 66 4c 28 48 |'..9.'.rfL(H | | | | [4]{}: partition 0x263b.5-0x265e (34.3) | | | count: 128 0x02630| 48 70 | Hp | rice_parameter: 0 0x263b.5-0x263c.1 (0.4) -0x02630| 70 b2 72 72| p.rr| samples: raw bits 0x263c.1-0x265e (33.7) +0x02630| 70 b2 72 72| p.rr| residuals: raw bits 0x263c.1-0x265e (33.7) 0x02640|4a 18 67 09 a1 cf 27 e7 3e 19 9c cc 93 90 e8 4c|J.g...'.>......L| 0x02650|a1 cc 39 99 0b 26 84 cc c9 e4 e6 4e 67 c9 |..9..&.....Ng. | | | | [5]{}: partition 0x265e-0x2681.5 (35.5) | | | count: 128 0x02650| 0c | . | rice_parameter: 0 0x265e-0x265e.4 (0.4) -0x02650| 0c 29| .)| samples: raw bits 0x265e.4-0x2681.5 (35.1) +0x02650| 0c 29| .)| residuals: raw bits 0x265e.4-0x2681.5 (35.1) 0x02660|c9 99 30 a1 3c 2c 9c 9c 92 86 19 c2 68 73 c9 f9|..0.<,......hs..| * |until 0x2681.4 (36) | | | | | [6]{}: partition 0x2681.5-0x26a4.4 (34.7) | | | count: 128 0x02680| 78 13 | x. | rice_parameter: 0 0x2681.5-0x2682.1 (0.4) -0x02680| 13 99 39 9f 27 0a 72 66 4c 28 4f 0b 27 27| ..9.'.rfL(O.''| samples: raw bits 0x2682.1-0x26a4.4 (34.3) +0x02680| 13 99 39 9f 27 0a 72 66 4c 28 4f 0b 27 27| ..9.'.rfL(O.''| residuals: raw bits 0x2682.1-0x26a4.4 (34.3) 0x02690|24 a1 86 70 9a 1c f2 7e 73 e1 99 cc c9 39 0e 84|$..p...~s....9..| 0x026a0|ca 1c c3 99 90 |..... | | | | [7]{}: partition 0x26a4.4-0x26c7.1 (34.5) | | | count: 128 0x026a0| 90 | . | rice_parameter: 0 0x26a4.4-0x26a5 (0.4) -0x026a0| 0b 26 84 cc c9 e4 e6 4e 67 c9 c2| .&.....Ng..| samples: raw bits 0x26a5-0x26c7.1 (34.1) +0x026a0| 0b 26 84 cc c9 e4 e6 4e 67 c9 c2| .&.....Ng..| residuals: raw bits 0x26a5-0x26c7.1 (34.1) 0x026b0|9c 99 93 0a 13 c2 c9 c9 c9 28 61 9c 26 87 3c 9f|.........(a.&.<.| 0x026c0|9c f8 66 73 32 4e 43 82 |..fs2NC. | | | | [8]{}: partition 0x26c7.1-0x26ea.4 (35.3) | | | count: 128 0x026c0| 82 | . | rice_parameter: 0 0x26c7.1-0x26c7.5 (0.4) -0x026c0| 82 13 28 73 0e 66 42 c9 a1| ..(s.fB..| samples: raw bits 0x26c7.5-0x26ea.4 (34.7) +0x026c0| 82 13 28 73 0e 66 42 c9 a1| ..(s.fB..| residuals: raw bits 0x26c7.5-0x26ea.4 (34.7) 0x026d0|33 32 79 39 93 99 f2 70 a7 26 64 c2 84 f0 b2 72|32y9...p.&d....r| 0x026e0|72 4a 18 67 09 a1 cf 27 e7 3e 10 |rJ.g...'.>. | | | | [9]{}: partition 0x26ea.4-0x270e.7 (36.3) | | | count: 128 0x026e0| 10 | . | rice_parameter: 0 0x26ea.4-0x26eb (0.4) -0x026e0| 99 cc c9 39 0e| ...9.| samples: raw bits 0x26eb-0x270e.7 (35.7) +0x026e0| 99 cc c9 39 0e| ...9.| residuals: raw bits 0x26eb-0x270e.7 (35.7) 0x026f0|84 ca 1c c3 99 90 b2 68 4c cc 9e 4e 64 e6 7c 9c|.......hL..Nd.|.| 0x02700|29 c9 99 30 a1 3c 2c 9c 9c 92 86 19 c2 68 72 |)..0.<,......hr | | | | [10]{}: partition 0x270e.7-0x2731 (34.1) | | | count: 128 0x02700| 72 1c| r.| rice_parameter: 0 0x270e.7-0x270f.3 (0.4) -0x02700| 1c| .| samples: raw bits 0x270f.3-0x2731 (33.5) +0x02700| 1c| .| residuals: raw bits 0x270f.3-0x2731 (33.5) 0x02710|9f 9c f8 66 73 32 4e 43 a1 32 87 30 e6 64 2c 9a|...fs2NC.2.0.d,.| * |until 0x2730.7 (34) | | | | | [11]{}: partition 0x2731-0x2753.7 (34.7) | | | count: 128 0x02730| 02 | . | rice_parameter: 0 0x2731-0x2731.4 (0.4) -0x02730| 02 4a 18 67 09 a1 cf 27 e7 3e 19 9c cc 93 90| .J.g...'.>.....| samples: raw bits 0x2731.4-0x2753.7 (34.3) +0x02730| 02 4a 18 67 09 a1 cf 27 e7 3e 19 9c cc 93 90| .J.g...'.>.....| residuals: raw bits 0x2731.4-0x2753.7 (34.3) 0x02740|e8 4c a1 cc 39 99 0b 26 84 cc c9 e4 e6 4e 67 c9|.L..9..&.....Ng.| 0x02750|c2 9c 99 92 |.... | | | | [12]{}: partition 0x2753.7-0x2777.1 (35.2) | | | count: 128 0x02750| 92 10 | .. | rice_parameter: 0 0x2753.7-0x2754.3 (0.4) -0x02750| 10 a1 3c 2c 9c 9c 92 86 19 c2 68 73| ..<,......hs| samples: raw bits 0x2754.3-0x2777.1 (34.6) +0x02750| 10 a1 3c 2c 9c 9c 92 86 19 c2 68 73| ..<,......hs| residuals: raw bits 0x2754.3-0x2777.1 (34.6) 0x02760|c9 f9 cf 86 67 33 24 e4 3a 13 28 73 0e 66 42 c9|....g3$.:.(s.fB.| 0x02770|a1 33 32 79 39 93 99 87 |.32y9... | | | | [13]{}: partition 0x2777.1-0x279a.6 (35.5) | | | count: 128 0x02770| 87 | . | rice_parameter: 0 0x2777.1-0x2777.5 (0.4) -0x02770| 87 27 0a 72 66 4c 28 4f 0b| .'.rfL(O.| samples: raw bits 0x2777.5-0x279a.6 (35.1) +0x02770| 87 27 0a 72 66 4c 28 4f 0b| .'.rfL(O.| residuals: raw bits 0x2777.5-0x279a.6 (35.1) 0x02780|27 27 24 a1 86 70 9a 1c f2 7e 73 e1 99 cc c9 39|''$..p...~s....9| 0x02790|0e 84 ca 1c c3 99 90 b2 68 4c cc |........hL. | | | | [14]{}: partition 0x279a.6-0x27bd.3 (34.5) | | | count: 128 0x02790| cc 09 | .. | rice_parameter: 0 0x279a.6-0x279b.2 (0.4) -0x02790| 09 e4 e6 4e 67| ...Ng| samples: raw bits 0x279b.2-0x27bd.3 (34.1) +0x02790| 09 e4 e6 4e 67| ...Ng| residuals: raw bits 0x279b.2-0x27bd.3 (34.1) 0x027a0|c9 c2 9c 99 93 0a 13 c2 c9 c9 c9 28 61 9c 26 87|...........(a.&.| 0x027b0|3c 9f 9c f8 66 73 32 4e 43 a1 32 87 30 e0 |<...fs2NC.2.0. | | | | [15]{}: partition 0x27bd.3-0x27e0 (34.5) | | | count: 128 0x027b0| e0 | . | rice_parameter: 0 0x27bd.3-0x27bd.7 (0.4) -0x027b0| e0 66 42| .fB| samples: raw bits 0x27bd.7-0x27e0 (34.1) +0x027b0| e0 66 42| .fB| residuals: raw bits 0x27bd.7-0x27e0 (34.1) 0x027c0|c9 a1 33 32 79 39 93 99 f2 70 a7 26 64 c2 84 f0|..32y9...p.&d...| 0x027d0|b2 72 72 4a 18 67 09 a1 cf 27 e7 3e 19 9c cc 93|.rrJ.g...'.>....| | | | [16]{}: partition 0x27e0-0x2803.5 (35.5) | | | count: 128 0x027e0|09 |. | rice_parameter: 0 0x27e0-0x27e0.4 (0.4) -0x027e0|09 0e 84 ca 1c c3 99 90 b2 68 4c cc 9e 4e 64 e6|.........hL..Nd.| samples: raw bits 0x27e0.4-0x2803.5 (35.1) +0x027e0|09 0e 84 ca 1c c3 99 90 b2 68 4c cc 9e 4e 64 e6|.........hL..Nd.| residuals: raw bits 0x27e0.4-0x2803.5 (35.1) 0x027f0|7c 9c 29 c9 99 30 a1 3c 2c 9c 9c 92 86 19 c2 68||.)..0.<,......h| 0x02800|73 c9 f9 c8 |s... | | | | [17]{}: partition 0x2803.5-0x2827.5 (36) | | | count: 128 0x02800| c8 78 | .x | rice_parameter: 0 0x2803.5-0x2804.1 (0.4) -0x02800| 78 66 73 32 4e 43 a1 32 87 30 e6 64| xfs2NC.2.0.d| samples: raw bits 0x2804.1-0x2827.5 (35.4) +0x02800| 78 66 73 32 4e 43 a1 32 87 30 e6 64| xfs2NC.2.0.d| residuals: raw bits 0x2804.1-0x2827.5 (35.4) 0x02810|2c 9a 13 33 27 93 99 39 9f 27 0a 72 66 4c 28 4f|,..3'..9.'.rfL(O| 0x02820|0b 27 27 24 a1 86 70 98 |.''$..p. | | | | [18]{}: partition 0x2827.5-0x284a.1 (34.4) | | | count: 128 0x02820| 98 21 | .! | rice_parameter: 0 0x2827.5-0x2828.1 (0.4) -0x02820| 21 cf 27 e7 3e 19 9c cc| !.'.>...| samples: raw bits 0x2828.1-0x284a.1 (34) +0x02820| 21 cf 27 e7 3e 19 9c cc| !.'.>...| residuals: raw bits 0x2828.1-0x284a.1 (34) 0x02830|93 90 e8 4c a1 cc 39 99 0b 26 84 cc c9 e4 e6 4e|...L..9..&.....N| 0x02840|67 c9 c2 9c 99 93 0a 13 c2 c9 84 |g.......... | | | | [19]{}: partition 0x284a.1-0x286c.6 (34.5) | | | count: 128 0x02840| 84 | . | rice_parameter: 0 0x284a.1-0x284a.5 (0.4) -0x02840| 84 9c 92 86 19 c2| ......| samples: raw bits 0x284a.5-0x286c.6 (34.1) +0x02840| 84 9c 92 86 19 c2| ......| residuals: raw bits 0x284a.5-0x286c.6 (34.1) 0x02850|68 73 c9 f9 cf 86 67 33 24 e4 3a 13 28 73 0e 66|hs....g3$.:.(s.f| 0x02860|42 c9 a1 33 32 79 39 93 99 f2 70 a7 24 |B..32y9...p.$ | | | | [20]{}: partition 0x286c.6-0x2890.2 (35.4) | | | count: 128 0x02860| 24 26 | $& | rice_parameter: 0 0x286c.6-0x286d.2 (0.4) -0x02860| 26 4c 28| &L(| samples: raw bits 0x286d.2-0x2890.2 (35) +0x02860| 26 4c 28| &L(| residuals: raw bits 0x286d.2-0x2890.2 (35) 0x02870|4f 0b 27 27 24 a1 86 70 9a 1c f2 7e 73 e1 99 cc|O.''$..p...~s...| * |until 0x2890.1 (35) | | | | | [21]{}: partition 0x2890.2-0x28b3.7 (35.5) | | | count: 128 0x02890|c2 |. | rice_parameter: 0 0x2890.2-0x2890.6 (0.4) -0x02890|c2 67 c9 c2 9c 99 93 0a 13 c2 c9 c9 c9 28 61 9c|.g...........(a.| samples: raw bits 0x2890.6-0x28b3.7 (35.1) +0x02890|c2 67 c9 c2 9c 99 93 0a 13 c2 c9 c9 c9 28 61 9c|.g...........(a.| residuals: raw bits 0x2890.6-0x28b3.7 (35.1) 0x028a0|26 87 3c 9f 9c f8 66 73 32 4e 43 a1 32 87 30 e6|&.<...fs2NC.2.0.| 0x028b0|64 2c 9a 12 |d,.. | | | | [22]{}: partition 0x28b3.7-0x28d6.2 (34.3) | | | count: 128 0x028b0| 12 13 | .. | rice_parameter: 0 0x28b3.7-0x28b4.3 (0.4) -0x028b0| 13 32 79 39 93 99 f2 70 a7 26 64 c2| .2y9...p.&d.| samples: raw bits 0x28b4.3-0x28d6.2 (33.7) +0x028b0| 13 32 79 39 93 99 f2 70 a7 26 64 c2| .2y9...p.&d.| residuals: raw bits 0x28b4.3-0x28d6.2 (33.7) 0x028c0|84 f0 b2 72 72 4a 18 67 09 a1 cf 27 e7 3e 19 9c|...rrJ.g...'.>..| 0x028d0|cc 93 90 e8 4c a1 c0 |....L.. | | | | [23]{}: partition 0x28d6.2-0x28f8.7 (34.5) | | | count: 128 0x028d0| c0 | . | rice_parameter: 0 0x28d6.2-0x28d6.6 (0.4) -0x028d0| c0 c3 99 90 b2 68 4c cc 9e 4e| .....hL..N| samples: raw bits 0x28d6.6-0x28f8.7 (34.1) +0x028d0| c0 c3 99 90 b2 68 4c cc 9e 4e| .....hL..N| residuals: raw bits 0x28d6.6-0x28f8.7 (34.1) 0x028e0|64 e6 7c 9c 29 c9 99 30 a1 3c 2c 9c 9c 92 86 19|d.|.)..0.<,.....| 0x028f0|c2 68 73 c9 f9 cf 86 67 32 |.hs....g2 | | | | [24]{}: partition 0x28f8.7-0x291c.6 (35.7) | | | count: 128 0x028f0| 32 12 | 2. | rice_parameter: 0 0x28f8.7-0x28f9.3 (0.4) -0x028f0| 12 4e 43 a1 32 87 30| .NC.2.0| samples: raw bits 0x28f9.3-0x291c.6 (35.3) +0x028f0| 12 4e 43 a1 32 87 30| .NC.2.0| residuals: raw bits 0x28f9.3-0x291c.6 (35.3) 0x02900|e6 64 2c 9a 13 33 27 93 99 39 9f 27 0a 72 66 4c|.d,..3'..9.'.rfL| 0x02910|28 4f 0b 27 27 24 a1 86 70 9a 1c f2 7c |(O.''$..p...| | | | | [25]{}: partition 0x291c.6-0x2940.4 (35.6) | | | count: 128 0x02910| 7c 27 | |' | rice_parameter: 0 0x291c.6-0x291d.2 (0.4) -0x02910| 27 3e 19| '>.| samples: raw bits 0x291d.2-0x2940.4 (35.2) +0x02910| 27 3e 19| '>.| residuals: raw bits 0x291d.2-0x2940.4 (35.2) 0x02920|9c cc 93 90 e8 4c a1 cc 39 99 0b 26 84 cc c9 e4|.....L..9..&....| * |until 0x2940.3 (36) | | | | | [26]{}: partition 0x2940.4-0x2963.1 (34.5) | | | count: 128 0x02940|90 |. | rice_parameter: 0 0x2940.4-0x2941 (0.4) -0x02940| c2 68 73 c9 f9 cf 86 67 33 24 e4 3a 13 28 73| .hs....g3$.:.(s| samples: raw bits 0x2941-0x2963.1 (34.1) +0x02940| c2 68 73 c9 f9 cf 86 67 33 24 e4 3a 13 28 73| .hs....g3$.:.(s| residuals: raw bits 0x2941-0x2963.1 (34.1) 0x02950|0e 66 42 c9 a1 33 32 79 39 93 99 f2 70 a7 26 64|.fB..32y9...p.&d| 0x02960|c2 84 f0 83 |.... | | | | [27]{}: partition 0x2963.1-0x2985.5 (34.4) | | | count: 128 0x02960| 83 | . | rice_parameter: 0 0x2963.1-0x2963.5 (0.4) -0x02960| 83 27 27 24 a1 86 70 9a 1c f2 7e 73 e1| .''$..p...~s.| samples: raw bits 0x2963.5-0x2985.5 (34) +0x02960| 83 27 27 24 a1 86 70 9a 1c f2 7e 73 e1| .''$..p...~s.| residuals: raw bits 0x2963.5-0x2985.5 (34) 0x02970|99 cc c9 39 0e 84 ca 1c c3 99 90 b2 68 4c cc 9e|...9........hL..| 0x02980|4e 64 e6 7c 9c 28 |Nd.|.( | | | | [28]{}: partition 0x2985.5-0x29a9.1 (35.4) | | | count: 128 0x02980| 28 1c | (. | rice_parameter: 0 0x2985.5-0x2986.1 (0.4) -0x02980| 1c 99 93 0a 13 c2 c9 c9 c9 28| .........(| samples: raw bits 0x2986.1-0x29a9.1 (35) +0x02980| 1c 99 93 0a 13 c2 c9 c9 c9 28| .........(| residuals: raw bits 0x2986.1-0x29a9.1 (35) 0x02990|61 9c 26 87 3c 9f 9c f8 66 73 32 4e 43 a1 32 87|a.&.<...fs2NC.2.| 0x029a0|30 e6 64 2c 9a 13 33 27 93 81 |0.d,..3'.. | | | | [29]{}: partition 0x29a9.1-0x29cc.3 (35.2) | | | count: 128 0x029a0| 81 | . | rice_parameter: 0 0x29a9.1-0x29a9.5 (0.4) -0x029a0| 81 93 99 f2 70 a7 26| ....p.&| samples: raw bits 0x29a9.5-0x29cc.3 (34.6) +0x029a0| 81 93 99 f2 70 a7 26| ....p.&| residuals: raw bits 0x29a9.5-0x29cc.3 (34.6) 0x029b0|64 c2 84 f0 b2 72 72 4a 18 67 09 a1 cf 27 e7 3e|d....rrJ.g...'.>| 0x029c0|19 9c cc 93 90 e8 4c a1 cc 39 99 0b 20 |......L..9.. | | | | [30]{}: partition 0x29cc.3-0x29ef (34.5) | | | count: 128 0x029c0| 20 | | rice_parameter: 0 0x29cc.3-0x29cc.7 (0.4) -0x029c0| 20 68 4c cc| hL.| samples: raw bits 0x29cc.7-0x29ef (34.1) +0x029c0| 20 68 4c cc| hL.| residuals: raw bits 0x29cc.7-0x29ef (34.1) 0x029d0|9e 4e 64 e6 7c 9c 29 c9 99 30 a1 3c 2c 9c 9c 92|.Nd.|.)..0.<,...| 0x029e0|86 19 c2 68 73 c9 f9 cf 86 67 33 24 e4 3a 13 |...hs....g3$.:. | | | | [31]{}: partition 0x29ef-0x2a12 (35) | | | count: 128 0x029e0| 02| .| rice_parameter: 0 0x29ef-0x29ef.4 (0.4) -0x029e0| 02| .| samples: raw bits 0x29ef.4-0x2a12 (34.4) +0x029e0| 02| .| residuals: raw bits 0x29ef.4-0x2a12 (34.4) 0x029f0|87 30 e6 64 2c 9a 13 33 27 93 99 39 9f 27 0a 72|.0.d,..3'..9.'.r| * |until 0x2a11.7 (35) | | | | | byte_align: 0 (valid) 0x2a12-0x2a12 (0) @@ -374,193 +374,193 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x2a1b.6-0x2b74.4 (344.6) | | | count: 128 0x02a10| 56 75 | Vu | rice_parameter: 19 0x2a1b.6-0x2a1c.3 (0.5) -0x02a10| 75 eb ff 8f| u...| samples: raw bits 0x2a1c.3-0x2b74.4 (344.1) +0x02a10| 75 eb ff 8f| u...| residuals: raw bits 0x2a1c.3-0x2b74.4 (344.1) 0x02a20|9f fc 13 ff f3 5f e9 2a ff 55 c7 fb 10 bf db 87|....._.*.U......| * |until 0x2b74.3 (345) | | | | | [1]{}: partition 0x2b74.4-0x2cc1.3 (332.7) | | | count: 128 0x02b70| 09 d9 | .. | rice_parameter: 19 0x2b74.4-0x2b75.1 (0.5) -0x02b70| d9 a8 05 e0 00 61 78 06 40 00 65| .....ax.@.e| samples: raw bits 0x2b75.1-0x2cc1.3 (332.2) +0x02b70| d9 a8 05 e0 00 61 78 06 40 00 65| .....ax.@.e| residuals: raw bits 0x2b75.1-0x2cc1.3 (332.2) 0x02b80|a0 06 65 80 66 28 06 51 00 63 10 06 04 00 5c 98|..e.f(.Q.c....\.| * |until 0x2cc1.2 (333) | | | | | [2]{}: partition 0x2cc1.3-0x2e1a.2 (344.7) | | | count: 128 0x02cc0| 13 | . | rice_parameter: 19 0x2cc1.3-0x2cc2 (0.5) -0x02cc0| f4 f0 04 5c 00 28 a8 01 74 40 0d 1d 00 74| ...\.(..t@...t| samples: raw bits 0x2cc2-0x2e1a.2 (344.2) +0x02cc0| f4 f0 04 5c 00 28 a8 01 74 40 0d 1d 00 74| ...\.(..t@...t| residuals: raw bits 0x2cc2-0x2e1a.2 (344.2) 0x02cd0|b8 01 02 00 04 c2 80 15 e6 00 62 b8 01 b5 e0 07|..........b.....| * |until 0x2e1a.1 (345) | | | | | [3]{}: partition 0x2e1a.2-0x2f69.6 (335.4) | | | count: 128 0x02e10| e6 | . | rice_parameter: 19 0x2e1a.2-0x2e1a.7 (0.5) -0x02e10| e6 93 9f f4 fb ff| ......| samples: raw bits 0x2e1a.7-0x2f69.6 (334.7) +0x02e10| e6 93 9f f4 fb ff| ......| residuals: raw bits 0x2e1a.7-0x2f69.6 (334.7) 0x02e20|aa 6b fd 63 ff eb 88 ff 5e 9f fb 00 3f d8 1f fe|.k.c....^...?...| * |until 0x2f69.5 (335) | | | | | [4]{}: partition 0x2f69.6-0x30c6.4 (348.6) | | | count: 128 0x02f60| fe 98 | .. | rice_parameter: 20 0x2f69.6-0x2f6a.3 (0.5) -0x02f60| 98 63 ff cd 1f fe| .c....| samples: raw bits 0x2f6a.3-0x30c6.4 (348.1) +0x02f60| 98 63 ff cd 1f fe| .c....| residuals: raw bits 0x2f6a.3-0x30c6.4 (348.1) 0x02f70|bb 7f f8 81 ff d9 af ff 7b ff a0 ab fe 8d 97 fa|........{.......| * |until 0x30c6.3 (349) | | | | | [5]{}: partition 0x30c6.4-0x3242.2 (379.6) | | | count: 128 0x030c0| 1b 17 | .. | rice_parameter: 22 0x30c6.4-0x30c7.1 (0.5) -0x030c0| 17 20 47 0f 30 57 90 7f 80| . G.0W...| samples: raw bits 0x30c7.1-0x3242.2 (379.1) +0x030c0| 17 20 47 0f 30 57 90 7f 80| . G.0W...| residuals: raw bits 0x30c7.1-0x3242.2 (379.1) 0x030d0|15 cd df db 20 4a d8 2f 21 fa e4 c2 de 56 7f 74|.... J./!....V.t| * |until 0x3242.1 (380) | | | | | [6]{}: partition 0x3242.2-0x33c1.6 (383.4) | | | count: 128 0x03240| 2d | - | rice_parameter: 22 0x3242.2-0x3242.7 (0.5) -0x03240| 2d 63 0b e5 dc e4 da 3b 75 01 c9 68 86 83| -c.....;u..h..| samples: raw bits 0x3242.7-0x33c1.6 (382.7) +0x03240| 2d 63 0b e5 dc e4 da 3b 75 01 c9 68 86 83| -c.....;u..h..| residuals: raw bits 0x3242.7-0x33c1.6 (382.7) 0x03250|50 32 32 cd cb 9b a1 42 02 f8 e4 b8 75 f4 ed 50|P22....B....u..P| * |until 0x33c1.5 (383) | | | | | [7]{}: partition 0x33c1.6-0x3540.5 (382.7) | | | count: 128 0x033c0| 6e c3 | n. | rice_parameter: 22 0x33c1.6-0x33c2.3 (0.5) -0x033c0| c3 28 44 03 b8 0b ea d3 78 ab dd 39 35 49| .(D.....x..95I| samples: raw bits 0x33c2.3-0x3540.5 (382.2) +0x033c0| c3 28 44 03 b8 0b ea d3 78 ab dd 39 35 49| .(D.....x..95I| residuals: raw bits 0x33c2.3-0x3540.5 (382.2) 0x033d0|c9 c9 0a 77 9d eb 83 11 f8 26 33 e4 0d 62 19 d4|...w.....&3..b..| * |until 0x3540.4 (383) | | | | | [8]{}: partition 0x3540.5-0x36bd.5 (381) | | | count: 128 0x03540|fd a7 |.. | rice_parameter: 22 0x3540.5-0x3541.2 (0.5) -0x03540| a7 08 86 45 42 e7 75 42 af 30 f4 49 ea fd dd| ...EB.uB.0.I...| samples: raw bits 0x3541.2-0x36bd.5 (380.3) +0x03540| a7 08 86 45 42 e7 75 42 af 30 f4 49 ea fd dd| ...EB.uB.0.I...| residuals: raw bits 0x3541.2-0x36bd.5 (380.3) 0x03550|3b d6 5f eb bd e0 5e aa 36 c7 f6 20 29 15 17 ed|;._...^.6.. )...| * |until 0x36bd.4 (381) | | | | | [9]{}: partition 0x36bd.5-0x383b.3 (381.6) | | | count: 128 0x036b0| 0d b8 | .. | rice_parameter: 22 0x36bd.5-0x36be.2 (0.5) -0x036b0| b8 31| .1| samples: raw bits 0x36be.2-0x383b.3 (381.1) +0x036b0| b8 31| .1| residuals: raw bits 0x36be.2-0x383b.3 (381.1) 0x036c0|72 3e 67 bd 99 20 ef 13 02 c5 e6 c4 76 75 bf 9a|r>g.. ......vu..| * |until 0x383b.2 (382) | | | | | [10]{}: partition 0x383b.3-0x39bb.1 (383.6) | | | count: 128 0x03830| 56 | V | rice_parameter: 22 0x383b.3-0x383c (0.5) -0x03830| 78 9f 52 4e| x.RN| samples: raw bits 0x383c-0x39bb.1 (383.1) +0x03830| 78 9f 52 4e| x.RN| residuals: raw bits 0x383c-0x39bb.1 (383.1) 0x03840|d7 51 bc 5d 02 9d 31 88 45 f5 c8 8b b7 c7 7b 33|.Q.]..1.E.....{3| * |until 0x39bb (384) | | | | | [11]{}: partition 0x39bb.1-0x3b39 (381.7) | | | count: 128 0x039b0| 59 | Y | rice_parameter: 22 0x39bb.1-0x39bb.6 (0.5) -0x039b0| 59 3e 8e a6 ef| Y>...| samples: raw bits 0x39bb.6-0x3b39 (381.2) +0x039b0| 59 3e 8e a6 ef| Y>...| residuals: raw bits 0x39bb.6-0x3b39 (381.2) 0x039c0|21 4c 43 a3 b3 01 f7 f8 b7 37 1c 73 ba 48 35 d7|!LC......7.s.H5.| * |until 0x3b38.7 (382) | | | | | [12]{}: partition 0x3b39-0x3cb9 (384) | | | count: 128 0x03b30| b4 | . | rice_parameter: 22 0x3b39-0x3b39.5 (0.5) -0x03b30| b4 7d e0 76 3d 75 b7| .}.v=u.| samples: raw bits 0x3b39.5-0x3cb9 (383.3) +0x03b30| b4 7d e0 76 3d 75 b7| .}.v=u.| residuals: raw bits 0x3b39.5-0x3cb9 (383.3) 0x03b40|d2 02 8a d3 22 8e bc bf 6f 07 85 0d 36 b7 9c 45|...."...o...6..E| * |until 0x3cb8.7 (384) | | | | | [13]{}: partition 0x3cb9-0x3e36.4 (381.4) | | | count: 128 0x03cb0| b5 | . | rice_parameter: 22 0x3cb9-0x3cb9.5 (0.5) -0x03cb0| b5 74 8d 12 3d eb 46| .t..=.F| samples: raw bits 0x3cb9.5-0x3e36.4 (380.7) +0x03cb0| b5 74 8d 12 3d eb 46| .t..=.F| residuals: raw bits 0x3cb9.5-0x3e36.4 (380.7) 0x03cc0|45 57 d3 95 78 04 a1 7d ac ca 83 d3 14 44 cd 4d|EW..x..}.....D.M| * |until 0x3e36.3 (381) | | | | | [14]{}: partition 0x3e36.4-0x3fb4.5 (382.1) | | | count: 128 0x03e30| 5b 2a | [* | rice_parameter: 22 0x3e36.4-0x3e37.1 (0.5) -0x03e30| 2a 51 1c 1d a0 1e 17 2c 13| *Q.....,.| samples: raw bits 0x3e37.1-0x3fb4.5 (381.4) +0x03e30| 2a 51 1c 1d a0 1e 17 2c 13| *Q.....,.| residuals: raw bits 0x3e37.1-0x3fb4.5 (381.4) 0x03e40|19 d9 90 15 c5 5c 0c b6 e0 f7 91 1d 12 c3 51 f3|.....\........Q.| * |until 0x3fb4.4 (382) | | | | | [15]{}: partition 0x3fb4.5-0x4132.6 (382.1) | | | count: 128 0x03fb0| 15 b2 | .. | rice_parameter: 22 0x3fb4.5-0x3fb5.2 (0.5) -0x03fb0| b2 9d 13 b5 9d b3 21 54 c2 a6 d3| ......!T...| samples: raw bits 0x3fb5.2-0x4132.6 (381.4) +0x03fb0| b2 9d 13 b5 9d b3 21 54 c2 a6 d3| ......!T...| residuals: raw bits 0x3fb5.2-0x4132.6 (381.4) 0x03fc0|3d 54 1c 02 1a a3 19 51 8a 14 68 ac 4b 1e 24 0d|=T.....Q..h.K.$.| * |until 0x4132.5 (382) | | | | | [16]{}: partition 0x4132.6-0x42b0 (381.2) | | | count: 128 0x04130| a2 cb | .. | rice_parameter: 22 0x4132.6-0x4133.3 (0.5) -0x04130| cb c0 1b f5 f9 b9 64 1d 4a 1a 3b 4c 0a| ......d.J.;L.| samples: raw bits 0x4133.3-0x42b0 (380.5) +0x04130| cb c0 1b f5 f9 b9 64 1d 4a 1a 3b 4c 0a| ......d.J.;L.| residuals: raw bits 0x4133.3-0x42b0 (380.5) 0x04140|f0 28 ca e2 ad 4e 85 99 55 d2 33 5f 7a 50 65 6c|.(...N..U.3_zPel| * |until 0x42af.7 (381) | | | | | [17]{}: partition 0x42b0-0x442e.1 (382.1) | | | count: 128 0x042b0|b1 |. | rice_parameter: 22 0x42b0-0x42b0.5 (0.5) -0x042b0|b1 14 e6 2e 04 8f fa 3a e2 a5 b6 81 cc 86 2b a9|.......:......+.| samples: raw bits 0x42b0.5-0x442e.1 (381.4) +0x042b0|b1 14 e6 2e 04 8f fa 3a e2 a5 b6 81 cc 86 2b a9|.......:......+.| residuals: raw bits 0x42b0.5-0x442e.1 (381.4) 0x042c0|62 83 30 56 b2 fe 2e 9c 9d 6a 36 4e 0c 39 f7 85|b.0V.....j6N.9..| * |until 0x442e (382) | | | | | [18]{}: partition 0x442e.1-0x45ad.2 (383.1) | | | count: 128 0x04420| d9 | . | rice_parameter: 22 0x442e.1-0x442e.6 (0.5) -0x04420| d9 c1| ..| samples: raw bits 0x442e.6-0x45ad.2 (382.4) +0x04420| d9 c1| ..| residuals: raw bits 0x442e.6-0x45ad.2 (382.4) 0x04430|ae d2 46 58 48 b4 a9 73 93 41 19 8f 30 a7 21 bd|..FXH..s.A..0.!.| * |until 0x45ad.1 (383) | | | | | [19]{}: partition 0x45ad.2-0x472c.5 (383.3) | | | count: 128 0x045a0| 6c | l | rice_parameter: 22 0x45ad.2-0x45ad.7 (0.5) -0x045a0| 6c 89 31| l.1| samples: raw bits 0x45ad.7-0x472c.5 (382.6) +0x045a0| 6c 89 31| l.1| residuals: raw bits 0x45ad.7-0x472c.5 (382.6) 0x045b0|2a 29 31 fd 16 3b 90 84 8c e7 2e 9d 3a 17 77 d0|*)1..;......:.w.| * |until 0x472c.4 (383) | | | | | [20]{}: partition 0x472c.5-0x48ac.6 (384.1) | | | count: 128 0x04720| 4d b3 | M. | rice_parameter: 22 0x472c.5-0x472d.2 (0.5) -0x04720| b3 b9 56| ..V| samples: raw bits 0x472d.2-0x48ac.6 (383.4) +0x04720| b3 b9 56| ..V| residuals: raw bits 0x472d.2-0x48ac.6 (383.4) 0x04730|aa 98 6a 24 5b b3 9e 36 79 e6 70 df be 4b c9 49|..j$[..6y.p..K.I| * |until 0x48ac.5 (384) | | | | | [21]{}: partition 0x48ac.6-0x4a2d.2 (384.4) | | | count: 128 0x048a0| a6 db | .. | rice_parameter: 22 0x48ac.6-0x48ad.3 (0.5) -0x048a0| db bf b1| ...| samples: raw bits 0x48ad.3-0x4a2d.2 (383.7) +0x048a0| db bf b1| ...| residuals: raw bits 0x48ad.3-0x4a2d.2 (383.7) 0x048b0|16 5d 5d a2 f4 3f 46 71 cf 2c b0 96 28 f4 83 1c|.]]..?Fq.,..(...| * |until 0x4a2d.1 (384) | | | | | [22]{}: partition 0x4a2d.2-0x4bac.3 (383.1) | | | count: 128 0x04a20| ed | . | rice_parameter: 22 0x4a2d.2-0x4a2d.7 (0.5) -0x04a20| ed 35 83| .5.| samples: raw bits 0x4a2d.7-0x4bac.3 (382.4) +0x04a20| ed 35 83| .5.| residuals: raw bits 0x4a2d.7-0x4bac.3 (382.4) 0x04a30|9d 8d fc 6b dc ba 11 48 60 e6 2d cf 42 d3 4b f9|...k...H`.-.B.K.| * |until 0x4bac.2 (383) | | | | | [23]{}: partition 0x4bac.3-0x4d2a.2 (381.7) | | | count: 128 0x04ba0| 76 | v | rice_parameter: 22 0x4bac.3-0x4bad (0.5) -0x04ba0| e8 c6 e4| ...| samples: raw bits 0x4bad-0x4d2a.2 (381.2) +0x04ba0| e8 c6 e4| ...| residuals: raw bits 0x4bad-0x4d2a.2 (381.2) 0x04bb0|70 e0 aa 4f 84 f9 32 0a 0e 3d 8b 1f a5 fd 52 f9|p..O..2..=....R.| * |until 0x4d2a.1 (382) | | | | | [24]{}: partition 0x4d2a.2-0x4ea9.4 (383.2) | | | count: 128 0x04d20| 6d | m | rice_parameter: 22 0x4d2a.2-0x4d2a.7 (0.5) -0x04d20| 6d df 40 77 26 2a| m.@w&*| samples: raw bits 0x4d2a.7-0x4ea9.4 (382.5) +0x04d20| 6d df 40 77 26 2a| m.@w&*| residuals: raw bits 0x4d2a.7-0x4ea9.4 (382.5) 0x04d30|e3 93 b0 51 59 0c ac c3 6f 7a bb 0d 1e 5a be a0|...QY...oz...Z..| * |until 0x4ea9.3 (383) | | | | | [25]{}: partition 0x4ea9.4-0x5027.1 (381.5) | | | count: 128 0x04ea0| db 41 | .A | rice_parameter: 22 0x4ea9.4-0x4eaa.1 (0.5) -0x04ea0| 41 a1 db 81 26 61| A...&a| samples: raw bits 0x4eaa.1-0x5027.1 (381) +0x04ea0| 41 a1 db 81 26 61| A...&a| residuals: raw bits 0x4eaa.1-0x5027.1 (381) 0x04eb0|86 a4 ad 42 96 96 b8 f5 29 6a d5 2c bc 12 49 14|...B....)j.,..I.| * |until 0x5027 (381) | | | | | [26]{}: partition 0x5027.1-0x51a4.7 (381.6) | | | count: 128 0x05020| 58 | X | rice_parameter: 22 0x5027.1-0x5027.6 (0.5) -0x05020| 58 d2 02 87 0d 98 b9 49 70| X......Ip| samples: raw bits 0x5027.6-0x51a4.7 (381.1) +0x05020| 58 d2 02 87 0d 98 b9 49 70| X......Ip| residuals: raw bits 0x5027.6-0x51a4.7 (381.1) 0x05030|25 bc e8 64 5f b5 1f 7b bb 7c 98 e8 8e ed b4 17|%..d_..{.|......| * |until 0x51a4.6 (382) | | | | | [27]{}: partition 0x51a4.7-0x5323.7 (383) | | | count: 128 0x051a0| 6b 68 | kh | rice_parameter: 22 0x51a4.7-0x51a5.4 (0.5) -0x051a0| 68 1a ef bd d7 d8 bf 98 9d cf 0b| h..........| samples: raw bits 0x51a5.4-0x5323.7 (382.3) +0x051a0| 68 1a ef bd d7 d8 bf 98 9d cf 0b| h..........| residuals: raw bits 0x51a5.4-0x5323.7 (382.3) 0x051b0|0a 12 d7 bb 21 ef 2d 3e 8a 3f c8 d8 84 17 01 ef|....!.->.?......| * |until 0x5323.6 (383) | | | | | [28]{}: partition 0x5323.7-0x54a3 (383.1) | | | count: 128 0x05320| 93 6e | .n | rice_parameter: 22 0x5323.7-0x5324.4 (0.5) -0x05320| 6e 91 77 6d b0 36 b1 67 20 73 11 f4| n.wm.6.g s..| samples: raw bits 0x5324.4-0x54a3 (382.4) +0x05320| 6e 91 77 6d b0 36 b1 67 20 73 11 f4| n.wm.6.g s..| residuals: raw bits 0x5324.4-0x54a3 (382.4) 0x05330|70 25 7e 5c d5 7c d7 b9 4c 61 db fc 26 e5 b7 97|p%~\.|..La..&...| * |until 0x54a2.7 (383) | | | | | [29]{}: partition 0x54a3-0x5623.2 (384.2) | | | count: 128 0x054a0| b7 | . | rice_parameter: 22 0x54a3-0x54a3.5 (0.5) -0x054a0| b7 4e 0f 47 18 8f a5 24 20 ab e2 56 b9| .N.G...$ ..V.| samples: raw bits 0x54a3.5-0x5623.2 (383.5) +0x054a0| b7 4e 0f 47 18 8f a5 24 20 ab e2 56 b9| .N.G...$ ..V.| residuals: raw bits 0x54a3.5-0x5623.2 (383.5) 0x054b0|cf 5e 12 eb 0e 45 62 89 23 04 af 2a 32 ac bd fb|.^...Eb.#..*2...| * |until 0x5623.1 (384) | | | | | [30]{}: partition 0x5623.2-0x57a3.1 (383.7) | | | count: 128 0x05620| ad | . | rice_parameter: 22 0x5623.2-0x5623.7 (0.5) -0x05620| ad 1e 8d e0 4d a5 09 96 23 30 ac ee e2| ....M...#0...| samples: raw bits 0x5623.7-0x57a3.1 (383.2) +0x05620| ad 1e 8d e0 4d a5 09 96 23 30 ac ee e2| ....M...#0...| residuals: raw bits 0x5623.7-0x57a3.1 (383.2) 0x05630|88 40 00 35 01 b1 e3 e4 e2 d6 d9 8e a4 2c 9b c1|.@.5.........,..| * |until 0x57a3 (384) | | | | | [31]{}: partition 0x57a3.1-0x5920.7 (381.6) | | | count: 128 0x057a0| 5a | Z | rice_parameter: 22 0x57a3.1-0x57a3.6 (0.5) -0x057a0| 5a bf 07 ec 2c f9 ef 07 fe 77 b3 be 3e| Z...,....w..>| samples: raw bits 0x57a3.6-0x5920.7 (381.1) +0x057a0| 5a bf 07 ec 2c f9 ef 07 fe 77 b3 be 3e| Z...,....w..>| residuals: raw bits 0x57a3.6-0x5920.7 (381.1) 0x057b0|0d a0 4f 55 c8 48 aa 08 a9 0f 19 51 18 b0 8b ae|..OU.H.....Q....| * |until 0x5920.6 (382) | | | | | [1]{}: subframe 0x5920.7-0x8a28 (12551.1) @@ -577,194 +577,194 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x5922.5-0x5a85.3 (354.6) | | | count: 128 0x05920| ad 17 | .. | rice_parameter: 20 0x5922.5-0x5923.2 (0.5) -0x05920| 17 77 ff 54 d7 fd 2e 7f f4 25 7f fc 7b| .w.T.....%..{| samples: raw bits 0x5923.2-0x5a85.3 (354.1) +0x05920| 17 77 ff 54 d7 fd 2e 7f f4 25 7f fc 7b| .w.T.....%..{| residuals: raw bits 0x5923.2-0x5a85.3 (354.1) 0x05930|ff be 9f fc ce ff dd 7f fe a6 3f f3 1b ff 89 0f|..........?.....| * |until 0x5a85.2 (355) | | | | | [1]{}: partition 0x5a85.3-0x5be9.7 (356.4) | | | count: 128 0x05a80| f4 | . | rice_parameter: 20 0x5a85.3-0x5a86 (0.5) -0x05a80| 16 15 ff 16 8f ff 16 cd ff 16| ..........| samples: raw bits 0x5a86-0x5be9.7 (355.7) +0x05a80| 16 15 ff 16 8f ff 16 cd ff 16| ..........| residuals: raw bits 0x5a86-0x5be9.7 (355.7) 0x05a90|cf ff 16 93 ff 16 19 ff 15 65 ff 14 73 ff 13 47|.........e..s..G| * |until 0x5be9.6 (356) | | | | | [2]{}: partition 0x5be9.7-0x5d4b.4 (353.5) | | | count: 128 0x05be0| 01 42 | .B | rice_parameter: 20 0x5be9.7-0x5bea.4 (0.5) -0x05be0| 42 d4 40 05 14 00| B.@...| samples: raw bits 0x5bea.4-0x5d4b.4 (353) +0x05be0| 42 d4 40 05 14 00| B.@...| residuals: raw bits 0x5bea.4-0x5d4b.4 (353) 0x05bf0|08 f4 00 3e e8 00 e7 b0 03 4e c0 0b fa 00 2a f4|...>.....N....*.| * |until 0x5d4b.3 (353) | | | | | [3]{}: partition 0x5d4b.4-0x5eb1 (357.4) | | | count: 128 0x05d40| 0a 17 | .. | rice_parameter: 20 0x5d4b.4-0x5d4c.1 (0.5) -0x05d40| 17 7c 00 30| .|.0| samples: raw bits 0x5d4c.1-0x5eb1 (356.7) +0x05d40| 17 7c 00 30| .|.0| residuals: raw bits 0x5d4c.1-0x5eb1 (356.7) 0x05d50|38 00 62 08 00 c5 80 01 89 e0 03 0a 80 05 f3 80|8.b.............| * |until 0x5eb0.7 (357) | | | | | [4]{}: partition 0x5eb1-0x601e.4 (365.4) | | | count: 128 0x05eb0| aa | . | rice_parameter: 21 0x5eb1-0x5eb1.5 (0.5) -0x05eb0| aa ef bf f5 91 ff ea 81 ff d3 b6 ff a4 c1 ff| ...............| samples: raw bits 0x5eb1.5-0x601e.4 (364.7) +0x05eb0| aa ef bf f5 91 ff ea 81 ff d3 b6 ff a4 c1 ff| ...............| residuals: raw bits 0x5eb1.5-0x601e.4 (364.7) 0x05ec0|44 17 ff fa 7f ff 92 3f fc ed ff ee 63 ff a4 8f|D......?....c...| * |until 0x601e.3 (365) | | | | | [5]{}: partition 0x601e.4-0x61ac.6 (398.2) | | | count: 128 0x06010| 9b f9| ..| rice_parameter: 23 0x601e.4-0x601f.1 (0.5) -0x06010| f9| .| samples: raw bits 0x601f.1-0x61ac.6 (397.5) +0x06010| f9| .| residuals: raw bits 0x601f.1-0x61ac.6 (397.5) 0x06020|a3 11 f6 fc 05 f8 22 da 4f 16 a5 7b 0d 30 6e 61|......".O..{.0na| * |until 0x61ac.5 (398) | | | | | [6]{}: partition 0x61ac.6-0x633b (398.2) | | | count: 128 0x061a0| 26 e5 | &. | rice_parameter: 23 0x61ac.6-0x61ad.3 (0.5) -0x061a0| e5 77 fd| .w.| samples: raw bits 0x61ad.3-0x633b (397.5) +0x061a0| e5 77 fd| .w.| residuals: raw bits 0x61ad.3-0x633b (397.5) 0x061b0|12 44 c9 eb 1d 51 42 9a 8e 50 69 50 f4 91 9b 58|.D...QB..PiP...X| * |until 0x633a.7 (398) | | | | | [7]{}: partition 0x633b-0x64c9.2 (398.2) | | | count: 128 0x06330| bd | . | rice_parameter: 23 0x633b-0x633b.5 (0.5) -0x06330| bd af 56 db fc| ..V..| samples: raw bits 0x633b.5-0x64c9.2 (397.5) +0x06330| bd af 56 db fc| ..V..| residuals: raw bits 0x633b.5-0x64c9.2 (397.5) 0x06340|19 d2 88 4f b1 77 bd dc 2e 06 0b 06 92 46 e9 30|...O.w.......F.0| * |until 0x64c9.1 (398) | | | | | [8]{}: partition 0x64c9.2-0x6658.7 (399.5) | | | count: 128 0x064c0| 6e | n | rice_parameter: 23 0x64c9.2-0x64c9.7 (0.5) -0x064c0| 6e 63 8c a9 8b c2 87| nc.....| samples: raw bits 0x64c9.7-0x6658.7 (399) +0x064c0| 6e 63 8c a9 8b c2 87| nc.....| residuals: raw bits 0x64c9.7-0x6658.7 (399) 0x064d0|67 e0 d4 df 25 17 6b 68 34 af 21 ef f6 81 83 9c|g...%.kh4.!.....| * |until 0x6658.6 (399) | | | | | [9]{}: partition 0x6658.7-0x67e7.7 (399) | | | count: 128 0x06650| 7b 7e | {~ | rice_parameter: 23 0x6658.7-0x6659.4 (0.5) -0x06650| 7e ed aa af 35 c4 18| ~...5..| samples: raw bits 0x6659.4-0x67e7.7 (398.3) +0x06650| 7e ed aa af 35 c4 18| ~...5..| residuals: raw bits 0x6659.4-0x67e7.7 (398.3) 0x06660|ff 57 35 4a 48 bf 9e 03 3c 4f 6b 9f 4b 0a 64 36|.W5JH...E.| * |until 0x6c92.5 (398) | | | | | [13]{}: partition 0x6c92.6-0x6e21.4 (398.6) | | | count: 128 0x06c90| 66 f1 | f. | rice_parameter: 23 0x6c92.6-0x6c93.3 (0.5) -0x06c90| f1 64 75 ad 2f a2 81 4c df f5 c1 b0 9e| .du./..L.....| samples: raw bits 0x6c93.3-0x6e21.4 (398.1) +0x06c90| f1 64 75 ad 2f a2 81 4c df f5 c1 b0 9e| .du./..L.....| residuals: raw bits 0x6c93.3-0x6e21.4 (398.1) 0x06ca0|e1 d5 11 22 42 72 fb ca e7 ff 0c dd 26 48 6f e0|..."Br......&Ho.| * |until 0x6e21.3 (399) | | | | | [14]{}: partition 0x6e21.4-0x6fb0.5 (399.1) | | | count: 128 0x06e20| ab ab | .. | rice_parameter: 23 0x6e21.4-0x6e22.1 (0.5) -0x06e20| ab 92 5a 7b 60 64 65 9d ef 48 4c 70 25 3e| ..Z{`de..HLp%>| samples: raw bits 0x6e22.1-0x6fb0.5 (398.4) +0x06e20| ab 92 5a 7b 60 64 65 9d ef 48 4c 70 25 3e| ..Z{`de..HLp%>| residuals: raw bits 0x6e22.1-0x6fb0.5 (398.4) 0x06e30|91 14 9a fd ba 23 00 e7 5c 29 d0 f7 c9 43 81 9b|.....#..\)...C..| * |until 0x6fb0.4 (399) | | | | | [15]{}: partition 0x6fb0.5-0x713f.6 (399.1) | | | count: 128 0x06fb0|7d d3 |}. | rice_parameter: 23 0x6fb0.5-0x6fb1.2 (0.5) -0x06fb0| d3 7e 77 59 17 8b d6 75 de 46 4c b8 10 8c 2c| .~wY...u.FL...,| samples: raw bits 0x6fb1.2-0x713f.6 (398.4) +0x06fb0| d3 7e 77 59 17 8b d6 75 de 46 4c b8 10 8c 2c| .~wY...u.FL...,| residuals: raw bits 0x6fb1.2-0x713f.6 (398.4) 0x06fc0|f5 89 0c 55 2f 7b 41 c5 a1 d5 6d 30 80 e4 d2 77|...U/{A...m0...w| * |until 0x713f.5 (399) | | | | | [16]{}: partition 0x713f.6-0x72d0.5 (400.7) | | | count: 128 0x07130| 46| F| rice_parameter: 23 0x713f.6-0x7140.3 (0.5) 0x07140|ff |. | -0x07140|ff e3 76 04 61 62 41 8b 48 5a 98 a2 e6 5f d6 ec|..v.abA.HZ..._..| samples: raw bits 0x7140.3-0x72d0.5 (400.2) +0x07140|ff e3 76 04 61 62 41 8b 48 5a 98 a2 e6 5f d6 ec|..v.abA.HZ..._..| residuals: raw bits 0x7140.3-0x72d0.5 (400.2) 0x07150|62 69 d4 a7 eb 6e 0d d5 ef c8 d2 f7 ff 9e 24 ae|bi...n........$.| * |until 0x72d0.4 (401) | | | | | [17]{}: partition 0x72d0.5-0x745e.4 (397.7) | | | count: 128 0x072d0|9d d7 |.. | rice_parameter: 23 0x72d0.5-0x72d1.2 (0.5) -0x072d0| d7 00 ba 47 57 9e d6 5b b0 93 c0 07 03 43 dd| ...GW..[.....C.| samples: raw bits 0x72d1.2-0x745e.4 (397.2) +0x072d0| d7 00 ba 47 57 9e d6 5b b0 93 c0 07 03 43 dd| ...GW..[.....C.| residuals: raw bits 0x72d1.2-0x745e.4 (397.2) 0x072e0|da 06 47 2d 3d 5c fe 47 43 72 6e 69 3b 71 1c de|..G-=\.GCrni;q..| * |until 0x745e.3 (398) | | | | | [18]{}: partition 0x745e.4-0x75ed (398.4) | | | count: 128 0x07450| 0b bb| ..| rice_parameter: 23 0x745e.4-0x745f.1 (0.5) -0x07450| bb| .| samples: raw bits 0x745f.1-0x75ed (397.7) +0x07450| bb| .| residuals: raw bits 0x745f.1-0x75ed (397.7) 0x07460|3b 30 06 35 83 0c 51 74 f9 5f 38 42 a6 a6 5d 5a|;0.5..Qt._8B..]Z| * |until 0x75ec.7 (398) | | | | | [19]{}: partition 0x75ed-0x777c (399) | | | count: 128 0x075e0| bb | . | rice_parameter: 23 0x75ed-0x75ed.5 (0.5) -0x075e0| bb 33 7f| .3.| samples: raw bits 0x75ed.5-0x777c (398.3) +0x075e0| bb 33 7f| .3.| residuals: raw bits 0x75ed.5-0x777c (398.3) 0x075f0|ef 1e e5 2d 3c a2 25 d9 f3 60 be e3 2a 39 8b c2|...-<.%..`..*9..| * |until 0x777b.7 (399) | | | | | [20]{}: partition 0x777c-0x790a.6 (398.6) | | | count: 128 0x07770| be | . | rice_parameter: 23 0x777c-0x777c.5 (0.5) -0x07770| be 2d 2f 4a| .-/J| samples: raw bits 0x777c.5-0x790a.6 (398.1) +0x07770| be 2d 2f 4a| .-/J| residuals: raw bits 0x777c.5-0x790a.6 (398.1) 0x07780|ef 9b 87 b5 0b ab bf f1 c6 07 39 71 8f 41 92 2f|..........9q.A./| * |until 0x790a.5 (399) | | | | | [21]{}: partition 0x790a.6-0x7a9a.1 (399.3) | | | count: 128 0x07900| 22 e4 | ". | rice_parameter: 23 0x790a.6-0x790b.3 (0.5) -0x07900| e4 3e 29 43 38| .>)C8| samples: raw bits 0x790b.3-0x7a9a.1 (398.6) +0x07900| e4 3e 29 43 38| .>)C8| residuals: raw bits 0x790b.3-0x7a9a.1 (398.6) 0x07910|6d a4 71 72 c6 a8 53 4a 37 4f b6 8b bf 7e 1a 73|m.qr..SJ7O...~.s| * |until 0x7a9a (399) | | | | | [22]{}: partition 0x7a9a.1-0x7c29.3 (399.2) | | | count: 128 0x07a90| dd | . | rice_parameter: 23 0x7a9a.1-0x7a9a.6 (0.5) -0x07a90| dd a4 0a 15 c7 0b| ......| samples: raw bits 0x7a9a.6-0x7c29.3 (398.5) +0x07a90| dd a4 0a 15 c7 0b| ......| residuals: raw bits 0x7a9a.6-0x7c29.3 (398.5) 0x07aa0|3e ad 12 1c d3 74 c2 1b 41 90 ce fd a6 2d 3c 85|>....t..A....-<.| * |until 0x7c29.2 (399) | | | | | [23]{}: partition 0x7c29.3-0x7db6.6 (397.3) | | | count: 128 0x07c20| b7 | . | rice_parameter: 23 0x7c29.3-0x7c2a (0.5) -0x07c20| 5f df c7 67 81 d3| _..g..| samples: raw bits 0x7c2a-0x7db6.6 (396.6) +0x07c20| 5f df c7 67 81 d3| _..g..| residuals: raw bits 0x7c2a-0x7db6.6 (396.6) 0x07c30|f3 cc 8e ab 8a 2e 99 ed 91 f8 23 ba 26 28 18 e7|..........#.&(..| * |until 0x7db6.5 (397) | | | | | [24]{}: partition 0x7db6.6-0x7f45.2 (398.4) | | | count: 128 0x07db0| f2 e4 | .. | rice_parameter: 23 0x7db6.6-0x7db7.3 (0.5) -0x07db0| e4 80 2b e9 17 94 a2 d7 bb| ..+......| samples: raw bits 0x7db7.3-0x7f45.2 (397.7) +0x07db0| e4 80 2b e9 17 94 a2 d7 bb| ..+......| residuals: raw bits 0x7db7.3-0x7f45.2 (397.7) 0x07dc0|f1 5d 1e 90 ee 5f eb ec 29 aa d4 fe 11 5f af 21|.]..._..)...._.!| * |until 0x7f45.1 (398) | | | | | [25]{}: partition 0x7f45.2-0x80d5 (399.6) | | | count: 128 0x07f40| 2f | / | rice_parameter: 23 0x7f45.2-0x7f45.7 (0.5) -0x07f40| 2f e3 e9 32 52 18 46 19 d9 c6 08| /..2R.F....| samples: raw bits 0x7f45.7-0x80d5 (399.1) +0x07f40| 2f e3 e9 32 52 18 46 19 d9 c6 08| /..2R.F....| residuals: raw bits 0x7f45.7-0x80d5 (399.1) 0x07f50|6c 1c a3 fd 68 7f 71 1e 4e 8a 69 08 64 51 bb 10|l...h.q.N.i.dQ..| * |until 0x80d4.7 (400) | | | | | [26]{}: partition 0x80d5-0x8263.7 (398.7) | | | count: 128 0x080d0| bd | . | rice_parameter: 23 0x80d5-0x80d5.5 (0.5) -0x080d0| bd bc ee 69 c0 a7 13 84 57 09 c4| ...i....W..| samples: raw bits 0x80d5.5-0x8263.7 (398.2) +0x080d0| bd bc ee 69 c0 a7 13 84 57 09 c4| ...i....W..| residuals: raw bits 0x80d5.5-0x8263.7 (398.2) 0x080e0|ac 2f 36 b5 9e bf 14 1a 76 d8 41 d6 63 b4 24 1d|./6.....v.A.c.$.| * |until 0x8263.6 (399) | | | | | [27]{}: partition 0x8263.7-0x83f2.6 (398.7) | | | count: 128 0x08260| d9 72 | .r | rice_parameter: 23 0x8263.7-0x8264.4 (0.5) -0x08260| 72 6f 23 f5 c1 ea 98 6d 7d bb f9 86| ro#....m}...| samples: raw bits 0x8264.4-0x83f2.6 (398.2) +0x08260| 72 6f 23 f5 c1 ea 98 6d 7d bb f9 86| ro#....m}...| residuals: raw bits 0x8264.4-0x83f2.6 (398.2) 0x08270|51 cb 0f a4 b1 44 cb af c5 55 05 8d cb cd 02 0f|Q....D...U......| * |until 0x83f2.5 (399) | | | | | [28]{}: partition 0x83f2.6-0x8580.1 (397.3) | | | count: 128 0x083f0| 52 ff | R. | rice_parameter: 23 0x83f2.6-0x83f3.3 (0.5) -0x083f0| ff e6 73 5d 93 6b 62 a2 3d 7f 5d a1 b7| ..s].kb.=.]..| samples: raw bits 0x83f3.3-0x8580.1 (396.6) +0x083f0| ff e6 73 5d 93 6b 62 a2 3d 7f 5d a1 b7| ..s].kb.=.]..| residuals: raw bits 0x83f3.3-0x8580.1 (396.6) 0x08400|e6 01 4a db 23 d1 24 3b cb 7f d7 0d e5 bb af f5|..J.#.$;........| * |until 0x8580 (397) | | | | | [29]{}: partition 0x8580.1-0x870b.4 (395.3) | | | count: 128 0x08580|5f |_ | rice_parameter: 23 0x8580.1-0x8580.6 (0.5) -0x08580|5f 52 19 c9 fe 13 2c d6 71 fc 75 75 1b 1c 87 9d|_R....,.q.uu....| samples: raw bits 0x8580.6-0x870b.4 (394.6) +0x08580|5f 52 19 c9 fe 13 2c d6 71 fc 75 75 1b 1c 87 9d|_R....,.q.uu....| residuals: raw bits 0x8580.6-0x870b.4 (394.6) 0x08590|04 ed d6 ec 0f 7d fc 85 17 9f 3f fc 13 d4 23 a7|.....}....?...#.| * |until 0x870b.3 (395) | | | | | [30]{}: partition 0x870b.4-0x8899.4 (398) | | | count: 128 0x08700| db 8c | .. | rice_parameter: 23 0x870b.4-0x870c.1 (0.5) -0x08700| 8c 6e c0 0d| .n..| samples: raw bits 0x870c.1-0x8899.4 (397.3) +0x08700| 8c 6e c0 0d| .n..| residuals: raw bits 0x870c.1-0x8899.4 (397.3) 0x08710|7b dc 3e e9 54 cb 40 64 92 3f ee 5a 0e b9 27 be|{.>.T.@d.?.Z..'.| * |until 0x8899.3 (398) | | | | | [31]{}: partition 0x8899.4-0x8a28 (398.4) | | | count: 128 0x08890| 4b ee | K. | rice_parameter: 23 0x8899.4-0x889a.1 (0.5) -0x08890| ee 04 17 18 0c 26| .....&| samples: raw bits 0x889a.1-0x8a28 (397.7) +0x08890| ee 04 17 18 0c 26| .....&| residuals: raw bits 0x889a.1-0x8a28 (397.7) 0x088a0|37 32 c3 3a fc 28 85 f5 83 6e 10 95 01 bd e9 44|72.:.(...n.....D| * |until 0x8a27.7 (398) | | | | | byte_align: 0 (valid) 0x8a28-0x8a28 (0) @@ -798,195 +798,195 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x8a34.6-0x8bbf.6 (395) | | | count: 127 0x08a30| 56 ea | V. | rice_parameter: 23 0x8a34.6-0x8a35.3 (0.5) -0x08a30| ea 6b 47 a9 09 4d 62 97 e6 3f 4d| .kG..Mb..?M| samples: raw bits 0x8a35.3-0x8bbf.6 (394.3) +0x08a30| ea 6b 47 a9 09 4d 62 97 e6 3f 4d| .kG..Mb..?M| residuals: raw bits 0x8a35.3-0x8bbf.6 (394.3) 0x08a40|13 3f 45 4d e4 53 9c 7b 18 3c 24 26 87 ab 41 3b|.?EM.S.{.<$&..A;| * |until 0x8bbf.5 (395) | | | | | [1]{}: partition 0x8bbf.6-0x8d50.6 (401) | | | count: 128 0x08bb0| d2| .| rice_parameter: 23 0x8bbf.6-0x8bc0.3 (0.5) 0x08bc0|e3 |. | -0x08bc0|e3 15 c6 d6 ab 38 80 52 ad 9d 31 03 ce 58 9f 1e|.....8.R..1..X..| samples: raw bits 0x8bc0.3-0x8d50.6 (400.3) +0x08bc0|e3 15 c6 d6 ab 38 80 52 ad 9d 31 03 ce 58 9f 1e|.....8.R..1..X..| residuals: raw bits 0x8bc0.3-0x8d50.6 (400.3) 0x08bd0|45 fd d8 59 c4 f9 08 24 f8 74 c8 f9 6f 84 a6 4b|E..Y...$.t..o..K| * |until 0x8d50.5 (401) | | | | | [2]{}: partition 0x8d50.6-0x8edf.4 (398.6) | | | count: 128 0x08d50|8e e5 |.. | rice_parameter: 23 0x8d50.6-0x8d51.3 (0.5) -0x08d50| e5 62 58 c1 62 8b cf b1 f5 10 e1 83 a5 85 fa| .bX.b..........| samples: raw bits 0x8d51.3-0x8edf.4 (398.1) +0x08d50| e5 62 58 c1 62 8b cf b1 f5 10 e1 83 a5 85 fa| .bX.b..........| residuals: raw bits 0x8d51.3-0x8edf.4 (398.1) 0x08d60|15 63 30 bd 49 b5 49 d7 8e 59 2f 6b b6 35 6b a5|.c0.I.I..Y/k.5k.| * |until 0x8edf.3 (399) | | | | | [3]{}: partition 0x8edf.4-0x906e.3 (398.7) | | | count: 128 0x08ed0| 9b| .| rice_parameter: 23 0x8edf.4-0x8ee0.1 (0.5) 0x08ee0|9f |. | -0x08ee0|9f 9c 31 c7 32 9d 28 d5 20 b0 31 c7 a4 6e e8 59|..1.2.(. .1..n.Y| samples: raw bits 0x8ee0.1-0x906e.3 (398.2) +0x08ee0|9f 9c 31 c7 32 9d 28 d5 20 b0 31 c7 a4 6e e8 59|..1.2.(. .1..n.Y| residuals: raw bits 0x8ee0.1-0x906e.3 (398.2) 0x08ef0|f0 |. | * |until 0x906e.2 (399) | | | | | [4]{}: partition 0x906e.3-0x91fa.5 (396.2) | | | count: 128 0x09060| d7 | . | rice_parameter: 23 0x906e.3-0x906f (0.5) -0x09060| c4| .| samples: raw bits 0x906f-0x91fa.5 (395.5) +0x09060| c4| .| residuals: raw bits 0x906f-0x91fa.5 (395.5) 0x09070|e7 30 58 eb 1e bb 57 d3 4a c6 e6 05 61 f5 d7 22|.0X...W.J...a.."| * |until 0x91fa.4 (396) | | | | | [5]{}: partition 0x91fa.5-0x9389.1 (398.4) | | | count: 128 0x091f0| 3d fd | =. | rice_parameter: 23 0x91fa.5-0x91fb.2 (0.5) -0x091f0| fd f9 e8 bc 07| .....| samples: raw bits 0x91fb.2-0x9389.1 (397.7) +0x091f0| fd f9 e8 bc 07| .....| residuals: raw bits 0x91fb.2-0x9389.1 (397.7) 0x09200|8c 9b 4c 38 31 3e bd 0b 17 81 e6 35 a7 2a 26 db|..L81>.....5.*&.| * |until 0x9389 (398) | | | | | [6]{}: partition 0x9389.1-0x9515.6 (396.5) | | | count: 128 0x09380| 5d | ] | rice_parameter: 23 0x9389.1-0x9389.6 (0.5) -0x09380| 5d ca 03 da ec f9 fc| ]......| samples: raw bits 0x9389.6-0x9515.6 (396) +0x09380| 5d ca 03 da ec f9 fc| ]......| residuals: raw bits 0x9389.6-0x9515.6 (396) 0x09390|77 e8 7a f8 d0 76 2b 70 74 a6 ea 81 cd 51 8a 78|w.z..v+pt....Q.x| * |until 0x9515.5 (396) | | | | | [7]{}: partition 0x9515.6-0x968c.2 (374.4) | | | count: 128 0x09510| aa a6 | .. | rice_parameter: 21 0x9515.6-0x9516.3 (0.5) -0x09510| a6 0f 66 e0 0f b8 1b 42 a8 1e| ..f....B..| samples: raw bits 0x9516.3-0x968c.2 (373.7) +0x09510| a6 0f 66 e0 0f b8 1b 42 a8 1e| ..f....B..| residuals: raw bits 0x9516.3-0x968c.2 (373.7) 0x09520|82 61 a0 f0 01 f5 5f f1 f7 cf fa 0f 10 13 3f ef|.a...._.......?.| * |until 0x968c.1 (374) | | | | | [8]{}: partition 0x968c.2-0x97af.2 (291) | | | count: 128 0x09680| 20 | | rice_parameter: 16 0x968c.2-0x968c.7 (0.5) -0x09680| 20 47 80 1f| G..| samples: raw bits 0x968c.7-0x97af.2 (290.3) +0x09680| 20 47 80 1f| G..| residuals: raw bits 0x968c.7-0x97af.2 (290.3) 0x09690|80 07 30 01 9c 00 5a 80 13 60 04 00 03 90 01 8e|..0...Z..`......| * |until 0x97af.1 (291) | | | | | [9]{}: partition 0x97af.2-0x98d5 (293.6) | | | count: 128 0x097a0| 20| | rice_parameter: 16 0x97af.2-0x97af.7 (0.5) -0x097a0| 20| | samples: raw bits 0x97af.7-0x98d5 (293.1) +0x097a0| 20| | residuals: raw bits 0x97af.7-0x98d5 (293.1) 0x097b0|ce 00 39 80 0f b0 01 20 00 28 40 05 80 00 bf 00|..9.... .(@.....| * |until 0x98d4.7 (294) | | | | | [10]{}: partition 0x98d5-0x99f8.1 (291.1) | | | count: 128 0x098d0| 81 | . | rice_parameter: 16 0x98d5-0x98d5.5 (0.5) -0x098d0| 81 4b ff 24 ff ef ff fb ab fe d4| .K.$.......| samples: raw bits 0x98d5.5-0x99f8.1 (290.4) +0x098d0| 81 4b ff 24 ff ef ff fb ab fe d4| .K.$.......| residuals: raw bits 0x98d5.5-0x99f8.1 (290.4) 0x098e0|ff ae bf ea 1f fa 1b ff d5 ff cd ff d7 ff e4 bf|................| * |until 0x99f8 (291) | | | | | [11]{}: partition 0x99f8.1-0x9b1d.6 (293.5) | | | count: 128 0x099f0| c1 | . | rice_parameter: 16 0x99f8.1-0x99f8.6 (0.5) -0x099f0| c1 5d ff 63 ff db ff f7| .].c....| samples: raw bits 0x99f8.6-0x9b1d.6 (293) +0x099f0| c1 5d ff 63 ff db ff f7| .].c....| residuals: raw bits 0x99f8.6-0x9b1d.6 (293) 0x09a00|b7 fc 89 ff 93 9f f2 b3 fe 5d 7f cc 6f f9 9f ff|.........]..o...| * |until 0x9b1d.5 (293) | | | | | [12]{}: partition 0x9b1d.6-0x9c41 (291.2) | | | count: 128 0x09b10| 02 05 | .. | rice_parameter: 16 0x9b1d.6-0x9b1e.3 (0.5) -0x09b10| 05 c0| ..| samples: raw bits 0x9b1e.3-0x9c41 (290.5) +0x09b10| 05 c0| ..| residuals: raw bits 0x9b1e.3-0x9c41 (290.5) 0x09b20|00 a9 00 13 20 02 18 00 f1 00 36 80 0c 20 02 a0|.... .....6.. ..| * |until 0x9c40.7 (291) | | | | | [13]{}: partition 0x9c41-0x9d66.4 (293.4) | | | count: 128 0x09c40| 82 | . | rice_parameter: 16 0x9c41-0x9c41.5 (0.5) -0x09c40| 82 38 00 a8 00 30 80 0d a0 03 c4 00 42 80 09| .8...0......B..| samples: raw bits 0x9c41.5-0x9d66.4 (292.7) +0x09c40| 82 38 00 a8 00 30 80 0d a0 03 c4 00 42 80 09| .8...0......B..| residuals: raw bits 0x9c41.5-0x9d66.4 (292.7) 0x09c50|90 01 54 00 2d c0 06 20 00 cf 00 1a c0 03 6c 00|..T.-.. ......l.| * |until 0x9d66.3 (293) | | | | | [14]{}: partition 0x9d66.4-0x9e8a.1 (291.5) | | | count: 128 0x09d60| f8 18 | .. | rice_parameter: 16 0x9d66.4-0x9d67.1 (0.5) -0x09d60| 18 df f2 eb fe 56 ff c9 cf| .....V...| samples: raw bits 0x9d67.1-0x9e8a.1 (291) +0x09d60| 18 df f2 eb fe 56 ff c9 cf| .....V...| residuals: raw bits 0x9d67.1-0x9e8a.1 (291) 0x09d70|f9 13 ff 7a ff db ff f6 47 fd 5d ff 49 ff fe 3f|...z....G.].I..?| * |until 0x9e8a (291) | | | | | [15]{}: partition 0x9e8a.1-0x9faf.2 (293.1) | | | count: 128 0x09e80| c3 | . | rice_parameter: 16 0x9e8a.1-0x9e8a.6 (0.5) -0x09e80| c3 ab fe 85 ff a8| ......| samples: raw bits 0x9e8a.6-0x9faf.2 (292.4) +0x09e80| c3 ab fe 85 ff a8| ......| residuals: raw bits 0x9e8a.6-0x9faf.2 (292.4) 0x09e90|7f eb bf fb 4f fe eb ff bf ff e4 9f fc a4 ff 96|....O...........| * |until 0x9faf.1 (293) | | | | | [16]{}: partition 0x9faf.2-0xa0d3.1 (291.7) | | | count: 128 0x09fa0| 20| | rice_parameter: 16 0x9faf.2-0x9faf.7 (0.5) -0x09fa0| 20| | samples: raw bits 0x9faf.7-0xa0d3.1 (291.2) +0x09fa0| 20| | residuals: raw bits 0x9faf.7-0xa0d3.1 (291.2) 0x09fb0|69 80 0c a0 01 7c 00 2c 40 05 08 00 8f 00 3f 00|i....|.,@.....?.| * |until 0xa0d3 (292) | | | | | [17]{}: partition 0xa0d3.1-0xa1f8 (292.7) | | | count: 128 0x0a0d0| 43 | C | rice_parameter: 16 0xa0d3.1-0xa0d3.6 (0.5) -0x0a0d0| 43 1c 01 c6 00 40 00 13 60 05 b0 01 9c| C....@..`....| samples: raw bits 0xa0d3.6-0xa1f8 (292.2) +0x0a0d0| 43 1c 01 c6 00 40 00 13 60 05 b0 01 9c| C....@..`....| residuals: raw bits 0xa0d3.6-0xa1f8 (292.2) 0x0a0e0|00 73 00 1f 60 02 40 00 50 80 0b 00 01 7e 00 32|.s..`.@.P....~.2| * |until 0xa1f7.7 (293) | | | | | [18]{}: partition 0xa1f8-0xa31c.2 (292.2) | | | count: 128 0x0a1f0| 81 | . | rice_parameter: 16 0xa1f8-0xa1f8.5 (0.5) -0x0a1f0| 81 b3 ff 34 bf e6 67 fc| ...4..g.| samples: raw bits 0xa1f8.5-0xa31c.2 (291.5) +0x0a1f0| 81 b3 ff 34 bf e6 67 fc| ...4..g.| residuals: raw bits 0xa1f8.5-0xa31c.2 (291.5) 0x0a200|c0 ff 96 9f f2 97 fe 49 ff df ff f7 57 fd a9 ff|.......I....W...| * |until 0xa31c.1 (292) | | | | | [19]{}: partition 0xa31c.2-0xa440.6 (292.4) | | | count: 128 0x0a310| e1 | . | rice_parameter: 16 0xa31c.2-0xa31c.7 (0.5) -0x0a310| e1 41 ff be| .A..| samples: raw bits 0xa31c.7-0xa440.6 (291.7) +0x0a310| e1 41 ff be| .A..| residuals: raw bits 0xa31c.7-0xa440.6 (291.7) 0x0a320|ff ee 7f fd ff e9 4f fa bb fe c7 ff b7 ff ef 6f|......O........o| * |until 0xa440.5 (292) | | | | | [20]{}: partition 0xa440.6-0xa565.2 (292.4) | | | count: 128 0x0a440|02 06 |.. | rice_parameter: 16 0xa440.6-0xa441.3 (0.5) -0x0a440| 06 f0 00 db 00 1a c0 03 3c 00 62 00 0b 80 01| ........<.b....| samples: raw bits 0xa441.3-0xa565.2 (291.7) +0x0a440| 06 f0 00 db 00 1a c0 03 3c 00 62 00 0b 80 01| ........<.b....| residuals: raw bits 0xa441.3-0xa565.2 (291.7) 0x0a450|52 00 26 40 04 30 01 e2 00 6d 00 18 40 05 40 01|R.&@.0...m..@.@.| * |until 0xa565.1 (292) | | | | | [21]{}: partition 0xa565.2-0xa689.4 (292.2) | | | count: 128 0x0a560| e1 | . | rice_parameter: 16 0xa565.2-0xa565.7 (0.5) -0x0a560| e1 07 ff 9a 00 5c 00 35 40 1e 40| .....\.5@.@| samples: raw bits 0xa565.7-0xa689.4 (291.5) +0x0a560| e1 07 ff 9a 00 5c 00 35 40 1e 40| .....\.5@.@| residuals: raw bits 0xa565.7-0xa689.4 (291.5) 0x0a570|04 70 01 50 00 61 00 1b 40 07 88 00 85 00 13 20|.p.P.a..@...... | * |until 0xa689.3 (292) | | | | | [22]{}: partition 0xa689.4-0xa7ae.3 (292.7) | | | count: 128 0x0a680| f8 1b | .. | rice_parameter: 16 0xa689.4-0xa68a.1 (0.5) -0x0a680| 1b 9f f3 77 fe 6d| ...w.m| samples: raw bits 0xa68a.1-0xa7ae.3 (292.2) +0x0a680| 1b 9f f3 77 fe 6d| ...w.m| residuals: raw bits 0xa68a.1-0xa7ae.3 (292.2) 0x0a690|ff cd 7f f9 9f ff 31 bf e5 d7 fc ad ff 93 9f f2|......1.........| * |until 0xa7ae.2 (293) | | | | | [23]{}: partition 0xa7ae.3-0xa8d2.2 (291.7) | | | count: 128 0x0a7a0| 10 | . | rice_parameter: 16 0xa7ae.3-0xa7af (0.5) -0x0a7a0| a9| .| samples: raw bits 0xa7af-0xa8d2.2 (291.2) +0x0a7a0| a9| .| residuals: raw bits 0xa7af-0xa8d2.2 (291.2) 0x0a7b0|00 45 80 24 bf f5 ff fc df ff 57 fd 0b ff 50 ff|.E.$......W...P.| * |until 0xa8d2.1 (292) | | | | | [24]{}: partition 0xa8d2.2-0xa9f7.3 (293.1) | | | count: 128 0x0a8d0| 20 | | rice_parameter: 16 0xa8d2.2-0xa8d2.7 (0.5) -0x0a8d0| 20 6c 80 0d d0 01 ba 00 37 40 06 c8 00 d3| l......7@....| samples: raw bits 0xa8d2.7-0xa9f7.3 (292.4) +0x0a8d0| 20 6c 80 0d d0 01 ba 00 37 40 06 c8 00 d3| l......7@....| residuals: raw bits 0xa8d2.7-0xa9f7.3 (292.4) 0x0a8e0|00 19 40 02 f8 00 58 80 0a 10 01 1e 00 7e 00 1c|..@...X......~..| * |until 0xa9f7.2 (293) | | | | | [25]{}: partition 0xa9f7.3-0xab1b (291.5) | | | count: 128 0x0a9f0| f0 | . | rice_parameter: 16 0xa9f7.3-0xa9f8 (0.5) -0x0a9f0| cd ff d7 ff e4 bf f1 60| .......`| samples: raw bits 0xa9f8-0xab1b (291) +0x0a9f0| cd ff d7 ff e4 bf f1 60| .......`| residuals: raw bits 0xa9f8-0xab1b (291) 0x0aa00|0a 90 06 38 03 8c 00 80 00 26 c0 0b 60 03 38 00|...8.....&..`.8.| * |until 0xab1a.7 (291) | | | | | [26]{}: partition 0xab1b-0xac40.4 (293.4) | | | count: 128 0x0ab10| 81 | . | rice_parameter: 16 0xab1b-0xab1b.5 (0.5) -0x0ab10| 81 9f ff 35 ff| ...5.| samples: raw bits 0xab1b.5-0xac40.4 (292.7) +0x0ab10| 81 9f ff 35 ff| ...5.| residuals: raw bits 0xab1b.5-0xac40.4 (292.7) 0x0ab20|e6 df fc dd ff 9b bf f3 67 fe 69 7f cc cf f9 81|........g.i.....| * |until 0xac40.3 (293) | | | | | [27]{}: partition 0xac40.4-0xad63.6 (291.2) | | | count: 128 0x0ac40|08 79 |.y | rice_parameter: 16 0xac40.4-0xac41.1 (0.5) -0x0ac40| 79 00 35 40 17 00 09 a0 04 1f fe 83 ff 7d ff| y.5@.........}.| samples: raw bits 0xac41.1-0xad63.6 (290.5) +0x0ac40| 79 00 35 40 17 00 09 a0 04 1f fe 83 ff 7d ff| y.5@.........}.| residuals: raw bits 0xac41.1-0xad63.6 (290.5) 0x0ac50|dc ff fb ff d2 9f f5 77 fd 8f ff 6f ff de df f2|.......w...o....| * |until 0xad63.5 (291) | | | | | [28]{}: partition 0xad63.6-0xae89.3 (293.5) | | | count: 128 0x0ad60| 02 06 | .. | rice_parameter: 16 0xad63.6-0xad64.3 (0.5) -0x0ad60| 06 20 00 cf 00 1a c0 03 6c 00 6e 80| . ......l.n.| samples: raw bits 0xad64.3-0xae89.3 (293) +0x0ad60| 06 20 00 cf 00 1a c0 03 6c 00 6e 80| . ......l.n.| residuals: raw bits 0xad64.3-0xae89.3 (293) 0x0ad70|0d e0 01 b6 00 35 80 06 78 00 c4 00 17 00 02 a4|.....5..x.......| * |until 0xae89.2 (293) | | | | | [29]{}: partition 0xae89.3-0xafac.4 (291.1) | | | count: 128 0x0ae80| f0 | . | rice_parameter: 16 0xae89.3-0xae8a (0.5) -0x0ae80| 49 ff fe 3f fb 7f| I..?..| samples: raw bits 0xae8a-0xafac.4 (290.4) +0x0ae80| 49 ff fe 3f fb 7f| I..?..| residuals: raw bits 0xae8a-0xafac.4 (290.4) 0x0ae90|fb ff fd 07 fe 0f ff 34 00 b8 00 6a 80 3c 80 08|.......4...j.<..| * |until 0xafac.3 (291) | | | | | [30]{}: partition 0xafac.4-0xb0d2.2 (293.6) | | | count: 128 0x0afa0| f8 16 | .. | rice_parameter: 16 0xafac.4-0xafad.1 (0.5) -0x0afa0| 16 9f f3| ...| samples: raw bits 0xafad.1-0xb0d2.2 (293.1) +0x0afa0| 16 9f f3| ...| residuals: raw bits 0xafad.1-0xb0d2.2 (293.1) 0x0afb0|03 fe 66 7f cd 3f f9 b3 ff 37 3f e6 ef fc db ff|..f..?...7?.....| * |until 0xb0d2.1 (294) | | | | | [31]{}: partition 0xb0d2.2-0xb1f5.2 (291) | | | count: 128 0x0b0d0| 20 | | rice_parameter: 16 0xb0d2.2-0xb0d2.7 (0.5) -0x0b0d0| 20 b5 00 26 c0 08 00 07 20 03 1c 01 52 00| ..&.... ...R.| samples: raw bits 0xb0d2.7-0xb1f5.2 (290.3) +0x0b0d0| 20 b5 00 26 c0 08 00 07 20 03 1c 01 52 00| ..&.... ...R.| residuals: raw bits 0xb0d2.7-0xb1f5.2 (290.3) 0x0b0e0|8b 00 49 7f eb ff f9 bf fe af fa 17 fe a1 ff ae|..I.............| * |until 0xb1f5.1 (291) | | | | | [1]{}: subframe 0xb1f5.2-0xd40c.4 (8727.2) @@ -1004,194 +1004,194 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0xb1fa-0xb385.7 (395.7) | | | count: 127 0x0b1f0| bf | . | rice_parameter: 23 0xb1fa-0xb1fa.5 (0.5) -0x0b1f0| bf 8d 86 c9 95 44| .....D| samples: raw bits 0xb1fa.5-0xb385.7 (395.2) +0x0b1f0| bf 8d 86 c9 95 44| .....D| residuals: raw bits 0xb1fa.5-0xb385.7 (395.2) 0x0b200|fc e5 5a 1f af 91 a7 23 00 fc 0b 71 30 32 21 73|..Z....#...q02!s| * |until 0xb385.6 (396) | | | | | [1]{}: partition 0xb385.7-0xb513.3 (397.4) | | | count: 128 0x0b380| 8f 74 | .t | rice_parameter: 23 0xb385.7-0xb386.4 (0.5) -0x0b380| 74 66 de 04 6f 71 ba a8 2f 36| tf..oq../6| samples: raw bits 0xb386.4-0xb513.3 (396.7) +0x0b380| 74 66 de 04 6f 71 ba a8 2f 36| tf..oq../6| residuals: raw bits 0xb386.4-0xb513.3 (396.7) 0x0b390|c9 b4 98 cc 98 90 d9 df 0b 95 dd bd 4d d6 d2 97|............M...| * |until 0xb513.2 (397) | | | | | [2]{}: partition 0xb513.3-0xb6a5 (401.5) | | | count: 128 0x0b510| f7 | . | rice_parameter: 23 0xb513.3-0xb514 (0.5) -0x0b510| dd 88 9c 41 00 f4 6f 47 4a ae 72 9e| ...A..oGJ.r.| samples: raw bits 0xb514-0xb6a5 (401) +0x0b510| dd 88 9c 41 00 f4 6f 47 4a ae 72 9e| ...A..oGJ.r.| residuals: raw bits 0xb514-0xb6a5 (401) 0x0b520|74 c5 e6 8a 30 0e 91 12 0e 6c 21 a3 bf d1 cd 77|t...0....l!....w| * |until 0xb6a4.7 (401) | | | | | [3]{}: partition 0xb6a5-0xb832.6 (397.6) | | | count: 128 0x0b6a0| b9 | . | rice_parameter: 23 0xb6a5-0xb6a5.5 (0.5) -0x0b6a0| b9 60 57 0e b9 00 86 92 4f 4f 27| .`W.....OO'| samples: raw bits 0xb6a5.5-0xb832.6 (397.1) +0x0b6a0| b9 60 57 0e b9 00 86 92 4f 4f 27| .`W.....OO'| residuals: raw bits 0xb6a5.5-0xb832.6 (397.1) 0x0b6b0|41 f8 51 df 7b d3 93 e3 25 7f 2e 10 b0 b8 5b 20|A.Q.{...%.....[ | * |until 0xb832.5 (398) | | | | | [4]{}: partition 0xb832.6-0xb9c2.2 (399.4) | | | count: 128 0x0b830| 2a ef | *. | rice_parameter: 23 0xb832.6-0xb833.3 (0.5) -0x0b830| ef 18 bf be 20 ce 3f 3b 1b 4d a2 a1 58| .... .?;.M..X| samples: raw bits 0xb833.3-0xb9c2.2 (398.7) +0x0b830| ef 18 bf be 20 ce 3f 3b 1b 4d a2 a1 58| .... .?;.M..X| residuals: raw bits 0xb833.3-0xb9c2.2 (398.7) 0x0b840|13 72 1a 03 74 fe 96 4d 47 b3 2c b6 29 2a 2a ee|.r..t..MG.,.)**.| * |until 0xb9c2.1 (399) | | | | | [5]{}: partition 0xb9c2.2-0xbb4e.7 (396.5) | | | count: 128 0x0b9c0| af | . | rice_parameter: 23 0xb9c2.2-0xb9c2.7 (0.5) -0x0b9c0| af 81 91 2d 1c fa 1b ab de 9e a5 39 ed 84| ...-.......9..| samples: raw bits 0xb9c2.7-0xbb4e.7 (396) +0x0b9c0| af 81 91 2d 1c fa 1b ab de 9e a5 39 ed 84| ...-.......9..| residuals: raw bits 0xb9c2.7-0xbb4e.7 (396) 0x0b9d0|b1 cf cf 22 c0 b7 63 bd a2 75 06 8b 8a 4c 11 40|..."..c..u...L.@| * |until 0xbb4e.6 (396) | | | | | [6]{}: partition 0xbb4e.7-0xbcdc.6 (397.7) | | | count: 128 0x0bb40| e9 72| .r| rice_parameter: 23 0xbb4e.7-0xbb4f.4 (0.5) -0x0bb40| 72| r| samples: raw bits 0xbb4f.4-0xbcdc.6 (397.2) +0x0bb40| 72| r| residuals: raw bits 0xbb4f.4-0xbcdc.6 (397.2) 0x0bb50|df 3f cd 70 9d a5 fa 85 5d 33 78 88 77 c0 b1 eb|.?.p....]3x.w...| * |until 0xbcdc.5 (398) | | | | | [7]{}: partition 0xbcdc.6-0xbe54.6 (376) | | | count: 128 0x0bcd0| e2 a0 | .. | rice_parameter: 21 0xbcdc.6-0xbcdd.3 (0.5) -0x0bcd0| a0 17 b4| ...| samples: raw bits 0xbcdd.3-0xbe54.6 (375.3) +0x0bcd0| a0 17 b4| ...| residuals: raw bits 0xbcdd.3-0xbe54.6 (375.3) 0x0bce0|97 90 9e d7 66 b8 9a 05 79 1b 80 08 16 6b 40 16|....f...y....k@.| * |until 0xbe54.5 (376) | | | | | [8]{}: partition 0xbe54.6-0xbf3a.7 (230.1) | | | count: 128 0x0be50| 01 82 | .. | rice_parameter: 12 0xbe54.6-0xbe55.3 (0.5) -0x0be50| 82 00 02 00 02 00 02 00 02 40 02| .........@.| samples: raw bits 0xbe55.3-0xbf3a.7 (229.4) +0x0be50| 82 00 02 00 02 00 02 00 02 40 02| .........@.| residuals: raw bits 0xbe55.3-0xbf3a.7 (229.4) 0x0be60|00 07 80 0f 00 08 00 1e 00 3c 00 20 00 78 00 e0|.........<. .x..| * |until 0xbf3a.6 (230) | | | | | [9]{}: partition 0xbf3a.7-0xc019 (222.1) | | | count: 128 0x0bf30| 00 cb | .. | rice_parameter: 12 0xbf3a.7-0xbf3b.4 (0.5) -0x0bf30| cb 00 50 02 80| ..P..| samples: raw bits 0xbf3b.4-0xc019 (221.4) +0x0bf30| cb 00 50 02 80| ..P..| residuals: raw bits 0xbf3b.4-0xc019 (221.4) 0x0bf40|12 00 a0 04 80 24 01 20 08 00 48 02 00 10 00 80|.....$. ..H.....| * |until 0xc018.7 (222) | | | | | [10]{}: partition 0xc019-0xc109.5 (240.5) | | | count: 128 0x0c010| 6a | j | rice_parameter: 13 0xc019-0xc019.5 (0.5) -0x0c010| 6a bf f5 3f ea ff d5| j..?...| samples: raw bits 0xc019.5-0xc109.5 (240) +0x0c010| 6a bf f5 3f ea ff d5| j..?...| residuals: raw bits 0xc019.5-0xc109.5 (240) 0x0c020|ff ab ff 5b fe af fd 5f fa df f5 bf eb 7f d6 ff|...[..._........| * |until 0xc109.4 (240) | | | | | [11]{}: partition 0xc109.5-0xc1f8.2 (238.5) | | | count: 128 0x0c100| fb 5c | .\ | rice_parameter: 13 0xc109.5-0xc10a.2 (0.5) -0x0c100| 5c ff b7 ff 77 fe| \...w.| samples: raw bits 0xc10a.2-0xc1f8.2 (238) +0x0c100| 5c ff b7 ff 77 fe| \...w.| residuals: raw bits 0xc10a.2-0xc1f8.2 (238) 0x0c110|df fd cf fb 7f f6 ff ee 7f dc ff b7 ff 6f fe df|.............o..| * |until 0xc1f8.1 (238) | | | | | [12]{}: partition 0xc1f8.2-0xc2cb.4 (211.2) | | | count: 128 0x0c1f0| d6 | . | rice_parameter: 11 0xc1f8.2-0xc1f8.7 (0.5) -0x0c1f0| d6 2f fc 4f f8 9f f1 3f| ./.O...?| samples: raw bits 0xc1f8.7-0xc2cb.4 (210.5) +0x0c1f0| d6 2f fc 4f f8 9f f1 3f| ./.O...?| residuals: raw bits 0xc1f8.7-0xc2cb.4 (210.5) 0x0c200|e2 7f c4 ff 9f fe 27 fc ff f3 7f cf ff 3f fc df|......'......?..| * |until 0xc2cb.3 (211) | | | | | [13]{}: partition 0xc2cb.4-0xc3b9.5 (238.1) | | | count: 128 0x0c2c0| 06 f0 | .. | rice_parameter: 13 0xc2cb.4-0xc2cc.1 (0.5) -0x0c2c0| f0 01 c0 07| ....| samples: raw bits 0xc2cc.1-0xc3b9.5 (237.4) +0x0c2c0| f0 01 c0 07| ....| residuals: raw bits 0xc2cc.1-0xc3b9.5 (237.4) 0x0c2d0|40 1d 00 74 01 c0 07 80 1d 00 78 01 e0 07 40 1f|@..t......x...@.| * |until 0xc3b9.4 (238) | | | | | [14]{}: partition 0xc3b9.5-0xc4aa.2 (240.5) | | | count: 128 0x0c3b0| 03 5d | .] | rice_parameter: 13 0xc3b9.5-0xc3ba.2 (0.5) -0x0c3b0| 5d 00 3a 00 70 00| ].:.p.| samples: raw bits 0xc3ba.2-0xc4aa.2 (240) +0x0c3b0| 5d 00 3a 00 70 00| ].:.p.| residuals: raw bits 0xc3ba.2-0xc4aa.2 (240) 0x0c3c0|e8 01 c0 03 a0 07 40 0e 00 1d 00 3a 00 70 00 e8|......@....:.p..| * |until 0xc4aa.1 (240) | | | | | [15]{}: partition 0xc4aa.2-0xc58b.7 (225.5) | | | count: 128 0x0c4a0| 18 | . | rice_parameter: 12 0xc4aa.2-0xc4aa.7 (0.5) -0x0c4a0| 18 78 00 e0 01 e0| .x....| samples: raw bits 0xc4aa.7-0xc58b.7 (225) +0x0c4a0| 18 78 00 e0 01 e0| .x....| residuals: raw bits 0xc4aa.7-0xc58b.7 (225) 0x0c4b0|03 c0 07 00 0e 00 1a 00 38 00 68 00 e0 01 c0 03|........8.h.....| * |until 0xc58b.6 (225) | | | | | [16]{}: partition 0xc58b.7-0xc66d.4 (225.5) | | | count: 128 0x0c580| fe c8 | .. | rice_parameter: 12 0xc58b.7-0xc58c.4 (0.5) -0x0c580| c8 00 47 fe| ..G.| samples: raw bits 0xc58c.4-0xc66d.4 (225) +0x0c580| c8 00 47 fe| ..G.| residuals: raw bits 0xc58c.4-0xc66d.4 (225) 0x0c590|3f f1 ff 9f fc 7f e7 ff 3f fa ff cf fe bf f5 ff|?.......?.......| * |until 0xc66d.3 (225) | | | | | [17]{}: partition 0xc66d.4-0xc75e.1 (240.5) | | | count: 128 0x0c660| f6 ad | .. | rice_parameter: 13 0xc66d.4-0xc66e.1 (0.5) -0x0c660| ad ff| ..| samples: raw bits 0xc66e.1-0xc75e.1 (240) +0x0c660| ad ff| ..| residuals: raw bits 0xc66e.1-0xc75e.1 (240) 0x0c670|5b fe bf fd 7f fa ff f5 ff eb ff d7 ff b1 ff 5f|[.............._| * |until 0xc75e (240) | | | | | [18]{}: partition 0xc75e.1-0xc84b (236.7) | | | count: 128 0x0c750| b5 | . | rice_parameter: 13 0xc75e.1-0xc75e.6 (0.5) -0x0c750| b5 af| ..| samples: raw bits 0xc75e.6-0xc84b (236.2) +0x0c750| b5 af| ..| residuals: raw bits 0xc75e.6-0xc84b (236.2) 0x0c760|fb 9f f6 ff ed ff db ff b5 ff 6f fe d7 fd bf fb|..........o.....| * |until 0xc84a.7 (237) | | | | | [19]{}: partition 0xc84b-0xc91f.1 (212.1) | | | count: 128 0x0c840| 59 | Y | rice_parameter: 11 0xc84b-0xc84b.5 (0.5) -0x0c840| 59 bf e6 ff 97| Y....| samples: raw bits 0xc84b.5-0xc91f.1 (211.4) +0x0c840| 59 bf e6 ff 97| Y....| residuals: raw bits 0xc84b.5-0xc91f.1 (211.4) 0x0c850|fe 6f f9 7f e5 ff 97 fe 4f f9 7f e4 ff 93 fe 4f|.o......O......O| * |until 0xc91f (212) | | | | | [20]{}: partition 0xc91f.1-0xca0f (239.7) | | | count: 128 0x0c910| 37| 7| rice_parameter: 13 0xc91f.1-0xc91f.6 (0.5) -0x0c910| 37| 7| samples: raw bits 0xc91f.6-0xca0f (239.2) +0x0c910| 37| 7| residuals: raw bits 0xc91f.6-0xca0f (239.2) 0x0c920|e0 0f 80 3e 00 f8 01 00 07 c0 08 00 3e 00 44 00|...>........>.D.| * |until 0xca0e.7 (240) | | | | | [21]{}: partition 0xca0f-0xcaff.5 (240.5) | | | count: 128 0x0ca00| 6b| k| rice_parameter: 13 0xca0f-0xca0f.5 (0.5) -0x0ca00| 6b| k| samples: raw bits 0xca0f.5-0xcaff.5 (240) +0x0ca00| 6b| k| residuals: raw bits 0xca0f.5-0xcaff.5 (240) 0x0ca10|a0 07 40 0e 80 1d 00 3a 00 74 00 e8 01 d0 03 a0|..@....:.t......| * |until 0xcaff.4 (240) | | | | | [22]{}: partition 0xcaff.5-0xcbdd.6 (222.1) | | | count: 128 0x0caf0| 03| .| rice_parameter: 12 0xcaff.5-0xcb00.2 (0.5) 0x0cb00|0d |. | -0x0cb00|0d 00 1a 00 34 00 60 00 c0 01 80 03 00 05 80 0c|....4.`.........| samples: raw bits 0xcb00.2-0xcbdd.6 (221.4) +0x0cb00|0d 00 1a 00 34 00 60 00 c0 01 80 03 00 05 80 0c|....4.`.........| residuals: raw bits 0xcb00.2-0xcbdd.6 (221.4) 0x0cb10|00 16 00 30 00 58 00 a0 01 60 02 c0 05 00 0b 00|...0.X...`......| * |until 0xcbdd.5 (222) | | | | | [23]{}: partition 0xcbdd.6-0xccc3.2 (229.4) | | | count: 128 0x0cbd0| fd 97 | .. | rice_parameter: 12 0xcbdd.6-0xcbde.3 (0.5) -0x0cbd0| 97 ff| ..| samples: raw bits 0xcbde.3-0xccc3.2 (228.7) +0x0cbd0| 97 ff| ..| residuals: raw bits 0xcbde.3-0xccc3.2 (228.7) 0x0cbe0|af fd ff ef ff 9f fb ff e7 ff 3f f9 ff df fe 7f|..........?.....| * |until 0xccc3.1 (229) | | | | | [24]{}: partition 0xccc3.2-0xcdb3.7 (240.5) | | | count: 128 0x0ccc0| da | . | rice_parameter: 13 0xccc3.2-0xccc3.7 (0.5) -0x0ccc0| da c7 fd 8f fb 3f f6 7f ec 7f d8 ff b3| .....?.......| samples: raw bits 0xccc3.7-0xcdb3.7 (240) +0x0ccc0| da c7 fd 8f fb 3f f6 7f ec 7f d8 ff b3| .....?.......| residuals: raw bits 0xccc3.7-0xcdb3.7 (240) 0x0ccd0|ff 67 fe c7 fd 9f fb 5f f6 7f ec ff d9 ff b3 ff|.g....._........| * |until 0xcdb3.6 (240) | | | | | [25]{}: partition 0xcdb3.7-0xce9f (235.1) | | | count: 128 0x0cdb0| fe d6 | .. | rice_parameter: 13 0xcdb3.7-0xcdb4.4 (0.5) -0x0cdb0| d6 ff ed 7f d9 ff b5 ff 6b fe d7 fd| ........k...| samples: raw bits 0xcdb4.4-0xce9f (234.4) +0x0cdb0| d6 ff ed 7f d9 ff b5 ff 6b fe d7 fd| ........k...| residuals: raw bits 0xcdb4.4-0xce9f (234.4) 0x0cdc0|9f fb 5f f6 bf ec ff d9 ff b3 ff 67 fe d7 fd 9f|.._........g....| * |until 0xce9e.7 (235) | | | | | [26]{}: partition 0xce9f-0xcf76 (215) | | | count: 128 0x0ce90| 5b| [| rice_parameter: 11 0xce9f-0xce9f.5 (0.5) -0x0ce90| 5b| [| samples: raw bits 0xce9f.5-0xcf76 (214.3) +0x0ce90| 5b| [| residuals: raw bits 0xce9f.5-0xcf76 (214.3) 0x0cea0|ff df fe ff f6 ff bf fd bf ed ff 6f fa ff db fe|...........o....| * |until 0xcf75.7 (215) | | | | | [27]{}: partition 0xcf76-0xd066.5 (240.5) | | | count: 128 0x0cf70| 6a | j | rice_parameter: 13 0xcf76-0xcf76.5 (0.5) -0x0cf70| 6a 20 04 40 09 00 11 00 24 00| j .@....$.| samples: raw bits 0xcf76.5-0xd066.5 (240) +0x0cf70| 6a 20 04 40 09 00 11 00 24 00| j .@....$.| residuals: raw bits 0xcf76.5-0xd066.5 (240) 0x0cf80|48 00 90 01 30 02 40 04 80 09 80 13 00 26 00 4c|H...0.@......&.L| * |until 0xd066.4 (240) | | | | | [28]{}: partition 0xd066.5-0xd157.2 (240.5) | | | count: 128 0x0d060| 03 5d | .] | rice_parameter: 13 0xd066.5-0xd067.2 (0.5) -0x0d060| 5d 00 3a 00 74 00 e8 01 d0| ].:.t....| samples: raw bits 0xd067.2-0xd157.2 (240) +0x0d060| 5d 00 3a 00 74 00 e8 01 d0| ].:.t....| residuals: raw bits 0xd067.2-0xd157.2 (240) 0x0d070|03 c0 07 40 0e 80 1d 00 3a 00 74 00 f0 01 d0 03|...@....:.t.....| * |until 0xd157.1 (240) | | | | | [29]{}: partition 0xd157.2-0xd231.7 (218.5) | | | count: 128 0x0d150| 18 | . | rice_parameter: 12 0xd157.2-0xd157.7 (0.5) -0x0d150| 18 58 00 a0 01 60 02 80 05| .X...`...| samples: raw bits 0xd157.7-0xd231.7 (218) +0x0d150| 18 58 00 a0 01 60 02 80 05| .X...`...| residuals: raw bits 0xd157.7-0xd231.7 (218) 0x0d160|00 09 00 14 00 24 00 50 00 90 01 20 02 40 04 00|.....$.P... .@..| * |until 0xd231.6 (218) | | | | | [30]{}: partition 0xd231.7-0xd31b.7 (234) | | | count: 128 0x0d230| fe da | .. | rice_parameter: 13 0xd231.7-0xd232.4 (0.5) -0x0d230| da ff ed ff b7 fe df fb 7f ef ff b7 fe ff| ..............| samples: raw bits 0xd232.4-0xd31b.7 (233.3) +0x0d230| da ff ed ff b7 fe df fb 7f ef ff b7 fe ff| ..............| residuals: raw bits 0xd232.4-0xd31b.7 (233.3) 0x0d240|fb ff ef ff bf ff 1f fc 7f f1 ff c7 ff 1f fc ff|................| * |until 0xd31b.6 (234) | | | | | [31]{}: partition 0xd31b.7-0xd40c.4 (240.5) | | | count: 128 0x0d310| fe d6 | .. | rice_parameter: 13 0xd31b.7-0xd31c.4 (0.5) -0x0d310| d6 7f ed 7f| ....| samples: raw bits 0xd31c.4-0xd40c.4 (240) +0x0d310| d6 7f ed 7f| ....| residuals: raw bits 0xd31c.4-0xd40c.4 (240) 0x0d320|da ff b5 ff 67 fe d7 fd af fb 5f f6 bf ed 7f da|....g....._.....| * |until 0xd40c.3 (240) | | 0x0d400| f0 | . | byte_align: 0 (valid) 0xd40c.4-0xd40d (0.4) @@ -1225,97 +1225,97 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0xd416.6-0xd6cc.5 (693.7) | | | count: 256 0x0d410| 52 88 | R. | rice_parameter: 20 0xd416.6-0xd417.3 (0.5) -0x0d410| 88 6f ff f9 ff ff 80 3f f9| .o.....?.| samples: raw bits 0xd417.3-0xd6cc.5 (693.2) +0x0d410| 88 6f ff f9 ff ff 80 3f f9| .o.....?.| residuals: raw bits 0xd417.3-0xd6cc.5 (693.2) 0x0d420|6f ff b6 4f fd 05 ff e2 bb ff 15 c0 0a 0b 00 5b|o..O...........[| * |until 0xd6cc.4 (694) | | | | | [1]{}: partition 0xd6cc.5-0xd982.5 (694) | | | count: 256 0x0d6c0| 05 13 | .. | rice_parameter: 20 0xd6cc.5-0xd6cd.2 (0.5) -0x0d6c0| 13 ae 00| ...| samples: raw bits 0xd6cd.2-0xd982.5 (693.3) +0x0d6c0| 13 ae 00| ...| residuals: raw bits 0xd6cd.2-0xd982.5 (693.3) 0x0d6d0|45 d0 03 e3 40 1c a4 00 d0 b0 05 dd 80 29 8c 01|E...@........)..| * |until 0xd982.4 (694) | | | | | [2]{}: partition 0xd982.5-0xdc38.4 (693.7) | | | count: 256 0x0d980| fd 16 | .. | rice_parameter: 20 0xd982.5-0xd983.2 (0.5) -0x0d980| 16 41 ff 50 df fd 20 5f ff d8 ff f5 0f| .A.P.. _.....| samples: raw bits 0xd983.2-0xdc38.4 (693.2) +0x0d980| 16 41 ff 50 df fd 20 5f ff d8 ff f5 0f| .A.P.. _.....| residuals: raw bits 0xd983.2-0xdc38.4 (693.2) 0x0d990|ff 57 7f f8 1d ff ab 8f fc ae ff e0 03 ff 2b a0|.W............+.| * |until 0xdc38.3 (694) | | | | | [3]{}: partition 0xdc38.4-0xdeee.3 (693.7) | | | count: 256 0x0dc30| 0a 31 | .1 | rice_parameter: 20 0xdc38.4-0xdc39.1 (0.5) -0x0dc30| 31 2c 00 b5 f0 02 97| 1,.....| samples: raw bits 0xdc39.1-0xdeee.3 (693.2) +0x0dc30| 31 2c 00 b5 f0 02 97| 1,.....| residuals: raw bits 0xdc39.1-0xdeee.3 (693.2) 0x0dc40|c0 09 4b 00 20 98 01 de 20 0d b0 00 63 18 02 c3|..K. ... ...c...| * |until 0xdeee.2 (694) | | | | | [4]{}: partition 0xdeee.3-0xe1b7.7 (713.4) | | | count: 256 0x0dee0| f4 | . | rice_parameter: 20 0xdeee.3-0xdeef (0.5) -0x0dee0| 6a| j| samples: raw bits 0xdeef-0xe1b7.7 (712.7) +0x0dee0| 6a| j| residuals: raw bits 0xdeef-0xe1b7.7 (712.7) 0x0def0|7f fd 90 3f f5 cd ff d5 41 ff 4c 87 fd 0d ff ff|...?....A.L.....| * |until 0xe1b7.6 (713) | | | | | [5]{}: partition 0xe1b7.7-0xe4ca (786.1) | | | count: 256 0x0e1b0| e5 7e | .~ | rice_parameter: 23 0xe1b7.7-0xe1b8.4 (0.5) -0x0e1b0| 7e 06 5e 2e 3d 98 d5 a1| ~.^.=...| samples: raw bits 0xe1b8.4-0xe4ca (785.4) +0x0e1b0| 7e 06 5e 2e 3d 98 d5 a1| ~.^.=...| residuals: raw bits 0xe1b8.4-0xe4ca (785.4) 0x0e1c0|0e eb 53 74 da f5 34 fb 01 ba 95 9e 6b 67 c8 bf|..St..4.....kg..| * |until 0xe4c9.7 (786) | | | | | [6]{}: partition 0xe4ca-0xe7d6.3 (780.3) | | | count: 256 0x0e4c0| b1 | . | rice_parameter: 22 0xe4ca-0xe4ca.5 (0.5) -0x0e4c0| b1 27 94 5d 4d 79| .'.]My| samples: raw bits 0xe4ca.5-0xe7d6.3 (779.6) +0x0e4c0| b1 27 94 5d 4d 79| .'.]My| residuals: raw bits 0xe4ca.5-0xe7d6.3 (779.6) 0x0e4d0|c9 48 1d e8 f4 49 1d 68 ce 0c b8 97 e9 7b 6d fc|.H...I.h.....{m.| * |until 0xe7d6.2 (780) | | | | | [7]{}: partition 0xe7d6.3-0xeae4.7 (782.4) | | | count: 256 0x0e7d0| b6 | . | rice_parameter: 22 0xe7d6.3-0xe7d7 (0.5) -0x0e7d0| fc a1 54 7d b9 7e 78 e6 ca| ..T}.~x..| samples: raw bits 0xe7d7-0xeae4.7 (781.7) +0x0e7d0| fc a1 54 7d b9 7e 78 e6 ca| ..T}.~x..| residuals: raw bits 0xe7d7-0xeae4.7 (781.7) 0x0e7e0|1a eb 46 07 8e 2f d8 d3 99 e7 6d 96 07 ce b5 ea|..F../....m.....| * |until 0xeae4.6 (782) | | | | | [8]{}: partition 0xeae4.7-0xedf6.2 (785.3) | | | count: 256 0x0eae0| af 7d | .} | rice_parameter: 23 0xeae4.7-0xeae5.4 (0.5) -0x0eae0| 7d 41 61 55 0a 59 3f 7d 82 0d 95| }AaU.Y?}...| samples: raw bits 0xeae5.4-0xedf6.2 (784.6) +0x0eae0| 7d 41 61 55 0a 59 3f 7d 82 0d 95| }AaU.Y?}...| residuals: raw bits 0xeae5.4-0xedf6.2 (784.6) 0x0eaf0|19 a7 77 02 05 ad 96 d2 a1 e1 9e 7e 7c dd ee 09|..w........~|...| * |until 0xedf6.1 (785) | | | | | [9]{}: partition 0xedf6.2-0xf107.6 (785.4) | | | count: 256 0x0edf0| 6f | o | rice_parameter: 23 0xedf6.2-0xedf6.7 (0.5) -0x0edf0| 6f 2d 55 48 d8 d2 1c db 9c cf| o-UH......| samples: raw bits 0xedf6.7-0xf107.6 (784.7) +0x0edf0| 6f 2d 55 48 d8 d2 1c db 9c cf| o-UH......| residuals: raw bits 0xedf6.7-0xf107.6 (784.7) 0x0ee00|b6 3f 17 f5 4f e9 ee 9f 95 5f 15 6f 3e d6 79 9e|.?..O...._.o>.y.| * |until 0xf107.5 (785) | | | | | [10]{}: partition 0xf107.6-0xf418.5 (784.7) | | | count: 256 0x0f100| c2 ff | .. | rice_parameter: 23 0xf107.6-0xf108.3 (0.5) -0x0f100| ff 84 3d 6f 6d 5f 84 c4| ..=om_..| samples: raw bits 0xf108.3-0xf418.5 (784.2) +0x0f100| ff 84 3d 6f 6d 5f 84 c4| ..=om_..| residuals: raw bits 0xf108.3-0xf418.5 (784.2) 0x0f110|a6 84 f0 42 72 aa c4 7b 2c 22 a1 50 6e 8a fc 82|...Br..{,".Pn...| * |until 0xf418.4 (785) | | | | | [11]{}: partition 0xf418.5-0xf729 (784.3) | | | count: 256 0x0f410| 25 85 | %. | rice_parameter: 22 0xf418.5-0xf419.2 (0.5) -0x0f410| 85 9a 22 02 5f fb 50| .."._.P| samples: raw bits 0xf419.2-0xf729 (783.6) +0x0f410| 85 9a 22 02 5f fb 50| .."._.P| residuals: raw bits 0xf419.2-0xf729 (783.6) 0x0f420|f2 e2 fb 32 0d 60 6f 8f 08 1d 10 37 2c 84 d3 9e|...2.`o....7,...| * |until 0xf728.7 (784) | | | | | [12]{}: partition 0xf729-0xfa39.7 (784.7) | | | count: 256 0x0f720| bf | . | rice_parameter: 23 0xf729-0xf729.5 (0.5) -0x0f720| bf bf ca c7 55 16 1a| ....U..| samples: raw bits 0xf729.5-0xfa39.7 (784.2) +0x0f720| bf bf ca c7 55 16 1a| ....U..| residuals: raw bits 0xf729.5-0xfa39.7 (784.2) 0x0f730|5f 6f 69 ea 9e 1f e4 da 73 f3 d0 cc a1 74 04 f3|_oi.....s....t..| * |until 0xfa39.6 (785) | | | | | [13]{}: partition 0xfa39.7-0xfd49.6 (783.7) | | | count: 256 0x0fa30| b7 65 | .e | rice_parameter: 22 0xfa39.7-0xfa3a.4 (0.5) -0x0fa30| 65 bf b8 fb 84 d3| e.....| samples: raw bits 0xfa3a.4-0xfd49.6 (783.2) +0x0fa30| 65 bf b8 fb 84 d3| e.....| residuals: raw bits 0xfa3a.4-0xfd49.6 (783.2) 0x0fa40|0c 4d 28 6e 50 6c 27 c1 14 71 02 53 28 4e ae 73|.M(nPl'..q.S(N.s| * |until 0xfd49.5 (784) | | | | | [14]{}: partition 0xfd49.6-0x1005a.3 (784.5) | | | count: 256 0x0fd40| 92 ff | .. | rice_parameter: 23 0xfd49.6-0xfd4a.3 (0.5) -0x0fd40| ff d1 b3 52 7e 88| ...R~.| samples: raw bits 0xfd4a.3-0x1005a.3 (784) +0x0fd40| ff d1 b3 52 7e 88| ...R~.| residuals: raw bits 0xfd4a.3-0x1005a.3 (784) 0x0fd50|5e d3 b5 34 3f 5d 18 3c a8 89 5c c1 69 d6 fd 56|^..4?].<..\.i..V| * |until 0x1005a.2 (784) | | | | | [15]{}: partition 0x1005a.3-0x1036c (785.5) | | | count: 256 0x10050| 57 | W | rice_parameter: 23 0x1005a.3-0x1005b (0.5) -0x10050| cd d5 db ac ab| .....| samples: raw bits 0x1005b-0x1036c (785) +0x10050| cd d5 db ac ab| .....| residuals: raw bits 0x1005b-0x1036c (785) 0x10060|ce 79 04 bd f0 2d 5c cc 40 07 22 50 3b f9 d8 ad|.y...-\.@."P;...| * |until 0x1036b.7 (785) | | | | | [1]{}: subframe 0x1036c-0x10722.2 (950.2) @@ -1335,13 +1335,13 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x10372.6-0x10548.3 (469.5) | | | count: 2046 0x10370| 04 0a | .. | rice_parameter: 0 0x10372.6-0x10373.2 (0.4) -0x10370| 0a 59 f2 cf 49 a6 92 96 65 2c cb 9e 52| .Y..I...e,..R| samples: raw bits 0x10373.2-0x10548.3 (469.1) +0x10370| 0a 59 f2 cf 49 a6 92 96 65 2c cb 9e 52| .Y..I...e,..R| residuals: raw bits 0x10373.2-0x10548.3 (469.1) 0x10380|92 ca 65 29 cd 39 a6 53 e7 ca 4b 3c a7 29 ca 72|..e).9.S..K<.).r| * |until 0x10548.2 (470) | | | | | [1]{}: partition 0x10548.3-0x10722.2 (473.7) | | | count: 2048 0x10540| 20 | | rice_parameter: 0 0x10548.3-0x10548.7 (0.4) -0x10540| 20 25 2c d9 65 97 fe 44| %,.e..D| samples: raw bits 0x10548.7-0x10722.2 (473.3) +0x10540| 20 25 2c d9 65 97 fe 44| %,.e..D| residuals: raw bits 0x10548.7-0x10722.2 (473.3) 0x10550|f4 22 52 9d 29 66 e5 2f cb ff a7 d3 4e 94 d9 66|."R.)f./....N..f| * |until 0x10722.1 (474) | | 0x10720| 40 | @ | byte_align: 0 (valid) 0x10722.2-0x10723 (0.6) @@ -1386,7 +1386,7 @@ $ fq -d flac dv stereo24.flac | | | [0]{}: partition 0x1199a.6-0x11b5e.2 (451.4) | | | count: 1568 0x11990| 00 65 | .e | rice_parameter: 1 0x1199a.6-0x1199b.2 (0.4) -0x11990| 65 d5 55 5a ad| e.UZ.| samples: raw bits 0x1199b.2-0x11b5e.2 (451) +0x11990| 65 d5 55 5a ad| e.UZ.| residuals: raw bits 0x1199b.2-0x11b5e.2 (451) 0x119a0|5a d6 b9 74 ba aa aa b5 5a b5 72 e5 cb a9 75 6a|Z..t....Z.r...uj| * |until 0x11b5e.1 (451) | | 0x11b50| 80 | . | byte_align: 0 (valid) 0x11b5e.2-0x11b5f (0.6) diff --git a/format/flac/testdata/stereo32.fqtest b/format/flac/testdata/stereo32.fqtest index a34ad4625..4f08f48bf 100644 --- a/format/flac/testdata/stereo32.fqtest +++ b/format/flac/testdata/stereo32.fqtest @@ -80,7 +80,7 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x20aa.6-0x22ab.2 (512.4) | | | count: 4096 0x020a0| 00 3f | .? | rice_parameter: 0 0x20aa.6-0x20ab.2 (0.4) -0x020a0| 3f ff ff ff ff| ?....| samples: raw bits 0x20ab.2-0x22ab.2 (512) +0x020a0| 3f ff ff ff ff| ?....| residuals: raw bits 0x20ab.2-0x22ab.2 (512) 0x020b0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x22ab.1 (512) | | | | | [1]{}: subframe 0x22ab.2-0x24ad.4 (514.2) @@ -97,7 +97,7 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x22ad-0x24ad.4 (512.4) | | | count: 4096 0x022a0| 0f | . | rice_parameter: 0 0x22ad-0x22ad.4 (0.4) -0x022a0| 0f ff ff| ...| samples: raw bits 0x22ad.4-0x24ad.4 (512) +0x022a0| 0f ff ff| ...| residuals: raw bits 0x22ad.4-0x24ad.4 (512) 0x022b0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x24ad.3 (512) | | 0x024a0| f0 | . | byte_align: 0 (valid) 0x24ad.4-0x24ae (0.4) @@ -152,191 +152,191 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x24e7.7-0x24f7.4 (15.5) | | | count: 120 0x024e0| aa 0f | .. | rice_parameter: 0 0x24e7.7-0x24e8.4 (0.5) -0x024e0| 0f ff ff ff ff ff ff ff| ........| samples: raw bits 0x24e8.4-0x24f7.4 (15) +0x024e0| 0f ff ff ff ff ff ff ff| ........| residuals: raw bits 0x24e8.4-0x24f7.4 (15) 0x024f0|ff ff ff ff ff ff ff f0 |........ | | | | [1]{}: partition 0x24f7.4-0x2508.1 (16.5) | | | count: 128 0x024f0| f0 7f | .. | rice_parameter: 0 0x24f7.4-0x24f8.1 (0.5) -0x024f0| 7f ff ff ff ff ff ff ff| ........| samples: raw bits 0x24f8.1-0x2508.1 (16) +0x024f0| 7f ff ff ff ff ff ff ff| ........| residuals: raw bits 0x24f8.1-0x2508.1 (16) 0x02500|ff ff ff ff ff ff ff ff da |......... | | | | [2]{}: partition 0x2508.1-0x2688.4 (384.3) | | | count: 128 0x02500| da | . | rice_parameter: 22 0x2508.1-0x2508.6 (0.5) -0x02500| da 00 00 04 00 00 08 00| ........| samples: raw bits 0x2508.6-0x2688.4 (383.6) +0x02500| da 00 00 04 00 00 08 00| ........| residuals: raw bits 0x2508.6-0x2688.4 (383.6) 0x02510|00 10 00 00 20 00 00 40 00 00 80 00 01 00 00 02|.... ..@........| * |until 0x2688.3 (384) | | | | | [3]{}: partition 0x2688.4-0x2810.5 (392.1) | | | count: 128 0x02680| 3b 3f | ;? | rice_parameter: 22 0x2688.4-0x2689.1 (0.5) -0x02680| 3f df 24 16 7a 8e c2| ?.$.z..| samples: raw bits 0x2689.1-0x2810.5 (391.4) +0x02680| 3f df 24 16 7a 8e c2| ?.$.z..| residuals: raw bits 0x2689.1-0x2810.5 (391.4) 0x02690|31 96 99 52 17 1c 52 5a 39 00 84 88 e8 fb a1 a0|1..R..RZ9.......| * |until 0x2810.4 (392) | | | | | [4]{}: partition 0x2810.5-0x299b.7 (395.2) | | | count: 128 0x02810|dd d6 |.. | rice_parameter: 23 0x2810.5-0x2811.2 (0.5) -0x02810| d6 d0 a9 c5 ea 1b 1d 47 1b a3 40 2f a3 4e 27| .......G..@/.N'| samples: raw bits 0x2811.2-0x299b.7 (394.5) +0x02810| d6 d0 a9 c5 ea 1b 1d 47 1b a3 40 2f a3 4e 27| .......G..@/.N'| residuals: raw bits 0x2811.2-0x299b.7 (394.5) 0x02820|d4 67 c8 bc a6 ad e8 52 0e 71 dc 60 73 84 ff 6a|.g.....R.q.`s..j| * |until 0x299b.6 (395) | | | | | [5]{}: partition 0x299b.7-0x2b26.2 (394.3) | | | count: 128 0x02990| 63 78 | cx | rice_parameter: 23 0x299b.7-0x299c.4 (0.5) -0x02990| 78 15 39 c9| x.9.| samples: raw bits 0x299c.4-0x2b26.2 (393.6) +0x02990| 78 15 39 c9| x.9.| residuals: raw bits 0x299c.4-0x2b26.2 (393.6) 0x029a0|1f 3f b8 56 68 38 d0 36 38 92 f0 98 9b 98 f8 c4|.?.Vh8.68.......| * |until 0x2b26.1 (394) | | | | | [6]{}: partition 0x2b26.2-0x2cac.6 (390.4) | | | count: 128 0x02b20| 6c | l | rice_parameter: 22 0x2b26.2-0x2b26.7 (0.5) -0x02b20| 6c 10 ac 69 e1 93 fd 0d 30 34| l..i....04| samples: raw bits 0x2b26.7-0x2cac.6 (389.7) +0x02b20| 6c 10 ac 69 e1 93 fd 0d 30 34| l..i....04| residuals: raw bits 0x2b26.7-0x2cac.6 (389.7) 0x02b30|59 a1 81 9a 8f 20 c3 ea 76 c4 84 aa 6f d9 a0 43|Y.... ..v...o..C| * |until 0x2cac.5 (390) | | | | | [7]{}: partition 0x2cac.6-0x2e39.2 (396.4) | | | count: 128 0x02ca0| d2 f3 | .. | rice_parameter: 23 0x2cac.6-0x2cad.3 (0.5) -0x02ca0| f3 9f 91| ...| samples: raw bits 0x2cad.3-0x2e39.2 (395.7) +0x02ca0| f3 9f 91| ...| residuals: raw bits 0x2cad.3-0x2e39.2 (395.7) 0x02cb0|0a b8 97 c9 7d a0 3b 40 25 2d d1 8d 51 3c 40 3f|....}.;@%-..Q<@?| * |until 0x2e39.1 (396) | | | | | [8]{}: partition 0x2e39.2-0x2fc1.7 (392.5) | | | count: 128 0x02e30| ed | . | rice_parameter: 22 0x2e39.2-0x2e39.7 (0.5) -0x02e30| ed 0e 21 19 20 26 4c| ..!. &L| samples: raw bits 0x2e39.7-0x2fc1.7 (392) +0x02e30| ed 0e 21 19 20 26 4c| ..!. &L| residuals: raw bits 0x2e39.7-0x2fc1.7 (392) 0x02e40|80 db eb 76 d6 dc 04 f2 d4 47 b3 56 3e dd 95 66|...v.....G.V>..f| * |until 0x2fc1.6 (392) | | | | | [9]{}: partition 0x2fc1.7-0x314d.2 (395.3) | | | count: 128 0x02fc0| 05 74 | .t | rice_parameter: 23 0x2fc1.7-0x2fc2.4 (0.5) -0x02fc0| 74 a9 28 86 43 13 79 df 45 a6 80 df e0 a3| t.(.C.y.E.....| samples: raw bits 0x2fc2.4-0x314d.2 (394.6) +0x02fc0| 74 a9 28 86 43 13 79 df 45 a6 80 df e0 a3| t.(.C.y.E.....| residuals: raw bits 0x2fc2.4-0x314d.2 (394.6) 0x02fd0|f5 a0 53 40 f5 56 93 7b c7 d1 ad 9e 8b 2b 96 9e|..S@.V.{.....+..| * |until 0x314d.1 (395) | | | | | [10]{}: partition 0x314d.2-0x32d5.2 (392) | | | count: 128 0x03140| 6d | m | rice_parameter: 22 0x314d.2-0x314d.7 (0.5) -0x03140| 6d 60 31| m`1| samples: raw bits 0x314d.7-0x32d5.2 (391.3) +0x03140| 6d 60 31| m`1| residuals: raw bits 0x314d.7-0x32d5.2 (391.3) 0x03150|99 f6 4d 24 06 e9 77 42 56 74 50 70 ac 0c 3c b8|..M$..wBVtPp..<.| * |until 0x32d5.1 (392) | | | | | [11]{}: partition 0x32d5.2-0x345d.6 (392.4) | | | count: 128 0x032d0| 6c | l | rice_parameter: 22 0x32d5.2-0x32d5.7 (0.5) -0x032d0| 6c 02 65 44 9c f8 60 e2 32 83 1c| l.eD..`.2..| samples: raw bits 0x32d5.7-0x345d.6 (391.7) +0x032d0| 6c 02 65 44 9c f8 60 e2 32 83 1c| l.eD..`.2..| residuals: raw bits 0x32d5.7-0x345d.6 (391.7) 0x032e0|62 41 a0 98 d0 a9 1f 7d 38 61 de 83 ed 33 e6 e5|bA.....}8a...3..| * |until 0x345d.5 (392) | | | | | [12]{}: partition 0x345d.6-0x35e9.2 (395.4) | | | count: 128 0x03450| b2 f9 | .. | rice_parameter: 23 0x345d.6-0x345e.3 (0.5) -0x03450| f9 0b| ..| samples: raw bits 0x345e.3-0x35e9.2 (394.7) +0x03450| f9 0b| ..| residuals: raw bits 0x345e.3-0x35e9.2 (394.7) 0x03460|b7 2f 91 60 9c 42 59 0e a0 f2 cc 38 6a ef fe 03|./.`.BY....8j...| * |until 0x35e9.1 (395) | | | | | [13]{}: partition 0x35e9.2-0x3770.3 (391.1) | | | count: 128 0x035e0| 6c | l | rice_parameter: 22 0x35e9.2-0x35e9.7 (0.5) -0x035e0| 6c 38 af 98 5c c3 94| l8..\..| samples: raw bits 0x35e9.7-0x3770.3 (390.4) +0x035e0| 6c 38 af 98 5c c3 94| l8..\..| residuals: raw bits 0x35e9.7-0x3770.3 (390.4) 0x035f0|8f a1 3c f9 ad 67 ef ed 44 19 4d 9a 2e 4e 4e ab|..<..g..D.M..NN.| * |until 0x3770.2 (391) | | | | | [14]{}: partition 0x3770.3-0x38fc.4 (396.1) | | | count: 128 0x03770|37 |7 | rice_parameter: 23 0x3770.3-0x3771 (0.5) -0x03770| ac 35 79 60 2d 3d dd 60 5d 53 45 13 d1 31 23| .5y`-=.`]SE..1#| samples: raw bits 0x3771-0x38fc.4 (395.4) +0x03770| ac 35 79 60 2d 3d dd 60 5d 53 45 13 d1 31 23| .5y`-=.`]SE..1#| residuals: raw bits 0x3771-0x38fc.4 (395.4) 0x03780|1d 3e 2c c9 62 ef f6 ff 9d ca 05 10 7e 54 fe 42|.>,.b.......~T.B| * |until 0x38fc.3 (396) | | | | | [15]{}: partition 0x38fc.4-0x3a86.1 (393.5) | | | count: 128 0x038f0| db da | .. | rice_parameter: 23 0x38fc.4-0x38fd.1 (0.5) -0x038f0| da a4 c1| ...| samples: raw bits 0x38fd.1-0x3a86.1 (393) +0x038f0| da a4 c1| ...| residuals: raw bits 0x38fd.1-0x3a86.1 (393) 0x03900|dd d9 30 e8 7a fa 4c 48 01 3a 85 bb 0e 7e 1e d6|..0.z.LH.:...~..| * |until 0x3a86 (393) | | | | | [16]{}: partition 0x3a86.1-0x3c11.6 (395.5) | | | count: 128 0x03a80| 5f | _ | rice_parameter: 23 0x3a86.1-0x3a86.6 (0.5) -0x03a80| 5f 79 4c d2 04 60 e3 42 b4 99| _yL..`.B..| samples: raw bits 0x3a86.6-0x3c11.6 (395) +0x03a80| 5f 79 4c d2 04 60 e3 42 b4 99| _yL..`.B..| residuals: raw bits 0x3a86.6-0x3c11.6 (395) 0x03a90|45 6c e6 7f 22 57 4a a5 ee aa c6 22 f5 ec 79 9b|El.."WJ...."..y.| * |until 0x3c11.5 (395) | | | | | [17]{}: partition 0x3c11.6-0x3d9a.3 (392.5) | | | count: 128 0x03c10| 1a ce | .. | rice_parameter: 22 0x3c11.6-0x3c12.3 (0.5) -0x03c10| ce 28 b0 85 6f 2e ef 1d d9 b4 51 d0 1a 66| .(..o.....Q..f| samples: raw bits 0x3c12.3-0x3d9a.3 (392) +0x03c10| ce 28 b0 85 6f 2e ef 1d d9 b4 51 d0 1a 66| .(..o.....Q..f| residuals: raw bits 0x3c12.3-0x3d9a.3 (392) 0x03c20|ae ee 3b b9 a3 4c 1e e5 0a ca 8a 90 6b 49 44 72|..;..L......kIDr| * |until 0x3d9a.2 (392) | | | | | [18]{}: partition 0x3d9a.3-0x3f21.1 (390.6) | | | count: 128 0x03d90| f6 | . | rice_parameter: 22 0x3d9a.3-0x3d9b (0.5) -0x03d90| 93 1b c6 da 7b| ....{| samples: raw bits 0x3d9b-0x3f21.1 (390.1) +0x03d90| 93 1b c6 da 7b| ....{| residuals: raw bits 0x3d9b-0x3f21.1 (390.1) 0x03da0|dd 5e 2c cc e8 fb 8c 27 17 bd 91 34 89 d6 ef 09|.^,....'...4....| * |until 0x3f21 (391) | | | | | [19]{}: partition 0x3f21.1-0x40ac.6 (395.5) | | | count: 128 0x03f20| 5f | _ | rice_parameter: 23 0x3f21.1-0x3f21.6 (0.5) -0x03f20| 5f f0 d3 c1 10 4e 82 30 db 53 bd d1 7a 17 39| _....N.0.S..z.9| samples: raw bits 0x3f21.6-0x40ac.6 (395) +0x03f20| 5f f0 d3 c1 10 4e 82 30 db 53 bd d1 7a 17 39| _....N.0.S..z.9| residuals: raw bits 0x3f21.6-0x40ac.6 (395) 0x03f30|be 89 eb 72 3b bb e7 a2 f1 43 66 a8 7f c3 3e f3|...r;....Cf...>.| * |until 0x40ac.5 (395) | | | | | [20]{}: partition 0x40ac.6-0x4234.3 (391.5) | | | count: 128 0x040a0| 62 c4 | b. | rice_parameter: 22 0x40ac.6-0x40ad.3 (0.5) -0x040a0| c4 1e 38| ..8| samples: raw bits 0x40ad.3-0x4234.3 (391) +0x040a0| c4 1e 38| ..8| residuals: raw bits 0x40ad.3-0x4234.3 (391) 0x040b0|b0 74 e3 c4 82 38 7b ed b0 e0 a6 ff b1 26 39 24|.t...8{......&9$| * |until 0x4234.2 (391) | | | | | [21]{}: partition 0x4234.3-0x43c0.6 (396.3) | | | count: 128 0x04230| 37 | 7 | rice_parameter: 23 0x4234.3-0x4235 (0.5) -0x04230| c9 54 3f ca e4 98 dd 92 10 44 0e| .T?......D.| samples: raw bits 0x4235-0x43c0.6 (395.6) +0x04230| c9 54 3f ca e4 98 dd 92 10 44 0e| .T?......D.| residuals: raw bits 0x4235-0x43c0.6 (395.6) 0x04240|f2 be 98 9e 8e 8b ec f4 3d 6a bb 9d bf 3f 97 68|........=j...?.h| * |until 0x43c0.5 (396) | | | | | [22]{}: partition 0x43c0.6-0x4549.1 (392.3) | | | count: 128 0x043c0|f6 c0 |.. | rice_parameter: 22 0x43c0.6-0x43c1.3 (0.5) -0x043c0| c0 4f fa 5d 2b a9 6c 96 71 0e 41 ba 07 6b 6b| .O.]+.l.q.A..kk| samples: raw bits 0x43c1.3-0x4549.1 (391.6) +0x043c0| c0 4f fa 5d 2b a9 6c 96 71 0e 41 ba 07 6b 6b| .O.]+.l.q.A..kk| residuals: raw bits 0x43c1.3-0x4549.1 (391.6) 0x043d0|27 58 bd 4a 3d 4d a1 72 f2 b2 83 a4 73 a8 e4 31|'X.J=M.r....s..1| * |until 0x4549 (392) | | | | | [23]{}: partition 0x4549.1-0x46d3.7 (394.6) | | | count: 128 0x04540| 5e | ^ | rice_parameter: 23 0x4549.1-0x4549.6 (0.5) -0x04540| 5e 2c ad eb d4 7e f6| ^,...~.| samples: raw bits 0x4549.6-0x46d3.7 (394.1) +0x04540| 5e 2c ad eb d4 7e f6| ^,...~.| residuals: raw bits 0x4549.6-0x46d3.7 (394.1) 0x04550|aa f2 60 64 37 9f 60 2a 2e f2 fb eb c2 9a 47 26|..`d7.`*......G&| * |until 0x46d3.6 (395) | | | | | [24]{}: partition 0x46d3.7-0x485e.4 (394.5) | | | count: 128 0x046d0| 7d 78 | }x | rice_parameter: 23 0x46d3.7-0x46d4.4 (0.5) -0x046d0| 78 92 77 08 9d 17 28 9a 73 68 94 bf| x.w...(.sh..| samples: raw bits 0x46d4.4-0x485e.4 (394) +0x046d0| 78 92 77 08 9d 17 28 9a 73 68 94 bf| x.w...(.sh..| residuals: raw bits 0x46d4.4-0x485e.4 (394) 0x046e0|68 a4 3a 28 84 69 a8 be ba 48 5b 35 28 fe 9b 68|h.:(.i...H[5(..h| * |until 0x485e.3 (394) | | | | | [25]{}: partition 0x485e.4-0x49e6.2 (391.6) | | | count: 128 0x04850| 7b 02| {.| rice_parameter: 22 0x485e.4-0x485f.1 (0.5) -0x04850| 02| .| samples: raw bits 0x485f.1-0x49e6.2 (391.1) +0x04850| 02| .| residuals: raw bits 0x485f.1-0x49e6.2 (391.1) 0x04860|50 9a c9 80 c6 0d 38 bf f0 3a 6e c5 c3 fd 51 bf|P.....8..:n...Q.| * |until 0x49e6.1 (392) | | | | | [26]{}: partition 0x49e6.2-0x4b71.5 (395.3) | | | count: 128 0x049e0| 2e | . | rice_parameter: 23 0x49e6.2-0x49e6.7 (0.5) -0x049e0| 2e 8d fb 70 64 db d4 49 17 44| ...pd..I.D| samples: raw bits 0x49e6.7-0x4b71.5 (394.6) +0x049e0| 2e 8d fb 70 64 db d4 49 17 44| ...pd..I.D| residuals: raw bits 0x49e6.7-0x4b71.5 (394.6) 0x049f0|b8 05 eb 69 86 01 79 17 04 8c c4 ba 72 87 87 51|...i..y.....r..Q| * |until 0x4b71.4 (395) | | | | | [27]{}: partition 0x4b71.5-0x4cf9.7 (392.2) | | | count: 128 0x04b70| 25 a2 | %. | rice_parameter: 22 0x4b71.5-0x4b72.2 (0.5) -0x04b70| a2 59 22 08 c1 7d c5 17 e8 e5 ef 23 90 36| .Y"..}.....#.6| samples: raw bits 0x4b72.2-0x4cf9.7 (391.5) +0x04b70| a2 59 22 08 c1 7d c5 17 e8 e5 ef 23 90 36| .Y"..}.....#.6| residuals: raw bits 0x4b72.2-0x4cf9.7 (391.5) 0x04b80|e6 65 93 62 c8 36 6a 1d 1e dc d7 b3 8d 57 ec 21|.e.b.6j......W.!| * |until 0x4cf9.6 (392) | | | | | [28]{}: partition 0x4cf9.7-0x4e86.2 (396.3) | | | count: 128 0x04cf0| c3 76 | .v | rice_parameter: 23 0x4cf9.7-0x4cfa.4 (0.5) -0x04cf0| 76 ca ac 83 7e d7| v...~.| samples: raw bits 0x4cfa.4-0x4e86.2 (395.6) +0x04cf0| 76 ca ac 83 7e d7| v...~.| residuals: raw bits 0x4cfa.4-0x4e86.2 (395.6) 0x04d00|a5 2d 44 e3 9c a2 37 6b 57 2e aa 82 a8 23 78 36|.-D...7kW....#x6| * |until 0x4e86.1 (396) | | | | | [29]{}: partition 0x4e86.2-0x500e.3 (392.1) | | | count: 128 0x04e80| 2c | , | rice_parameter: 22 0x4e86.2-0x4e86.7 (0.5) -0x04e80| 2c 44 af b0 74 76 1e 6d 6f 3e| ,D..tv.mo>| samples: raw bits 0x4e86.7-0x500e.3 (391.4) +0x04e80| 2c 44 af b0 74 76 1e 6d 6f 3e| ,D..tv.mo>| residuals: raw bits 0x4e86.7-0x500e.3 (391.4) 0x04e90|cc 5f 3f 67 6c 68 42 ef 9e e2 76 2d dd 9b 5b 9f|._?glhB...v-..[.| * |until 0x500e.2 (392) | | | | | [30]{}: partition 0x500e.3-0x5196.4 (392.1) | | | count: 128 0x05000| f6 | . | rice_parameter: 22 0x500e.3-0x500f (0.5) -0x05000| 11| .| samples: raw bits 0x500f-0x5196.4 (391.4) +0x05000| 11| .| residuals: raw bits 0x500f-0x5196.4 (391.4) 0x05010|c7 f0 6e 25 96 80 9c 15 10 29 c7 b7 17 6c 83 d8|..n%.....)...l..| * |until 0x5196.3 (392) | | | | | [31]{}: partition 0x5196.4-0x5322.7 (396.3) | | | count: 128 0x05190| 9b eb | .. | rice_parameter: 23 0x5196.4-0x5197.1 (0.5) -0x05190| eb a5 b9 25 0a ec 7e 8b 68| ...%..~.h| samples: raw bits 0x5197.1-0x5322.7 (395.6) +0x05190| eb a5 b9 25 0a ec 7e 8b 68| ...%..~.h| residuals: raw bits 0x5197.1-0x5322.7 (395.6) 0x051a0|72 b8 30 e1 1d 9f a6 c6 84 37 74 f5 af 8b ec b8|r.0......7t.....| * |until 0x5322.6 (396) | | | | | [1]{}: subframe 0x5322.7-0x813f.3 (11804.4) @@ -375,96 +375,96 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x5354.6-0x5374.3 (31.5) | | | count: 248 0x05350| 50 1f | P. | rice_parameter: 0 0x5354.6-0x5355.3 (0.5) -0x05350| 1f ff ff ff ff ff ff ff ff ff ff| ...........| samples: raw bits 0x5355.3-0x5374.3 (31) +0x05350| 1f ff ff ff ff ff ff ff ff ff ff| ...........| residuals: raw bits 0x5355.3-0x5374.3 (31) 0x05360|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| 0x05370|ff ff ff ff f6 |..... | | | | [1]{}: partition 0x5374.3-0x567a.5 (774.2) | | | count: 256 0x05370| f6 | . | rice_parameter: 22 0x5374.3-0x5375 (0.5) -0x05370| 80 00 01 00 00 02 00 00 04 00 00| ...........| samples: raw bits 0x5375-0x567a.5 (773.5) +0x05370| 80 00 01 00 00 02 00 00 04 00 00| ...........| residuals: raw bits 0x5375-0x567a.5 (773.5) 0x05380|08 00 00 10 00 00 20 00 00 40 00 00 80 00 01 00|...... ..@......| * |until 0x567a.4 (774) | | | | | [2]{}: partition 0x567a.5-0x5989.7 (783.2) | | | count: 256 0x05670| 5d 81 | ]. | rice_parameter: 22 0x567a.5-0x567b.2 (0.5) -0x05670| 81 84 3b de 67| ..;.g| samples: raw bits 0x567b.2-0x5989.7 (782.5) +0x05670| 81 84 3b de 67| ..;.g| residuals: raw bits 0x567b.2-0x5989.7 (782.5) 0x05680|4b 48 3e 96 5f 0f 44 af 2c cd d7 87 90 12 d8 48|KH>._.D.,......H| * |until 0x5989.6 (783) | | | | | [3]{}: partition 0x5989.7-0x5c97.3 (781.4) | | | count: 256 0x05980| c7 68 | .h | rice_parameter: 22 0x5989.7-0x598a.4 (0.5) -0x05980| 68 f3 67 27 c2 93| h.g'..| samples: raw bits 0x598a.4-0x5c97.3 (780.7) +0x05980| 68 f3 67 27 c2 93| h.g'..| residuals: raw bits 0x598a.4-0x5c97.3 (780.7) 0x05990|d0 c8 ba 19 e0 76 1f 02 23 a6 d3 c7 d2 75 58 a2|.....v..#....uX.| * |until 0x5c97.2 (781) | | | | | [4]{}: partition 0x5c97.3-0x5fa5.1 (781.6) | | | count: 256 0x05c90| f6 | . | rice_parameter: 22 0x5c97.3-0x5c98 (0.5) -0x05c90| 77 14 11 19 4d d0 4e 95| w...M.N.| samples: raw bits 0x5c98-0x5fa5.1 (781.1) +0x05c90| 77 14 11 19 4d d0 4e 95| w...M.N.| residuals: raw bits 0x5c98-0x5fa5.1 (781.1) 0x05ca0|27 ca 95 89 59 eb 94 9d fb 75 98 2d 78 ac b6 28|'...Y....u.-x..(| * |until 0x5fa5 (782) | | | | | [5]{}: partition 0x5fa5.1-0x62b2.2 (781.1) | | | count: 256 0x05fa0| 5a | Z | rice_parameter: 22 0x5fa5.1-0x5fa5.6 (0.5) -0x05fa0| 5a 13 f3 f1 46 27 f3 36 48 44 59| Z...F'.6HDY| samples: raw bits 0x5fa5.6-0x62b2.2 (780.4) +0x05fa0| 5a 13 f3 f1 46 27 f3 36 48 44 59| Z...F'.6HDY| residuals: raw bits 0x5fa5.6-0x62b2.2 (780.4) 0x05fb0|f1 e1 fb 16 30 12 3f 4b 63 93 07 a8 55 61 88 e9|....0.?Kc...Ua..| * |until 0x62b2.1 (781) | | | | | [6]{}: partition 0x62b2.2-0x65c1.3 (783.1) | | | count: 256 0x062b0| ac | . | rice_parameter: 22 0x62b2.2-0x62b2.7 (0.5) -0x062b0| ac 1f 4f 10 9b e0 7a 70 02 e3 90 19 6e 31| ..O...zp....n1| samples: raw bits 0x62b2.7-0x65c1.3 (782.4) +0x062b0| ac 1f 4f 10 9b e0 7a 70 02 e3 90 19 6e 31| ..O...zp....n1| residuals: raw bits 0x62b2.7-0x65c1.3 (782.4) 0x062c0|83 95 83 08 77 bc ce 96 90 7d 2c be 1e 89 5e 59|....w....},...^Y| * |until 0x65c1.2 (783) | | | | | [7]{}: partition 0x65c1.3-0x68cf.3 (782) | | | count: 256 0x065c0| 16 | . | rice_parameter: 22 0x65c1.3-0x65c2 (0.5) -0x065c0| 3b 80 b2 66 08 d1 92 0e 1e 7c 57 41 0b 22| ;..f.....|WA."| samples: raw bits 0x65c2-0x68cf.3 (781.3) +0x065c0| 3b 80 b2 66 08 d1 92 0e 1e 7c 57 41 0b 22| ;..f.....|WA."| residuals: raw bits 0x65c2-0x68cf.3 (781.3) 0x065d0|5c 71 e6 ce 4f 85 27 a1 91 74 33 c0 ec 3e 04 47|\q..O.'..t3..>.G| * |until 0x68cf.2 (782) | | | | | [8]{}: partition 0x68cf.3-0x6bdc.5 (781.2) | | | count: 256 0x068c0| d6| .| rice_parameter: 22 0x68cf.3-0x68d0 (0.5) -0x068d0|f7 56 31 3b 7a 2d 6a 0e 8d ee 06 d4 ba b5 8e ee|.V1;z-j.........| samples: raw bits 0x68d0-0x6bdc.5 (780.5) +0x068d0|f7 56 31 3b 7a 2d 6a 0e 8d ee 06 d4 ba b5 8e ee|.V1;z-j.........| residuals: raw bits 0x68d0-0x6bdc.5 (780.5) * |until 0x6bdc.4 (781) | | | | | [9]{}: partition 0x6bdc.5-0x6eea.2 (781.5) | | | count: 256 0x06bd0| a5 a6 | .. | rice_parameter: 22 0x6bdc.5-0x6bdd.2 (0.5) -0x06bd0| a6 ca a7| ...| samples: raw bits 0x6bdd.2-0x6eea.2 (781) +0x06bd0| a6 ca a7| ...| residuals: raw bits 0x6bdd.2-0x6eea.2 (781) 0x06be0|03 6c 6e 39 61 13 86 4d 9f f2 8c 33 b4 27 e7 e2|.ln9a..M...3.'..| * |until 0x6eea.1 (781) | | | | | [10]{}: partition 0x6eea.2-0x71f8.5 (782.3) | | | count: 256 0x06ee0| 2d | - | rice_parameter: 22 0x6eea.2-0x6eea.7 (0.5) -0x06ee0| 2d 15 cb 19 c7 23| -....#| samples: raw bits 0x6eea.7-0x71f8.5 (781.6) +0x06ee0| 2d 15 cb 19 c7 23| -....#| residuals: raw bits 0x6eea.7-0x71f8.5 (781.6) 0x06ef0|f0 5b 80 0f fc 1c 23 35 b4 58 3e 9e 21 37 c0 f4|.[....#5.X>.!7..| * |until 0x71f8.4 (782) | | | | | [11]{}: partition 0x71f8.5-0x7507.5 (783) | | | count: 256 0x071f0| 85 85 | .. | rice_parameter: 22 0x71f8.5-0x71f9.2 (0.5) -0x071f0| 85 e0 24 c4 f1 18 15| ..$....| samples: raw bits 0x71f9.2-0x7507.5 (782.3) +0x071f0| 85 e0 24 c4 f1 18 15| ..$....| residuals: raw bits 0x71f9.2-0x7507.5 (782.3) 0x07200|c5 92 75 34 ca f0 9b 4a 50 77 01 64 cc 11 a3 24|..u4...JPw.d...$| * |until 0x7507.4 (783) | | | | | [12]{}: partition 0x7507.5-0x7814.4 (780.7) | | | count: 256 0x07500| ad a3 | .. | rice_parameter: 22 0x7507.5-0x7508.2 (0.5) -0x07500| a3 88 23 ec 13 5e ff f0| ..#..^..| samples: raw bits 0x7508.2-0x7814.4 (780.2) +0x07500| a3 88 23 ec 13 5e ff f0| ..#..^..| residuals: raw bits 0x7508.2-0x7814.4 (780.2) 0x07510|70 8d ed 24 99 7b fd ee ac 62 76 f4 5a d4 1d 1b|p..$.{...bv.Z...| * |until 0x7814.3 (781) | | | | | [13]{}: partition 0x7814.4-0x7b21.6 (781.2) | | | count: 256 0x07810| eb 45 | .E | rice_parameter: 22 0x7814.4-0x7815.1 (0.5) -0x07810| 45 ac 11 75 10 f6 dd 7a 5c 54 9a| E..u...z\T.| samples: raw bits 0x7815.1-0x7b21.6 (780.5) +0x07810| 45 ac 11 75 10 f6 dd 7a 5c 54 9a| E..u...z\T.| residuals: raw bits 0x7815.1-0x7b21.6 (780.5) 0x07820|a5 29 1b 7a 4d 95 4e 06 d8 dc 72 c2 27 0c 9b 3f|.).zM.N...r.'..?| * |until 0x7b21.5 (781) | | | | | [14]{}: partition 0x7b21.6-0x7e30.2 (782.4) | | | count: 256 0x07b20| a2 dc | .. | rice_parameter: 22 0x7b21.6-0x7b22.3 (0.5) -0x07b20| dc 45 ae c4 60 0e 52 6c 50 08 a3 d2 b7 ac| .E..`.RlP.....| samples: raw bits 0x7b22.3-0x7e30.2 (781.7) +0x07b20| dc 45 ae c4 60 0e 52 6c 50 08 a3 d2 b7 ac| .E..`.RlP.....| residuals: raw bits 0x7b22.3-0x7e30.2 (781.7) 0x07b30|ba 62 2b 96 33 8e 47 e0 b7 00 1f f8 38 46 6b 68|.b+.3.G.....8Fkh| * |until 0x7e30.1 (782) | | | | | [15]{}: partition 0x7e30.2-0x813f.3 (783.1) | | | count: 256 0x07e30|6c |l | rice_parameter: 22 0x7e30.2-0x7e30.7 (0.5) -0x07e30|6c 59 70 70 e4 7a ae 73 6c fb 10 b1 37 72 a5 f8|lYpp.z.sl...7r..| samples: raw bits 0x7e30.7-0x813f.3 (782.4) +0x07e30|6c 59 70 70 e4 7a ae 73 6c fb 10 b1 37 72 a5 f8|lYpp.z.sl...7r..| residuals: raw bits 0x7e30.7-0x813f.3 (782.4) 0x07e40|0b c0 49 89 e2 30 2b 8b 24 ea 69 95 e1 36 94 a0|..I..0+.$.i..6..| * |until 0x813f.2 (783) | | 0x08130| 80| .| byte_align: 0 (valid) 0x813f.3-0x8140 (0.5) @@ -514,195 +514,195 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x816e.1-0x8332.5 (452.4) | | | count: 122 0x08160| ed | . | rice_parameter: 27 0x816e.1-0x816e.6 (0.5) -0x08160| ed 60| .`| samples: raw bits 0x816e.6-0x8332.5 (451.7) +0x08160| ed 60| .`| residuals: raw bits 0x816e.6-0x8332.5 (451.7) 0x08170|d9 df aa 98 21 ab 4e 3b 45 8a db e7 1b d6 c7 0d|....!.N;E.......| * |until 0x8332.4 (452) | | | | | [1]{}: partition 0x8332.5-0x84fa.2 (455.5) | | | count: 128 0x08330| 8e 84 | .. | rice_parameter: 26 0x8332.5-0x8333.2 (0.5) -0x08330| 84 d4 f2 d7 18 b8 a4 b4 50 5b d1 31 8f| ........P[.1.| samples: raw bits 0x8333.2-0x84fa.2 (455) +0x08330| 84 d4 f2 d7 18 b8 a4 b4 50 5b d1 31 8f| ........P[.1.| residuals: raw bits 0x8333.2-0x84fa.2 (455) 0x08340|b2 a8 44 f3 9d 73 1a 0f ff 3c 41 57 bf d1 28 1e|..D..s...P..| samples: raw bits 0xb204.3-0xb3fe (505.5) +0x0b200| dd 15 98 8d 58 d2 a9 d8 3e 50 c6 ff| ....X...>P..| residuals: raw bits 0xb204.3-0xb3fe (505.5) 0x0b210|43 7b 0d c7 23 8c 2d ac ac 3b 44 f8 a9 00 5a 9d|C{..#.-..;D...Z.| * |until 0xb3fd.7 (506) | | | | | [26]{}: partition 0xb3fe-0xb5f7.6 (505.6) | | | count: 128 0x0b3f0| f3 | . | rice_parameter: 30 0xb3fe-0xb3fe.5 (0.5) -0x0b3f0| f3 32| .2| samples: raw bits 0xb3fe.5-0xb5f7.6 (505.1) +0x0b3f0| f3 32| .2| residuals: raw bits 0xb3fe.5-0xb5f7.6 (505.1) 0x0b400|82 1a ca f7 70 8d fc f1 d1 26 d5 69 5d 17 d6 7e|....p....&.i]..~| * |until 0xb5f7.5 (506) | | | | | [27]{}: partition 0xb5f7.6-0xb7f2.1 (506.3) | | | count: 128 0x0b5f0| ab de | .. | rice_parameter: 30 0xb5f7.6-0xb5f8.3 (0.5) -0x0b5f0| de cc 59 57 58 dc 69 ec| ..YWX.i.| samples: raw bits 0xb5f8.3-0xb7f2.1 (505.6) +0x0b5f0| de cc 59 57 58 dc 69 ec| ..YWX.i.| residuals: raw bits 0xb5f8.3-0xb7f2.1 (505.6) 0x0b600|8b 57 97 8e f1 5c d8 0f 92 c1 79 9c 94 89 8f ce|.W...\....y.....| * |until 0xb7f2 (506) | | | | | [28]{}: partition 0xb7f2.1-0xb9eb.5 (505.4) | | | count: 128 0x0b7f0| fa | . | rice_parameter: 30 0xb7f2.1-0xb7f2.6 (0.5) -0x0b7f0| fa 21 5d 14 f3 0e 28 e2 ca e1 27 8a 4c cd| .!]...(...'.L.| samples: raw bits 0xb7f2.6-0xb9eb.5 (504.7) +0x0b7f0| fa 21 5d 14 f3 0e 28 e2 ca e1 27 8a 4c cd| .!]...(...'.L.| residuals: raw bits 0xb7f2.6-0xb9eb.5 (504.7) 0x0b800|af 28 54 e9 04 ce 44 4d 1d 63 2b 76 dd 33 ef 1f|.(T...DM.c+v.3..| * |until 0xb9eb.4 (505) | | | | | [29]{}: partition 0xb9eb.5-0xbbe2.4 (502.7) | | | count: 128 0x0b9e0| d7 7d | .} | rice_parameter: 29 0xb9eb.5-0xb9ec.2 (0.5) -0x0b9e0| 7d 3e d3 8c| }>..| samples: raw bits 0xb9ec.2-0xbbe2.4 (502.2) +0x0b9e0| 7d 3e d3 8c| }>..| residuals: raw bits 0xb9ec.2-0xbbe2.4 (502.2) 0x0b9f0|0c 05 7e 25 8d 3a 54 59 9d 13 7d 38 1e 6e c9 f5|..~%.:TY..}8.n..| * |until 0xbbe2.3 (503) | | | | | [30]{}: partition 0xbbe2.4-0xbddd (506.4) | | | count: 128 0x0bbe0| 0f 2e | .. | rice_parameter: 30 0xbbe2.4-0xbbe3.1 (0.5) -0x0bbe0| 2e 6a d5 94 38 4b 5a e1 d3 ca 35 02 e5| .j..8KZ...5..| samples: raw bits 0xbbe3.1-0xbddd (505.7) +0x0bbe0| 2e 6a d5 94 38 4b 5a e1 d3 ca 35 02 e5| .j..8KZ...5..| residuals: raw bits 0xbbe3.1-0xbddd (505.7) 0x0bbf0|b5 44 4e d3 af ad 04 41 65 04 c9 40 1f c4 2c a2|.DN....Ae..@..,.| * |until 0xbddc.7 (506) | | | | | [31]{}: partition 0xbddd-0xbfd7.1 (506.1) | | | count: 128 0x0bdd0| f4 | . | rice_parameter: 30 0xbddd-0xbddd.5 (0.5) -0x0bdd0| f4 15 03| ...| samples: raw bits 0xbddd.5-0xbfd7.1 (505.4) +0x0bdd0| f4 15 03| ...| residuals: raw bits 0xbddd.5-0xbfd7.1 (505.4) 0x0bde0|dc 84 d1 9d 08 de 5f e0 cb 7a bb b8 a2 bc 10 af|......_..z......| * |until 0xbfd7 (506) | | | | | [1]{}: subframe 0xbfd7.1-0xfe64 (16012.7) @@ -734,194 +734,194 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0xbff7.3-0xc1b3.7 (444.4) | | | count: 123 0x0bff0| bb | . | rice_parameter: 27 0xbff7.3-0xbff8 (0.5) -0x0bff0| c9 21 77 dd a3 89 e3 ee| .!w.....| samples: raw bits 0xbff8-0xc1b3.7 (443.7) +0x0bff0| c9 21 77 dd a3 89 e3 ee| .!w.....| residuals: raw bits 0xbff8-0xc1b3.7 (443.7) 0x0c000|2f 36 df ec 93 39 49 7e e5 ba 8e 51 00 d6 e5 13|/6...9I~...Q....| * |until 0xc1b3.6 (444) | | | | | [1]{}: partition 0xc1b3.7-0xc383.2 (463.3) | | | count: 128 0x0c1b0| 6d b2 | m. | rice_parameter: 27 0xc1b3.7-0xc1b4.4 (0.5) -0x0c1b0| b2 13 f1 8c 1e 2d 17 2c 42 47 8e 93| .....-.,BG..| samples: raw bits 0xc1b4.4-0xc383.2 (462.6) +0x0c1b0| b2 13 f1 8c 1e 2d 17 2c 42 47 8e 93| .....-.,BG..| residuals: raw bits 0xc1b4.4-0xc383.2 (462.6) 0x0c1c0|f5 36 7c 9e 92 ab cc 40 14 fe e3 9f 5f 6a 1f b3|.6|....@...._j..| * |until 0xc383.1 (463) | | | | | [2]{}: partition 0xc383.2-0xc54f.6 (460.4) | | | count: 128 0x0c380| 76 | v | rice_parameter: 27 0xc383.2-0xc383.7 (0.5) -0x0c380| 76 81 19 c4 fd d7 60 8b ce b7 1a bb 2f| v.....`...../| samples: raw bits 0xc383.7-0xc54f.6 (459.7) +0x0c380| 76 81 19 c4 fd d7 60 8b ce b7 1a bb 2f| v.....`...../| residuals: raw bits 0xc383.7-0xc54f.6 (459.7) 0x0c390|f6 11 93 4a a5 58 4a 9c 95 9c 1f 8a 4b 51 97 ac|...J.XJ.....KQ..| * |until 0xc54f.5 (460) | | | | | [3]{}: partition 0xc54f.6-0xc71f.1 (463.3) | | | count: 128 0x0c540| c7| .| rice_parameter: 27 0xc54f.6-0xc550.3 (0.5) 0x0c550|64 |d | -0x0c550|64 51 cc c0 94 11 5a f2 4f 30 3b c9 19 95 b3 65|dQ....Z.O0;....e| samples: raw bits 0xc550.3-0xc71f.1 (462.6) +0x0c550|64 51 cc c0 94 11 5a f2 4f 30 3b c9 19 95 b3 65|dQ....Z.O0;....e| residuals: raw bits 0xc550.3-0xc71f.1 (462.6) 0x0c560|30 8b 17 92 4b 6b a2 52 fe 46 49 3c 8b 4e a4 ae|0...Kk.R.FI<.N..| * |until 0xc71f (463) | | | | | [4]{}: partition 0xc71f.1-0xc8f8.1 (473) | | | count: 128 0x0c710| 72| r| rice_parameter: 28 0xc71f.1-0xc71f.6 (0.5) -0x0c710| 72| r| samples: raw bits 0xc71f.6-0xc8f8.1 (472.3) +0x0c710| 72| r| residuals: raw bits 0xc71f.6-0xc8f8.1 (472.3) 0x0c720|ce 53 71 d5 3d 14 a0 a1 5f 93 54 b5 f8 9c a3 e0|.Sq.=..._.T.....| * |until 0xc8f8 (473) | | | | | [5]{}: partition 0xc8f8.1-0xcaf1.6 (505.5) | | | count: 128 0x0c8f0| f9 | . | rice_parameter: 30 0xc8f8.1-0xc8f8.6 (0.5) -0x0c8f0| f9 f1 9c 87 69 8e 2a d4| ....i.*.| samples: raw bits 0xc8f8.6-0xcaf1.6 (505) +0x0c8f0| f9 f1 9c 87 69 8e 2a d4| ....i.*.| residuals: raw bits 0xc8f8.6-0xcaf1.6 (505) 0x0c900|b2 6c 32 14 1a 41 59 2e 6a c1 0c e8 6d 8c 48 5e|.l2..AY.j...m.H^| * |until 0xcaf1.5 (505) | | | | | [6]{}: partition 0xcaf1.6-0xccec.1 (506.3) | | | count: 128 0x0caf0| fb ce | .. | rice_parameter: 30 0xcaf1.6-0xcaf2.3 (0.5) -0x0caf0| ce 8a d9 4e fa 4b 21 28 30 e3 d3 3a b0 0a| ...N.K!(0..:..| samples: raw bits 0xcaf2.3-0xccec.1 (505.6) +0x0caf0| ce 8a d9 4e fa 4b 21 28 30 e3 d3 3a b0 0a| ...N.K!(0..:..| residuals: raw bits 0xcaf2.3-0xccec.1 (505.6) 0x0cb00|bb b1 94 e3 c4 f2 0a 48 4b a9 e9 1f 30 07 48 ea|.......HK...0.H.| * |until 0xccec (506) | | | | | [7]{}: partition 0xccec.1-0xcee6.5 (506.4) | | | count: 128 0x0cce0| f8 | . | rice_parameter: 30 0xccec.1-0xccec.6 (0.5) -0x0cce0| f8 84 74 a5| ..t.| samples: raw bits 0xccec.6-0xcee6.5 (505.7) +0x0cce0| f8 84 74 a5| ..t.| residuals: raw bits 0xccec.6-0xcee6.5 (505.7) 0x0ccf0|f8 de de c8 ab a6 1d 94 fe 49 dd 47 fa 9c 00 42|.........I.G...B| * |until 0xcee6.4 (506) | | | | | [8]{}: partition 0xcee6.5-0xd0e1.1 (506.4) | | | count: 128 0x0cee0| 47 93 | G. | rice_parameter: 30 0xcee6.5-0xcee7.2 (0.5) -0x0cee0| 93 b0 d6 91 1e c0 66 36 66| ......f6f| samples: raw bits 0xcee7.2-0xd0e1.1 (505.7) +0x0cee0| 93 b0 d6 91 1e c0 66 36 66| ......f6f| residuals: raw bits 0xcee7.2-0xd0e1.1 (505.7) 0x0cef0|58 67 f2 21 d7 26 33 e7 bb 63 88 5e 91 8b 35 d4|Xg.!.&3..c.^..5.| * |until 0xd0e1 (506) | | | | | [9]{}: partition 0xd0e1.1-0xd2dc (506.7) | | | count: 128 0x0d0e0| fa | . | rice_parameter: 30 0xd0e1.1-0xd0e1.6 (0.5) -0x0d0e0| fa bf e7 c5 bd 8b 9c 2f 76 3d 9b b2 29 87 4a| ......./v=..).J| samples: raw bits 0xd0e1.6-0xd2dc (506.2) +0x0d0e0| fa bf e7 c5 bd 8b 9c 2f 76 3d 9b b2 29 87 4a| ......./v=..).J| residuals: raw bits 0xd0e1.6-0xd2dc (506.2) 0x0d0f0|13 fc dc 4d d1 2c 29 65 99 5e f2 16 ff 5e 48 c9|...M.,)e.^...^H.| * |until 0xd2db.7 (507) | | | | | [10]{}: partition 0xd2dc-0xd4d6.6 (506.6) | | | count: 128 0x0d2d0| f3 | . | rice_parameter: 30 0xd2dc-0xd2dc.5 (0.5) -0x0d2d0| f3 38 c1 fb| .8..| samples: raw bits 0xd2dc.5-0xd4d6.6 (506.1) +0x0d2d0| f3 38 c1 fb| .8..| residuals: raw bits 0xd2dc.5-0xd4d6.6 (506.1) 0x0d2e0|a7 02 72 01 0d 26 1e 8b 4e cb 55 72 0c 8a 4c 5f|..r..&..N.Ur..L_| * |until 0xd4d6.5 (507) | | | | | [11]{}: partition 0xd4d6.6-0xd6d0.2 (505.4) | | | count: 128 0x0d4d0| 6b da | k. | rice_parameter: 30 0xd4d6.6-0xd4d7.3 (0.5) -0x0d4d0| da 82 c6 c6 ff 62 f0 5e d7| .....b.^.| samples: raw bits 0xd4d7.3-0xd6d0.2 (504.7) +0x0d4d0| da 82 c6 c6 ff 62 f0 5e d7| .....b.^.| residuals: raw bits 0xd4d7.3-0xd6d0.2 (504.7) 0x0d4e0|d1 dd 07 50 48 b6 01 7a 20 a7 52 c9 71 4d a9 cc|...PH..z .R.qM..| * |until 0xd6d0.1 (505) | | | | | [12]{}: partition 0xd6d0.2-0xd8cb (506.6) | | | count: 128 0x0d6d0|3d |= | rice_parameter: 30 0xd6d0.2-0xd6d0.7 (0.5) -0x0d6d0|3d bb db 82 ed 31 cc 89 9d b6 e4 8f 42 4f e6 39|=....1......BO.9| samples: raw bits 0xd6d0.7-0xd8cb (506.1) +0x0d6d0|3d bb db 82 ed 31 cc 89 9d b6 e4 8f 42 4f e6 39|=....1......BO.9| residuals: raw bits 0xd6d0.7-0xd8cb (506.1) 0x0d6e0|ec fc 40 b9 36 7e 48 6d e6 a6 41 8c 4b 58 ef 90|..@.6~Hm..A.KX..| * |until 0xd8ca.7 (507) | | | | | [13]{}: partition 0xd8cb-0xdac4.6 (505.6) | | | count: 128 0x0d8c0| f4 | . | rice_parameter: 30 0xd8cb-0xd8cb.5 (0.5) -0x0d8c0| f4 13 ed 7e 19| ...~.| samples: raw bits 0xd8cb.5-0xdac4.6 (505.1) +0x0d8c0| f4 13 ed 7e 19| ...~.| residuals: raw bits 0xd8cb.5-0xdac4.6 (505.1) 0x0d8d0|a1 0e 4d c4 87 6d 4e b2 2e 49 db 62 15 39 80 32|..M..mN..I.b.9.2| * |until 0xdac4.5 (506) | | | | | [14]{}: partition 0xdac4.6-0xdcbe.4 (505.6) | | | count: 128 0x0dac0| 17 cb | .. | rice_parameter: 30 0xdac4.6-0xdac5.3 (0.5) -0x0dac0| cb 13 61 c2 c4 cd 85 d5 ed 34 d5| ..a......4.| samples: raw bits 0xdac5.3-0xdcbe.4 (505.1) +0x0dac0| cb 13 61 c2 c4 cd 85 d5 ed 34 d5| ..a......4.| residuals: raw bits 0xdac5.3-0xdcbe.4 (505.1) 0x0dad0|2d 11 7c 57 aa e7 69 6f d6 a0 cc 73 d1 e2 74 5c|-.|W..io...s..t\| * |until 0xdcbe.3 (506) | | | | | [15]{}: partition 0xdcbe.4-0xdeb9.1 (506.5) | | | count: 128 0x0dcb0| 8f 7d| .}| rice_parameter: 30 0xdcbe.4-0xdcbf.1 (0.5) -0x0dcb0| 7d| }| samples: raw bits 0xdcbf.1-0xdeb9.1 (506) +0x0dcb0| 7d| }| residuals: raw bits 0xdcbf.1-0xdeb9.1 (506) 0x0dcc0|d5 2c d3 dc fa 45 7c 87 89 60 67 94 80 8f 15 ba|.,...E|..`g.....| * |until 0xdeb9 (506) | | | | | [16]{}: partition 0xdeb9.1-0xe0b3.5 (506.4) | | | count: 128 0x0deb0| 79 | y | rice_parameter: 30 0xdeb9.1-0xdeb9.6 (0.5) -0x0deb0| 79 82 05 54 df c2 c3| y..T...| samples: raw bits 0xdeb9.6-0xe0b3.5 (505.7) +0x0deb0| 79 82 05 54 df c2 c3| y..T...| residuals: raw bits 0xdeb9.6-0xe0b3.5 (505.7) 0x0dec0|3b 7a 75 43 82 57 4d ca d5 0c 83 19 17 5d 38 fe|;zuC.WM......]8.| * |until 0xe0b3.4 (506) | | | | | [17]{}: partition 0xe0b3.5-0xe2ae.1 (506.4) | | | count: 128 0x0e0b0| 87 89 | .. | rice_parameter: 30 0xe0b3.5-0xe0b4.2 (0.5) -0x0e0b0| 89 fa 9e f3 6b 10 97 69 f4 09 72 6f| ....k..i..ro| samples: raw bits 0xe0b4.2-0xe2ae.1 (505.7) +0x0e0b0| 89 fa 9e f3 6b 10 97 69 f4 09 72 6f| ....k..i..ro| residuals: raw bits 0xe0b4.2-0xe2ae.1 (505.7) 0x0e0c0|b7 8e 98 6d ed 0e 05 f9 d1 2d 32 17 cc 40 35 01|...m.....-2..@5.| * |until 0xe2ae (506) | | | | | [18]{}: partition 0xe2ae.1-0xe4a8.6 (506.5) | | | count: 128 0x0e2a0| fb | . | rice_parameter: 30 0xe2ae.1-0xe2ae.6 (0.5) -0x0e2a0| fb 46| .F| samples: raw bits 0xe2ae.6-0xe4a8.6 (506) +0x0e2a0| fb 46| .F| residuals: raw bits 0xe2ae.6-0xe4a8.6 (506) 0x0e2b0|b4 16 02 a0 5d 53 e3 3e 6e 82 4b 22 40 37 f4 c9|....]S.>n.K"@7..| * |until 0xe4a8.5 (506) | | | | | [19]{}: partition 0xe4a8.6-0xe6a2.7 (506.1) | | | count: 128 0x0e4a0| 8f d7 | .. | rice_parameter: 30 0xe4a8.6-0xe4a9.3 (0.5) -0x0e4a0| d7 0c ac 6e 1f 08 6f| ...n..o| samples: raw bits 0xe4a9.3-0xe6a2.7 (505.4) +0x0e4a0| d7 0c ac 6e 1f 08 6f| ...n..o| residuals: raw bits 0xe4a9.3-0xe6a2.7 (505.4) 0x0e4b0|5d bd 6c 84 c5 21 d2 67 de 5f 16 ef d7 6a b8 2b|].l..!.g._...j.+| * |until 0xe6a2.6 (506) | | | | | [20]{}: partition 0xe6a2.7-0xe89e.4 (507.5) | | | count: 128 0x0e6a0| 85 e8 | .. | rice_parameter: 30 0xe6a2.7-0xe6a3.4 (0.5) -0x0e6a0| e8 46 33 41 0d 2b bd 4b c9 f3 ef 01 a8| .F3A.+.K.....| samples: raw bits 0xe6a3.4-0xe89e.4 (507) +0x0e6a0| e8 46 33 41 0d 2b bd 4b c9 f3 ef 01 a8| .F3A.+.K.....| residuals: raw bits 0xe6a3.4-0xe89e.4 (507) 0x0e6b0|ad e3 1e 71 a9 2a 09 5c ea 2c 23 94 93 78 88 89|...q.*.\.,#..x..| * |until 0xe89e.3 (507) | | | | | [21]{}: partition 0xe89e.4-0xea9a (507.4) | | | count: 128 0x0e890| df 5d| .]| rice_parameter: 30 0xe89e.4-0xe89f.1 (0.5) -0x0e890| 5d| ]| samples: raw bits 0xe89f.1-0xea9a (506.7) +0x0e890| 5d| ]| residuals: raw bits 0xe89f.1-0xea9a (506.7) 0x0e8a0|fd b5 fd 53 d0 51 da 26 a8 46 61 23 18 5b 4b a4|...S.Q.&.Fa#.[K.| * |until 0xea99.7 (507) | | | | | [22]{}: partition 0xea9a-0xec95.6 (507.6) | | | count: 128 0x0ea90| f2 | . | rice_parameter: 30 0xea9a-0xea9a.5 (0.5) -0x0ea90| f2 0f 85 4d ba bb| ...M..| samples: raw bits 0xea9a.5-0xec95.6 (507.1) +0x0ea90| f2 0f 85 4d ba bb| ...M..| residuals: raw bits 0xea9a.5-0xec95.6 (507.1) 0x0eaa0|70 4a a4 dc 1e 82 57 2d a1 70 b2 2a f2 11 4b 82|pJ....W-.p.*..K.| * |until 0xec95.5 (508) | | | | | [23]{}: partition 0xec95.6-0xee8e.6 (505) | | | count: 128 0x0ec90| 0f d1 | .. | rice_parameter: 30 0xec95.6-0xec96.3 (0.5) -0x0ec90| d1 25 85 93 19 a4 1d 5e 26 a3| .%.....^&.| samples: raw bits 0xec96.3-0xee8e.6 (504.3) +0x0ec90| d1 25 85 93 19 a4 1d 5e 26 a3| .%.....^&.| residuals: raw bits 0xec96.3-0xee8e.6 (504.3) 0x0eca0|42 8d f0 57 48 4a a0 d0 5f 2b 54 50 3b 6d fb 46|B..WHJ.._+TP;m.F| * |until 0xee8e.5 (505) | | | | | [24]{}: partition 0xee8e.6-0xf089.2 (506.4) | | | count: 128 0x0ee80| 57 d8| W.| rice_parameter: 30 0xee8e.6-0xee8f.3 (0.5) -0x0ee80| d8| .| samples: raw bits 0xee8f.3-0xf089.2 (505.7) +0x0ee80| d8| .| residuals: raw bits 0xee8f.3-0xf089.2 (505.7) 0x0ee90|b6 d5 58 9c 1d 1c 9c 1a ff 2d 9b 33 b6 29 95 fa|..X......-.3.)..| * |until 0xf089.1 (506) | | | | | [25]{}: partition 0xf089.2-0xf283 (505.6) | | | count: 128 0x0f080| 7b | { | rice_parameter: 29 0xf089.2-0xf089.7 (0.5) -0x0f080| 7b 3c ab 5b a1 26 77| {<.[.&w| samples: raw bits 0xf089.7-0xf283 (505.1) +0x0f080| 7b 3c ab 5b a1 26 77| {<.[.&w| residuals: raw bits 0xf089.7-0xf283 (505.1) 0x0f090|ea 98 e3 59 f1 ac b7 95 0e 2c f2 8f f6 51 b6 81|...Y.....,...Q..| * |until 0xf282.7 (506) | | | | | [26]{}: partition 0xf283-0xf47d.3 (506.3) | | | count: 128 0x0f280| f2 | . | rice_parameter: 30 0xf283-0xf283.5 (0.5) -0x0f280| f2 68 ad 0c cb 1c 33 ef 02 51 80 4a 8c| .h....3..Q.J.| samples: raw bits 0xf283.5-0xf47d.3 (505.6) +0x0f280| f2 68 ad 0c cb 1c 33 ef 02 51 80 4a 8c| .h....3..Q.J.| residuals: raw bits 0xf283.5-0xf47d.3 (505.6) 0x0f290|cf 53 14 d2 79 d1 62 be 52 ab f3 8d a9 a8 38 89|.S..y.b.R.....8.| * |until 0xf47d.2 (506) | | | | | [27]{}: partition 0xf47d.3-0xf679 (507.5) | | | count: 128 0x0f470| fe | . | rice_parameter: 30 0xf47d.3-0xf47e (0.5) -0x0f470| 52 7b| R{| samples: raw bits 0xf47e-0xf679 (507) +0x0f470| 52 7b| R{| residuals: raw bits 0xf47e-0xf679 (507) 0x0f480|c2 b8 bd 9f 4e 2f e4 7c 70 ab 2d a7 06 73 95 20|....N/.|p.-..s. | * |until 0xf678.7 (507) | | | | | [28]{}: partition 0xf679-0xf874.3 (507.3) | | | count: 128 0x0f670| f2 | . | rice_parameter: 30 0xf679-0xf679.5 (0.5) -0x0f670| f2 8b bf e9 2c 63 05| ....,c.| samples: raw bits 0xf679.5-0xf874.3 (506.6) +0x0f670| f2 8b bf e9 2c 63 05| ....,c.| residuals: raw bits 0xf679.5-0xf874.3 (506.6) 0x0f680|54 57 21 2c eb 2b a7 a0 eb d1 d9 bb 38 af 47 80|TW!,.+......8.G.| * |until 0xf874.2 (507) | | | | | [29]{}: partition 0xf874.3-0xfa6e.6 (506.3) | | | count: 128 0x0f870| be | . | rice_parameter: 30 0xf874.3-0xf875 (0.5) -0x0f870| a2 43 9d bd 68 da 86 86 37 bf 5a| .C..h...7.Z| samples: raw bits 0xf875-0xfa6e.6 (505.6) +0x0f870| a2 43 9d bd 68 da 86 86 37 bf 5a| .C..h...7.Z| residuals: raw bits 0xf875-0xfa6e.6 (505.6) 0x0f880|c3 05 ff f4 8a 23 e7 4a de 9c 34 62 07 88 46 9d|.....#.J..4b..F.| * |until 0xfa6e.5 (506) | | | | | [30]{}: partition 0xfa6e.6-0xfc69.6 (507) | | | count: 128 0x0fa60| 23 c4| #.| rice_parameter: 30 0xfa6e.6-0xfa6f.3 (0.5) -0x0fa60| c4| .| samples: raw bits 0xfa6f.3-0xfc69.6 (506.3) +0x0fa60| c4| .| residuals: raw bits 0xfa6f.3-0xfc69.6 (506.3) 0x0fa70|8c df ac b5 63 96 f3 da 9b 0a ba 79 cd af c1 6c|....c......y...l| * |until 0xfc69.5 (507) | | | | | [31]{}: partition 0xfc69.6-0xfe64 (506.2) | | | count: 128 0x0fc60| 9f d5 | .. | rice_parameter: 30 0xfc69.6-0xfc6a.3 (0.5) -0x0fc60| d5 b4 36 94 56 56| ..6.VV| samples: raw bits 0xfc6a.3-0xfe64 (505.5) +0x0fc60| d5 b4 36 94 56 56| ..6.VV| residuals: raw bits 0xfc6a.3-0xfe64 (505.5) 0x0fc70|9c 00 2a 23 29 e6 c7 e1 44 2a 6f a9 92 b0 92 06|..*#)...D*o.....| * |until 0xfe63.7 (506) | | | | | byte_align: 0 (valid) 0xfe64-0xfe64 (0) @@ -974,50 +974,50 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0xfe98-0x10667.1 (1999.1) | | | count: 505 0x0fe90| f2 | . | rice_parameter: 30 0xfe98-0xfe98.5 (0.5) -0x0fe90| f2 a9 7a 74 59 11 a3 50| ..ztY..P| samples: raw bits 0xfe98.5-0x10667.1 (1998.4) +0x0fe90| f2 a9 7a 74 59 11 a3 50| ..ztY..P| residuals: raw bits 0xfe98.5-0x10667.1 (1998.4) 0x0fea0|11 4d c7 12 ff 4e 50 3a 7a ee c4 74 d9 73 e4 cb|.M...NP:z..t.s..| * |until 0x10667 (1999) | | | | | [1]{}: partition 0x10667.1-0x10e3f.5 (2008.4) | | | count: 512 0x10660| 74 | t | rice_parameter: 29 0x10667.1-0x10667.6 (0.5) -0x10660| 74 e5 20 7a 69 c3 b9 ee 18| t. zi....| samples: raw bits 0x10667.6-0x10e3f.5 (2007.7) +0x10660| 74 e5 20 7a 69 c3 b9 ee 18| t. zi....| residuals: raw bits 0x10667.6-0x10e3f.5 (2007.7) 0x10670|a4 20 38 cd 2c f3 5b 50 f9 82 ba db 5c 94 05 e0|. 8.,.[P....\...| * |until 0x10e3f.4 (2008) | | | | | [2]{}: partition 0x10e3f.5-0x11536.6 (1783.1) | | | count: 512 0x10e30| b6| .| rice_parameter: 26 0x10e3f.5-0x10e40.2 (0.5) 0x10e40|9a |. | -0x10e40|9a 08 73 81 c1 5f 85 1e 1c 50 78 85 35 ad 4f 67|..s.._...Px.5.Og| samples: raw bits 0x10e40.2-0x11536.6 (1782.4) +0x10e40|9a 08 73 81 c1 5f 85 1e 1c 50 78 85 35 ad 4f 67|..s.._...Px.5.Og| residuals: raw bits 0x10e40.2-0x11536.6 (1782.4) 0x10e50|34 a8 fd c5 ef 85 0b c5 54 70 e2 f0 a2 1c 2e 57|4.......Tp.....W| * |until 0x11536.5 (1783) | | | | | [3]{}: partition 0x11536.6-0x11c2d.5 (1782.7) | | | count: 512 0x11530| 6b 4a | kJ | rice_parameter: 26 0x11536.6-0x11537.3 (0.5) -0x11530| 4a fe 67 70 de 3d b8 4f 2d| J.gp.=.O-| samples: raw bits 0x11537.3-0x11c2d.5 (1782.2) +0x11530| 4a fe 67 70 de 3d b8 4f 2d| J.gp.=.O-| residuals: raw bits 0x11537.3-0x11c2d.5 (1782.2) 0x11540|4a 38 fa 42 b2 44 46 11 32 76 43 b8 a6 ff 4a 84|J8.B.DF.2vC...J.| * |until 0x11c2d.4 (1783) | | | | | [4]{}: partition 0x11c2d.5-0x12325 (1783.3) | | | count: 512 0x11c20| f6 92 | .. | rice_parameter: 26 0x11c2d.5-0x11c2e.2 (0.5) -0x11c20| 92 a0| ..| samples: raw bits 0x11c2e.2-0x12325 (1782.6) +0x11c20| 92 a0| ..| residuals: raw bits 0x11c2e.2-0x12325 (1782.6) 0x11c30|13 c1 95 e4 62 99 8d 13 21 61 45 0f 19 57 04 d9|....b...!aE..W..| * |until 0x12324.7 (1783) | | | | | [5]{}: partition 0x12325-0x12a1c (1783) | | | count: 512 0x12320| d6 | . | rice_parameter: 26 0x12325-0x12325.5 (0.5) -0x12320| d6 cc 00 c6 f1 3a 7a 49 cc 48 04| .....:zI.H.| samples: raw bits 0x12325.5-0x12a1c (1782.3) +0x12320| d6 cc 00 c6 f1 3a 7a 49 cc 48 04| .....:zI.H.| residuals: raw bits 0x12325.5-0x12a1c (1782.3) 0x12330|9d 08 eb 8b 1e 3d 34 af e6 77 0d e3 db 84 f2 d4|.....=4..w......| * |until 0x12a1b.7 (1783) | | | | | [6]{}: partition 0x12a1c-0x13113.5 (1783.5) | | | count: 512 0x12a10| d5 | . | rice_parameter: 26 0x12a1c-0x12a1c.5 (0.5) -0x12a10| d5 96 67 36| ..g6| samples: raw bits 0x12a1c.5-0x13113.5 (1783) +0x12a10| d5 96 67 36| ..g6| residuals: raw bits 0x12a1c.5-0x13113.5 (1783) 0x12a20|d8 03 af 9a 12 54 91 09 b1 ae 13 23 a5 f9 2a 01|.....T.....#..*.| * |until 0x13113.4 (1783) | | | | | [7]{}: partition 0x13113.5-0x1380a.5 (1783) | | | count: 512 0x13110| 0e a0 | .. | rice_parameter: 26 0x13113.5-0x13114.2 (0.5) -0x13110| a0 29 8d b4 49 c4 6e bc b2 48 98 b4| .)..I.n..H..| samples: raw bits 0x13114.2-0x1380a.5 (1782.3) +0x13110| a0 29 8d b4 49 c4 6e bc b2 48 98 b4| .)..I.n..H..| residuals: raw bits 0x13114.2-0x1380a.5 (1782.3) 0x13120|ae 33 56 76 3d 6c c0 0c 6f 13 a7 a4 9c c4 80 49|.3Vv=l..o......I| * |until 0x1380a.4 (1783) | | | | | [1]{}: subframe 0x1380a.5-0x170de.3 (14547.6) @@ -1054,193 +1054,193 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x13836.5-0x13a15.7 (479.2) | | | count: 121 0x13830| af b9 | .. | rice_parameter: 30 0x13836.5-0x13837.2 (0.5) -0x13830| b9 10 c0 32 45 0a 21 0b 6e| ...2E.!.n| samples: raw bits 0x13837.2-0x13a15.7 (478.5) +0x13830| b9 10 c0 32 45 0a 21 0b 6e| ...2E.!.n| residuals: raw bits 0x13837.2-0x13a15.7 (478.5) 0x13840|72 2a e6 54 7c 26 f7 93 3f ad 1a b5 2b 62 39 5c|r*.T|&..?...+b9\| * |until 0x13a15.6 (479) | | | | | [1]{}: partition 0x13a15.7-0x13c11.3 (507.4) | | | count: 128 0x13a10| 77 eb | w. | rice_parameter: 30 0x13a15.7-0x13a16.4 (0.5) -0x13a10| eb 49 3b 7a 37 79 d6 fc cb 5b| .I;z7y...[| samples: raw bits 0x13a16.4-0x13c11.3 (506.7) +0x13a10| eb 49 3b 7a 37 79 d6 fc cb 5b| .I;z7y...[| residuals: raw bits 0x13a16.4-0x13c11.3 (506.7) 0x13a20|f9 f8 36 c2 45 a9 5c 10 f9 09 30 84 a8 18 69 b6|..6.E.\...0...i.| * |until 0x13c11.2 (507) | | | | | [2]{}: partition 0x13c11.3-0x13e0c.2 (506.7) | | | count: 128 0x13c10| 5e | ^ | rice_parameter: 30 0x13c11.3-0x13c12 (0.5) -0x13c10| e8 a6 69 b8 5a 1a 9c b4 c8 bf 70 99 17 48| ..i.Z.....p..H| samples: raw bits 0x13c12-0x13e0c.2 (506.2) +0x13c10| e8 a6 69 b8 5a 1a 9c b4 c8 bf 70 99 17 48| ..i.Z.....p..H| residuals: raw bits 0x13c12-0x13e0c.2 (506.2) 0x13c20|ca 46 24 a2 53 61 95 bb bb 45 25 9c c5 18 b5 68|.F$.Sa...E%....h| * |until 0x13e0c.1 (507) | | | | | [3]{}: partition 0x13e0c.2-0x14005.4 (505.2) | | | count: 128 0x13e00| 3d | = | rice_parameter: 30 0x13e0c.2-0x13e0c.7 (0.5) -0x13e00| 3d c2 c3 4f| =..O| samples: raw bits 0x13e0c.7-0x14005.4 (504.5) +0x13e00| 3d c2 c3 4f| =..O| residuals: raw bits 0x13e0c.7-0x14005.4 (504.5) 0x13e10|85 db ae 9b 52 47 01 ce ca 92 1e ab 3e f8 eb 00|....RG......>...| * |until 0x14005.3 (505) | | | | | [4]{}: partition 0x14005.4-0x14201.7 (508.3) | | | count: 128 0x14000| 2f 77 | /w | rice_parameter: 30 0x14005.4-0x14006.1 (0.5) -0x14000| 77 b2 b4 91 43 6a a3 a5 90 2d| w...Cj...-| samples: raw bits 0x14006.1-0x14201.7 (507.6) +0x14000| 77 b2 b4 91 43 6a a3 a5 90 2d| w...Cj...-| residuals: raw bits 0x14006.1-0x14201.7 (507.6) 0x14010|c1 bd a0 3f 7f 35 11 fd 46 d7 4e 16 a8 ec 32 4e|...?.5..F.N...2N| * |until 0x14201.6 (508) | | | | | [5]{}: partition 0x14201.7-0x143fb.3 (505.4) | | | count: 128 0x14200| db ee | .. | rice_parameter: 30 0x14201.7-0x14202.4 (0.5) -0x14200| ee 65 d8 07 90 46 ee 71 b0 fd 97 bd b2 60| .e...F.q.....`| samples: raw bits 0x14202.4-0x143fb.3 (504.7) +0x14200| ee 65 d8 07 90 46 ee 71 b0 fd 97 bd b2 60| .e...F.q.....`| residuals: raw bits 0x14202.4-0x143fb.3 (504.7) 0x14210|15 f4 bb 65 4b 96 f0 0f 49 89 4f ef e1 f7 e1 b4|...eK...I.O.....| * |until 0x143fb.2 (505) | | | | | [6]{}: partition 0x143fb.3-0x145f5.1 (505.6) | | | count: 128 0x143f0| 9e | . | rice_parameter: 30 0x143fb.3-0x143fc (0.5) -0x143f0| 6d d8 8e 99| m...| samples: raw bits 0x143fc-0x145f5.1 (505.1) +0x143f0| 6d d8 8e 99| m...| residuals: raw bits 0x143fc-0x145f5.1 (505.1) 0x14400|9e de fb 09 eb 9e 01 c1 19 7a 0b 00 82 bb 6a 93|.........z....j.| * |until 0x145f5 (506) | | | | | [7]{}: partition 0x145f5.1-0x147db.2 (486.1) | | | count: 128 0x145f0| 70 | p | rice_parameter: 28 0x145f5.1-0x145f5.6 (0.5) -0x145f0| 70 44 df 69 0e af 9c 5b 32 c8 06| pD.i...[2..| samples: raw bits 0x145f5.6-0x147db.2 (485.4) +0x145f0| 70 44 df 69 0e af 9c 5b 32 c8 06| pD.i...[2..| residuals: raw bits 0x145f5.6-0x147db.2 (485.4) 0x14600|1f 02 a2 56 a6 00 6a 0d 28 dc 0c ce 77 7c 09 d5|...V..j.(...w|..| * |until 0x147db.1 (486) | | | | | [8]{}: partition 0x147db.2-0x14999.2 (446) | | | count: 128 0x147d0| b5 | . | rice_parameter: 26 0x147db.2-0x147db.7 (0.5) -0x147d0| b5 d1 b9 b7 b0| .....| samples: raw bits 0x147db.7-0x14999.2 (445.3) +0x147d0| b5 d1 b9 b7 b0| .....| residuals: raw bits 0x147db.7-0x14999.2 (445.3) 0x147e0|c8 cb c2 47 b0 0e 76 28 22 ef fb 00 65 d0 37 f5|...G..v("...e.7.| * |until 0x14999.1 (446) | | | | | [9]{}: partition 0x14999.2-0x14b57.6 (446.4) | | | count: 128 0x14990| b4 | . | rice_parameter: 26 0x14999.2-0x14999.7 (0.5) -0x14990| b4 b9 62 4a 8b 9a a4| ..bJ...| samples: raw bits 0x14999.7-0x14b57.6 (445.7) +0x14990| b4 b9 62 4a 8b 9a a4| ..bJ...| residuals: raw bits 0x14999.7-0x14b57.6 (445.7) 0x149a0|cc b9 29 0c cb a0 53 68 b8 a0 79 8b ad 0b 18 b7|..)...Sh..y.....| * |until 0x14b57.5 (446) | | | | | [10]{}: partition 0x14b57.6-0x14cfb.2 (419.4) | | | count: 128 0x14b50| db 03 | .. | rice_parameter: 24 0x14b57.6-0x14b58.3 (0.5) -0x14b50| 03 94 10 0c 3e 4b 71 43| ....>KqC| samples: raw bits 0x14b58.3-0x14cfb.2 (418.7) +0x14b50| 03 94 10 0c 3e 4b 71 43| ....>KqC| residuals: raw bits 0x14b58.3-0x14cfb.2 (418.7) 0x14b60|93 2a c8 11 67 66 a1 7a 46 8e 17 dc f9 61 96 f2|.*..gf.zF....a..| * |until 0x14cfb.1 (419) | | | | | [11]{}: partition 0x14cfb.2-0x14eb5 (441.6) | | | count: 128 0x14cf0| 75 | u | rice_parameter: 26 0x14cfb.2-0x14cfb.7 (0.5) -0x14cf0| 75 71 bc 4b 64| uq.Kd| samples: raw bits 0x14cfb.7-0x14eb5 (441.1) +0x14cf0| 75 71 bc 4b 64| uq.Kd| residuals: raw bits 0x14cfb.7-0x14eb5 (441.1) 0x14d00|5d 4b 2f 06 c8 0b ba f0 2b 7a 61 39 9e d4 07 d3|]K/.....+za9....| * |until 0x14eb4.7 (442) | | | | | [12]{}: partition 0x14eb5-0x15075.5 (448.5) | | | count: 128 0x14eb0| d3 | . | rice_parameter: 26 0x14eb5-0x14eb5.5 (0.5) -0x14eb0| d3 16 8d df b6 0b 3e 1a e4 66 82| ......>..f.| samples: raw bits 0x14eb5.5-0x15075.5 (448) +0x14eb0| d3 16 8d df b6 0b 3e 1a e4 66 82| ......>..f.| residuals: raw bits 0x14eb5.5-0x15075.5 (448) 0x14ec0|b5 6d 71 7a cd 98 35 ab 95 4d 2a b6 13 7c af d7|.mqz..5..M*..|..| * |until 0x15075.4 (448) | | | | | [13]{}: partition 0x15075.5-0x1522d.7 (440.2) | | | count: 128 0x15070| fe 4e | .N | rice_parameter: 25 0x15075.5-0x15076.2 (0.5) -0x15070| 4e d5 37 5c d9 e4 87 cd c8 c1| N.7\......| samples: raw bits 0x15076.2-0x1522d.7 (439.5) +0x15070| 4e d5 37 5c d9 e4 87 cd c8 c1| N.7\......| residuals: raw bits 0x15076.2-0x1522d.7 (439.5) 0x15080|9c fb e9 20 44 8b 16 b6 7f 1f 42 62 36 2b 83 3f|... D.....Bb6+.?| * |until 0x1522d.6 (440) | | | | | [14]{}: partition 0x1522d.7-0x153d2.7 (421) | | | count: 128 0x15220| d3 85 | .. | rice_parameter: 24 0x1522d.7-0x1522e.4 (0.5) -0x15220| 85 84| ..| samples: raw bits 0x1522e.4-0x153d2.7 (420.3) +0x15220| 85 84| ..| residuals: raw bits 0x1522e.4-0x153d2.7 (420.3) 0x15230|46 7d 6b e2 bf 5f d4 11 d7 b3 73 56 d2 f7 44 84|F}k.._....sV..D.| * |until 0x153d2.6 (421) | | | | | [15]{}: partition 0x153d2.7-0x15592.1 (447.2) | | | count: 128 0x153d0| b1 af | .. | rice_parameter: 26 0x153d2.7-0x153d3.4 (0.5) -0x153d0| af 85 6d f8 8f fb c1 de a3 d4 31 11 c6| ..m.......1..| samples: raw bits 0x153d3.4-0x15592.1 (446.5) +0x153d0| af 85 6d f8 8f fb c1 de a3 d4 31 11 c6| ..m.......1..| residuals: raw bits 0x153d3.4-0x15592.1 (446.5) 0x153e0|90 12 37 09 29 0d 41 7c 11 8b c6 0b ca 09 15 75|..7.).A|.......u| * |until 0x15592 (447) | | | | | [16]{}: partition 0x15592.1-0x1574f (444.7) | | | count: 128 0x15590| 69 | i | rice_parameter: 26 0x15592.1-0x15592.6 (0.5) -0x15590| 69 7e 25 0d 97 50 83 29 77 63 4d 97 51 1d| i~%..P.)wcM.Q.| samples: raw bits 0x15592.6-0x1574f (444.2) +0x15590| 69 7e 25 0d 97 50 83 29 77 63 4d 97 51 1d| i~%..P.)wcM.Q.| residuals: raw bits 0x15592.6-0x1574f (444.2) 0x155a0|a9 80 46 dc 16 d9 b2 61 76 19 8f 97 0f e8 d1 74|..F....av......t| * |until 0x1574e.7 (445) | | | | | [17]{}: partition 0x1574f-0x158f0.4 (417.4) | | | count: 128 0x15740| c0| .| rice_parameter: 24 0x1574f-0x1574f.5 (0.5) -0x15740| c0| .| samples: raw bits 0x1574f.5-0x158f0.4 (416.7) +0x15740| c0| .| residuals: raw bits 0x1574f.5-0x158f0.4 (416.7) 0x15750|80 40 1e 08 46 c8 50 9e d6 61 0a 84 69 00 8c 09|.@..F.P..a..i...| * |until 0x158f0.3 (417) | | | | | [18]{}: partition 0x158f0.4-0x15aac (443.4) | | | count: 128 0x158f0|3d 66 |=f | rice_parameter: 26 0x158f0.4-0x158f1.1 (0.5) -0x158f0| 66 82 b4 fd 35 8b 6b 83 2e 8c f4 bd b2 4e 16| f...5.k......N.| samples: raw bits 0x158f1.1-0x15aac (442.7) +0x158f0| 66 82 b4 fd 35 8b 6b 83 2e 8c f4 bd b2 4e 16| f...5.k......N.| residuals: raw bits 0x158f1.1-0x15aac (442.7) 0x15900|97 8b c4 19 29 a8 85 57 83 b5 56 2d 78 04 3f 4e|....)..W..V-x.?N| * |until 0x15aab.7 (443) | | | | | [19]{}: partition 0x15aac-0x15c6c.4 (448.4) | | | count: 128 0x15aa0| d3 | . | rice_parameter: 26 0x15aac-0x15aac.5 (0.5) -0x15aa0| d3 02 60 8f| ..`.| samples: raw bits 0x15aac.5-0x15c6c.4 (447.7) +0x15aa0| d3 02 60 8f| ..`.| residuals: raw bits 0x15aac.5-0x15c6c.4 (447.7) 0x15ab0|b0 28 2a 6a f1 e3 34 a8 80 6a 8b b5 7e e3 b6 b4|.(*j..4..j..~...| * |until 0x15c6c.3 (448) | | | | | [20]{}: partition 0x15c6c.4-0x15e20.7 (436.3) | | | count: 128 0x15c60| dc 9a | .. | rice_parameter: 25 0x15c6c.4-0x15c6d.1 (0.5) -0x15c60| 9a 52 23| .R#| samples: raw bits 0x15c6d.1-0x15e20.7 (435.6) +0x15c60| 9a 52 23| .R#| residuals: raw bits 0x15c6d.1-0x15e20.7 (435.6) 0x15c70|59 be 27 45 99 97 08 19 ea 58 93 95 11 24 58 8d|Y.'E.....X...$X.| * |until 0x15e20.6 (436) | | | | | [21]{}: partition 0x15e20.7-0x15fca.4 (425.5) | | | count: 128 0x15e20|0b 9f |.. | rice_parameter: 25 0x15e20.7-0x15e21.4 (0.5) -0x15e20| 9f b2 70 56 7b 7c cc be 83 b2 e2 c1 e3 ac 95| ..pV{|.........| samples: raw bits 0x15e21.4-0x15fca.4 (425) +0x15e20| 9f b2 70 56 7b 7c cc be 83 b2 e2 c1 e3 ac 95| ..pV{|.........| residuals: raw bits 0x15e21.4-0x15fca.4 (425) 0x15e30|e8 66 13 61 1f d9 3c 20 f0 f0 40 99 6a 36 b7 c8|.f.a..< ..@.j6..| * |until 0x15fca.3 (425) | | | | | [22]{}: partition 0x15fca.4-0x1618a.4 (448) | | | count: 128 0x15fc0| 8d 7f | .. | rice_parameter: 26 0x15fca.4-0x15fcb.1 (0.5) -0x15fc0| 7f 1f 31 a4 f0| ..1..| samples: raw bits 0x15fcb.1-0x1618a.4 (447.3) +0x15fc0| 7f 1f 31 a4 f0| ..1..| residuals: raw bits 0x15fcb.1-0x1618a.4 (447.3) 0x15fd0|2e 44 f3 27 33 8a 4f 8b 80 84 16 31 5f 46 b9 91|.D.'3.O....1_F..| * |until 0x1618a.3 (448) | | | | | [23]{}: partition 0x1618a.4-0x16345.5 (443.1) | | | count: 128 0x16180| ed 2e | .. | rice_parameter: 26 0x1618a.4-0x1618b.1 (0.5) -0x16180| 2e 60 8f e2 e5| .`...| samples: raw bits 0x1618b.1-0x16345.5 (442.4) +0x16180| 2e 60 8f e2 e5| .`...| residuals: raw bits 0x1618b.1-0x16345.5 (442.4) 0x16190|e3 0e 2e 5f 2d 42 e5 eb 77 2e 5e d7 12 e5 ec ec|..._-B..w.^.....| * |until 0x16345.4 (443) | | | | | [24]{}: partition 0x16345.5-0x164e6.5 (417) | | | count: 128 0x16340| 76 0b | v. | rice_parameter: 24 0x16345.5-0x16346.2 (0.5) -0x16340| 0b 6c 51 60 b4 d1 12 22 e9 4b| .lQ`...".K| samples: raw bits 0x16346.2-0x164e6.5 (416.3) +0x16340| 0b 6c 51 60 b4 d1 12 22 e9 4b| .lQ`...".K| residuals: raw bits 0x16346.2-0x164e6.5 (416.3) 0x16350|c5 26 d4 79 9c 73 e8 2d 5c 39 47 9f 13 e8 c3 ae|.&.y.s.-\9G.....| * |until 0x164e6.4 (417) | | | | | [25]{}: partition 0x164e6.5-0x166a3.6 (445.1) | | | count: 128 0x164e0| 2e b2 | .. | rice_parameter: 26 0x164e6.5-0x164e7.2 (0.5) -0x164e0| b2 30 a4 fa 34 66 a0 eb 85| .0..4f...| samples: raw bits 0x164e7.2-0x166a3.6 (444.4) +0x164e0| b2 30 a4 fa 34 66 a0 eb 85| .0..4f...| residuals: raw bits 0x164e7.2-0x166a3.6 (444.4) 0x164f0|55 34 04 04 a5 f7 66 e8 f9 09 f1 f7 94 cc ac f3|U4....f.........| * |until 0x166a3.5 (445) | | | | | [26]{}: partition 0x166a3.6-0x16864.2 (448.4) | | | count: 128 0x166a0| 47 4b | GK | rice_parameter: 26 0x166a3.6-0x166a4.3 (0.5) -0x166a0| 4b 7e 44 4e c4 ea 2b 6b d5 50 46 c6| K~DN..+k.PF.| samples: raw bits 0x166a4.3-0x16864.2 (447.7) +0x166a0| 4b 7e 44 4e c4 ea 2b 6b d5 50 46 c6| K~DN..+k.PF.| residuals: raw bits 0x166a4.3-0x16864.2 (447.7) 0x166b0|18 90 6b ef d2 fa c9 84 88 6c 38 7e a6 c7 59 b7|..k......l8~..Y.| * |until 0x16864.1 (448) | | | | | [27]{}: partition 0x16864.2-0x16a14.5 (432.3) | | | count: 128 0x16860| f2 | . | rice_parameter: 25 0x16864.2-0x16864.7 (0.5) -0x16860| f2 5d 5c d1 25 34 41 82 5e 20 15 25| .]\.%4A.^ .%| samples: raw bits 0x16864.7-0x16a14.5 (431.6) +0x16860| f2 5d 5c d1 25 34 41 82 5e 20 15 25| .]\.%4A.^ .%| residuals: raw bits 0x16864.7-0x16a14.5 (431.6) 0x16870|83 89 fa 68 6d 94 e5 a9 e3 d6 47 88 b1 e2 46 94|...hm.....G...F.| * |until 0x16a14.4 (432) | | | | | [28]{}: partition 0x16a14.5-0x16bc1.1 (428.4) | | | count: 128 0x16a10| 3e 61 | >a | rice_parameter: 25 0x16a14.5-0x16a15.2 (0.5) -0x16a10| 61 d0 b6 6a ba 04 36 09 9f d3 b1| a..j..6....| samples: raw bits 0x16a15.2-0x16bc1.1 (427.7) +0x16a10| 61 d0 b6 6a ba 04 36 09 9f d3 b1| a..j..6....| residuals: raw bits 0x16a15.2-0x16bc1.1 (427.7) 0x16a20|ae 8a e5 55 33 99 59 6c aa a5 5a a6 8e 63 91 f4|...U3.Yl..Z..c..| * |until 0x16bc1 (428) | | | | | [29]{}: partition 0x16bc1.1-0x16d81.6 (448.5) | | | count: 128 0x16bc0| 69 | i | rice_parameter: 26 0x16bc1.1-0x16bc1.6 (0.5) -0x16bc0| 69 53 94 a6 94 c1 a9 31 41 18 ff 14 85 5d 59| iS.....1A....]Y| samples: raw bits 0x16bc1.6-0x16d81.6 (448) +0x16bc0| 69 53 94 a6 94 c1 a9 31 41 18 ff 14 85 5d 59| iS.....1A....]Y| residuals: raw bits 0x16bc1.6-0x16d81.6 (448) 0x16bd0|04 fc ad 91 a3 16 b9 0d 1f d2 11 a8 19 c1 0b c0|................| * |until 0x16d81.5 (448) | | | | | [30]{}: partition 0x16d81.6-0x16f3b.1 (441.3) | | | count: 128 0x16d80| ab 4b | .K | rice_parameter: 26 0x16d81.6-0x16d82.3 (0.5) -0x16d80| 4b 94 b0 bc b9 d0 d5 cb 8e bc 4c ba 62 3e| K.........L.b>| samples: raw bits 0x16d82.3-0x16f3b.1 (440.6) +0x16d80| 4b 94 b0 bc b9 d0 d5 cb 8e bc 4c ba 62 3e| K.........L.b>| residuals: raw bits 0x16d82.3-0x16f3b.1 (440.6) 0x16d90|8b 81 4b 98 bb 99 5f 4b 65 9d cc be 12 82 cb 2b|..K..._Ke......+| * |until 0x16f3b (441) | | | | | [31]{}: partition 0x16f3b.1-0x170de.3 (419.2) | | | count: 128 0x16f30| 61 | a | rice_parameter: 24 0x16f3b.1-0x16f3b.6 (0.5) -0x16f30| 61 3c 22 b0 21| a<".!| samples: raw bits 0x16f3b.6-0x170de.3 (418.5) +0x16f30| 61 3c 22 b0 21| a<".!| residuals: raw bits 0x16f3b.6-0x170de.3 (418.5) 0x16f40|28 ed 0c 75 40 52 6d 6e e4 68 df af 0b 21 d0 13|(..u@Rmn.h...!..| * |until 0x170de.2 (419) | | 0x170d0| a0 | . | byte_align: 0 (valid) 0x170de.3-0x170df (0.5) @@ -1280,97 +1280,97 @@ $ fq -d flac dv stereo32.flac | | | count: 255 0x170e0| 53| S| rice_parameter: 27 0x170ef.6-0x170f0.3 (0.5) 0x170f0|69 |i | -0x170f0|69 83 73 1d 41 47 c3 de e6 33 ec e8 56 41 fd a6|i.s.AG...3..VA..| samples: raw bits 0x170f0.3-0x17486.7 (918.4) +0x170f0|69 83 73 1d 41 47 c3 de e6 33 ec e8 56 41 fd a6|i.s.AG...3..VA..| residuals: raw bits 0x170f0.3-0x17486.7 (918.4) 0x17100|4d d7 ca 06 cc cc 49 0b 00 cc 85 2b 45 98 77 1d|M.....I....+E.w.| * |until 0x17486.6 (919) | | | | | [1]{}: partition 0x17486.7-0x17823 (924.1) | | | count: 256 0x17480| bd b4 | .. | rice_parameter: 27 0x17486.7-0x17487.4 (0.5) -0x17480| b4 67 f6 27 7d 47 5e c7 44| .g.'}G^.D| samples: raw bits 0x17487.4-0x17823 (923.4) +0x17480| b4 67 f6 27 7d 47 5e c7 44| .g.'}G^.D| residuals: raw bits 0x17487.4-0x17823 (923.4) 0x17490|cb 42 6a 8c 5f d6 22 51 8d 57 ae 1c 55 05 74 d8|.Bj._."Q.W..U.t.| * |until 0x17822.7 (924) | | | | | [2]{}: partition 0x17823-0x17bbd.6 (922.6) | | | count: 256 0x17820| db | . | rice_parameter: 27 0x17823-0x17823.5 (0.5) -0x17820| db 55 c1 e1 d8 e4 5f c6 aa bf 11 14 59| .U...._.....Y| samples: raw bits 0x17823.5-0x17bbd.6 (922.1) +0x17820| db 55 c1 e1 d8 e4 5f c6 aa bf 11 14 59| .U...._.....Y| residuals: raw bits 0x17823.5-0x17bbd.6 (922.1) 0x17830|e6 db fe ff a4 6f 42 2d 03 ec d7 9f 9d a7 4c 89|.....oB-......L.| * |until 0x17bbd.5 (923) | | | | | [3]{}: partition 0x17bbd.6-0x17f59.5 (923.7) | | | count: 256 0x17bb0| c3 6b | .k | rice_parameter: 27 0x17bbd.6-0x17bbe.3 (0.5) -0x17bb0| 6b d4| k.| samples: raw bits 0x17bbe.3-0x17f59.5 (923.2) +0x17bb0| 6b d4| k.| residuals: raw bits 0x17bbe.3-0x17f59.5 (923.2) 0x17bc0|18 20 54 17 78 82 a1 d8 f2 92 c2 cc e5 fd 6f 8f|. T.x.........o.| * |until 0x17f59.4 (924) | | | | | [4]{}: partition 0x17f59.5-0x1830a.7 (945.2) | | | count: 256 0x17f50| 0f 3e | .> | rice_parameter: 28 0x17f59.5-0x17f5a.2 (0.5) -0x17f50| 3e e4 2c e7 e0 ca| >.,...| samples: raw bits 0x17f5a.2-0x1830a.7 (944.5) +0x17f50| 3e e4 2c e7 e0 ca| >.,...| residuals: raw bits 0x17f5a.2-0x1830a.7 (944.5) 0x17f60|64 5e 80 2b 70 ef 1b 45 6f 55 c3 de 79 78 40 59|d^.+p..EoU..yx@Y| * |until 0x1830a.6 (945) | | | | | [5]{}: partition 0x1830a.7-0x18701.7 (1015) | | | count: 256 0x18300| 31 ed | 1. | rice_parameter: 30 0x1830a.7-0x1830b.4 (0.5) -0x18300| ed a1 65 65 9f| ..ee.| samples: raw bits 0x1830b.4-0x18701.7 (1014.3) +0x18300| ed a1 65 65 9f| ..ee.| residuals: raw bits 0x1830b.4-0x18701.7 (1014.3) 0x18310|81 00 7e 5a 40 87 f5 49 ab b2 ed d3 a2 0f 44 ae|..~Z@..I......D.| * |until 0x18701.6 (1015) | | | | | [6]{}: partition 0x18701.7-0x18af5.1 (1011.2) | | | count: 256 0x18700| 59 ef | Y. | rice_parameter: 30 0x18701.7-0x18702.4 (0.5) -0x18700| ef 15 62 e4 f6 4b 23 4a 91 b2 45 72 94 10| ..b..K#J..Er..| samples: raw bits 0x18702.4-0x18af5.1 (1010.5) +0x18700| ef 15 62 e4 f6 4b 23 4a 91 b2 45 72 94 10| ..b..K#J..Er..| residuals: raw bits 0x18702.4-0x18af5.1 (1010.5) 0x18710|f3 f7 a2 b9 ee 2e a5 78 c3 55 4a a8 fc f1 7a 6f|.......x.UJ...zo| * |until 0x18af5 (1011) | | | | | [7]{}: partition 0x18af5.1-0x18ee8 (1010.7) | | | count: 256 0x18af0| fb | . | rice_parameter: 30 0x18af5.1-0x18af5.6 (0.5) -0x18af0| fb 63 2d bc e3 47 73 73 d7 f0 c4| .c-..Gss...| samples: raw bits 0x18af5.6-0x18ee8 (1010.2) +0x18af0| fb 63 2d bc e3 47 73 73 d7 f0 c4| .c-..Gss...| residuals: raw bits 0x18af5.6-0x18ee8 (1010.2) 0x18b00|67 87 d0 a9 b4 a2 92 e5 c7 1c 6f 3c 98 c6 d3 f3|g.........o<....| * |until 0x18ee7.7 (1011) | | | | | [8]{}: partition 0x18ee8-0x192dc.3 (1012.3) | | | count: 256 0x18ee0| f6 | . | rice_parameter: 30 0x18ee8-0x18ee8.5 (0.5) -0x18ee0| f6 1d c4 e9 96 99 ab c4| ........| samples: raw bits 0x18ee8.5-0x192dc.3 (1011.6) +0x18ee0| f6 1d c4 e9 96 99 ab c4| ........| residuals: raw bits 0x18ee8.5-0x192dc.3 (1011.6) 0x18ef0|dd 10 22 67 f4 6e 67 7e 93 a0 65 24 a3 1a 74 be|.."g.ng~..e$..t.| * |until 0x192dc.2 (1012) | | | | | [9]{}: partition 0x192dc.3-0x196d3.5 (1015.2) | | | count: 256 0x192d0| be | . | rice_parameter: 30 0x192dc.3-0x192dd (0.5) -0x192d0| 92 91 f7| ...| samples: raw bits 0x192dd-0x196d3.5 (1014.5) +0x192d0| 92 91 f7| ...| residuals: raw bits 0x192dd-0x196d3.5 (1014.5) 0x192e0|b0 44 f3 fd be 49 4f 0c c1 a8 8b 55 e6 92 ea 8f|.D...IO....U....| * |until 0x196d3.4 (1015) | | | | | [10]{}: partition 0x196d3.5-0x19aca.1 (1014.4) | | | count: 256 0x196d0| 67 b9 | g. | rice_parameter: 30 0x196d3.5-0x196d4.2 (0.5) -0x196d0| b9 79 9f 01 bc a0 f3 28 27 f6 80 1a| .y.....('...| samples: raw bits 0x196d4.2-0x19aca.1 (1013.7) +0x196d0| b9 79 9f 01 bc a0 f3 28 27 f6 80 1a| .y.....('...| residuals: raw bits 0x196d4.2-0x19aca.1 (1013.7) 0x196e0|41 56 b5 43 6c 97 32 12 b1 76 06 6c bd ba 9a b6|AV.Cl.2..v.l....| * |until 0x19aca (1014) | | | | | [11]{}: partition 0x19aca.1-0x19ebe.7 (1012.6) | | | count: 256 0x19ac0| 79 | y | rice_parameter: 30 0x19aca.1-0x19aca.6 (0.5) -0x19ac0| 79 ce f5 2d 61 27| y..-a'| samples: raw bits 0x19aca.6-0x19ebe.7 (1012.1) +0x19ac0| 79 ce f5 2d 61 27| y..-a'| residuals: raw bits 0x19aca.6-0x19ebe.7 (1012.1) 0x19ad0|da b8 c8 bf 02 07 83 65 59 30 30 8d c8 a3 04 45|.......eY00....E| * |until 0x19ebe.6 (1013) | | | | | [12]{}: partition 0x19ebe.7-0x1a2b3.1 (1012.2) | | | count: 256 0x19eb0| b1 ee| ..| rice_parameter: 30 0x19ebe.7-0x19ebf.4 (0.5) -0x19eb0| ee| .| samples: raw bits 0x19ebf.4-0x1a2b3.1 (1011.5) +0x19eb0| ee| .| residuals: raw bits 0x19ebf.4-0x1a2b3.1 (1011.5) 0x19ec0|c7 bd 94 9f ae 0a 7b d5 7f 1a 03 08 a4 15 c1 ff|......{.........| * |until 0x1a2b3 (1012) | | | | | [13]{}: partition 0x1a2b3.1-0x1a6a7.6 (1012.5) | | | count: 256 0x1a2b0| fa | . | rice_parameter: 30 0x1a2b3.1-0x1a2b3.6 (0.5) -0x1a2b0| fa df 35 6b 4c 36 f3 b6 6d 39 8a 7f 29| ..5kL6..m9..)| samples: raw bits 0x1a2b3.6-0x1a6a7.6 (1012) +0x1a2b0| fa df 35 6b 4c 36 f3 b6 6d 39 8a 7f 29| ..5kL6..m9..)| residuals: raw bits 0x1a2b3.6-0x1a6a7.6 (1012) 0x1a2c0|b2 eb a6 2b 50 fe ed 6d 9c ca 15 0c b9 72 a2 2b|...+P..m.....r.+| * |until 0x1a6a7.5 (1012) | | | | | [14]{}: partition 0x1a6a7.6-0x1aa9c.7 (1013.1) | | | count: 256 0x1a6a0| f3 c8 | .. | rice_parameter: 30 0x1a6a7.6-0x1a6a8.3 (0.5) -0x1a6a0| c8 7f 40 4e 11 30 8b f3| ..@N.0..| samples: raw bits 0x1a6a8.3-0x1aa9c.7 (1012.4) +0x1a6a0| c8 7f 40 4e 11 30 8b f3| ..@N.0..| residuals: raw bits 0x1a6a8.3-0x1aa9c.7 (1012.4) 0x1a6b0|fe 2a 4e 36 cf 44 22 3e dd 68 36 cc 92 8d 70 f1|.*N6.D">.h6...p.| * |until 0x1aa9c.6 (1013) | | | | | [15]{}: partition 0x1aa9c.7-0x1ae94.4 (1015.5) | | | count: 256 0x1aa90| b1 ec | .. | rice_parameter: 30 0x1aa9c.7-0x1aa9d.4 (0.5) -0x1aa90| ec 92 13| ...| samples: raw bits 0x1aa9d.4-0x1ae94.4 (1015) +0x1aa90| ec 92 13| ...| residuals: raw bits 0x1aa9d.4-0x1ae94.4 (1015) 0x1aaa0|60 72 09 cb bd 9b 62 15 5d f7 e3 23 21 d7 25 7c|`r....b.]..#!.%|| * |until 0x1ae94.3 (1015) | | | | | [1]{}: subframe 0x1ae94.4-0x1ddc2.3 (12077.7) @@ -1397,193 +1397,193 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x1aea9-0x1b023.3 (378.3) | | | count: 125 0x1aea0| b0 | . | rice_parameter: 22 0x1aea9-0x1aea9.5 (0.5) -0x1aea0| b0 86 1d 47 30 e2 9b| ...G0..| samples: raw bits 0x1aea9.5-0x1b023.3 (377.6) +0x1aea0| b0 86 1d 47 30 e2 9b| ...G0..| residuals: raw bits 0x1aea9.5-0x1b023.3 (377.6) 0x1aeb0|fe 1d bb a6 70 60 19 5d 36 ce 65 c2 37 50 41 e0|....p`.]6.e.7PA.| * |until 0x1b023.2 (378) | | | | | [1]{}: partition 0x1b023.3-0x1b19a (374.5) | | | count: 128 0x1b020| b5 | . | rice_parameter: 21 0x1b023.3-0x1b024 (0.5) -0x1b020| 86 fa 9e 1b fa 58 70 0a 61 c1 1b 87| .....Xp.a...| samples: raw bits 0x1b024-0x1b19a (374) +0x1b020| 86 fa 9e 1b fa 58 70 0a 61 c1 1b 87| .....Xp.a...| residuals: raw bits 0x1b024-0x1b19a (374) 0x1b030|08 d6 1c 2d 78 70 ef 61 c4 e9 87 1a 36 1c 48 98|...-xp.a....6.H.| * |until 0x1b199.7 (374) | | | | | [2]{}: partition 0x1b19a-0x1b322 (392) | | | count: 128 0x1b190| b1 | . | rice_parameter: 22 0x1b19a-0x1b19a.5 (0.5) -0x1b190| b1 e0 f1 13 b9 7d| .....}| samples: raw bits 0x1b19a.5-0x1b322 (391.3) +0x1b190| b1 e0 f1 13 b9 7d| .....}| residuals: raw bits 0x1b19a.5-0x1b322 (391.3) 0x1b1a0|b7 12 a9 3f 8f ff 8a c2 b7 af dc c4 8c c7 f1 47|...?...........G| * |until 0x1b321.7 (392) | | | | | [3]{}: partition 0x1b322-0x1b4aa.3 (392.3) | | | count: 128 0x1b320| b5 | . | rice_parameter: 22 0x1b322-0x1b322.5 (0.5) -0x1b320| b5 13 63 82 83 7a 33 36 53 71 ad 9f 3e 5f| ..c..z36Sq..>_| samples: raw bits 0x1b322.5-0x1b4aa.3 (391.6) +0x1b320| b5 13 63 82 83 7a 33 36 53 71 ad 9f 3e 5f| ..c..z36Sq..>_| residuals: raw bits 0x1b322.5-0x1b4aa.3 (391.6) 0x1b330|36 37 27 68 d4 6b 6e 67 d5 27 d0 12 55 c6 1f e7|67'h.kng.'..U...| * |until 0x1b4aa.2 (392) | | | | | [4]{}: partition 0x1b4aa.3-0x1b61c.5 (370.2) | | | count: 128 0x1b4a0| 15 | . | rice_parameter: 21 0x1b4aa.3-0x1b4ab (0.5) -0x1b4a0| c5 8c 8c 96 f7| .....| samples: raw bits 0x1b4ab-0x1b61c.5 (369.5) +0x1b4a0| c5 8c 8c 96 f7| .....| residuals: raw bits 0x1b4ab-0x1b61c.5 (369.5) 0x1b4b0|f8 53 65 ae 01 64 33 d0 e0 89 95 aa dc 2a 86 0b|.Se..d3......*..| * |until 0x1b61c.4 (370) | | | | | [5]{}: partition 0x1b61c.5-0x1b7a2.3 (389.6) | | | count: 128 0x1b610| dd a1 | .. | rice_parameter: 22 0x1b61c.5-0x1b61d.2 (0.5) -0x1b610| a1 17 59| ..Y| samples: raw bits 0x1b61d.2-0x1b7a2.3 (389.1) +0x1b610| a1 17 59| ..Y| residuals: raw bits 0x1b61d.2-0x1b7a2.3 (389.1) 0x1b620|43 dc b2 84 02 17 0f c1 da 3d 87 f0 05 f4 64 f3|C........=....d.| * |until 0x1b7a2.2 (390) | | | | | [6]{}: partition 0x1b7a2.3-0x1b92c.7 (394.4) | | | count: 128 0x1b7a0| 57 | W | rice_parameter: 23 0x1b7a2.3-0x1b7a3 (0.5) -0x1b7a0| 8e c9 df 95 f2 44 7c 73 e8 08 19 50 53| .....D|s...PS| samples: raw bits 0x1b7a3-0x1b92c.7 (393.7) +0x1b7a0| 8e c9 df 95 f2 44 7c 73 e8 08 19 50 53| .....D|s...PS| residuals: raw bits 0x1b7a3-0x1b92c.7 (393.7) 0x1b7b0|b1 49 de ce 38 d6 01 c3 f6 03 0b c6 0a df 42 04|.I..8.........B.| * |until 0x1b92c.6 (394) | | | | | [7]{}: partition 0x1b92c.7-0x1baad.5 (384.6) | | | count: 128 0x1b920| f7 6a | .j | rice_parameter: 22 0x1b92c.7-0x1b92d.4 (0.5) -0x1b920| 6a 9a dc| j..| samples: raw bits 0x1b92d.4-0x1baad.5 (384.1) +0x1b920| 6a 9a dc| j..| residuals: raw bits 0x1b92d.4-0x1baad.5 (384.1) 0x1b930|8a e2 b0 24 fc 2d 00 24 42 0b 8a 83 12 3c 80 86|...$.-.$B....<..| * |until 0x1baad.4 (385) | | | | | [8]{}: partition 0x1baad.5-0x1bc2a (380.3) | | | count: 128 0x1baa0| dd a0 | .. | rice_parameter: 22 0x1baad.5-0x1baae.2 (0.5) -0x1baa0| a0 e0| ..| samples: raw bits 0x1baae.2-0x1bc2a (379.6) +0x1baa0| a0 e0| ..| residuals: raw bits 0x1baae.2-0x1bc2a (379.6) 0x1bab0|73 c1 c1 ab 83 85 17 07 0d ce 0e 23 dc 1c 5b 98|s..........#..[.| * |until 0x1bc29.7 (380) | | | | | [9]{}: partition 0x1bc2a-0x1bdb1.5 (391.5) | | | count: 128 0x1bc20| b6 | . | rice_parameter: 22 0x1bc2a-0x1bc2a.5 (0.5) -0x1bc20| b6 89 b2 2b c9 97| ...+..| samples: raw bits 0x1bc2a.5-0x1bdb1.5 (391) +0x1bc20| b6 89 b2 2b c9 97| ...+..| residuals: raw bits 0x1bc2a.5-0x1bdb1.5 (391) 0x1bc30|f8 45 67 02 0d 11 82 f7 64 49 a2 ae 86 4d f8 1d|.Eg.....dI...M..| * |until 0x1bdb1.4 (391) | | | | | [10]{}: partition 0x1bdb1.5-0x1bf30.4 (382.7) | | | count: 128 0x1bdb0| 1d bc | .. | rice_parameter: 22 0x1bdb1.5-0x1bdb2.2 (0.5) -0x1bdb0| bc 26 c8 10 3b 57 4c 9a 46 32 9f a4 62 ee| .&..;WL.F2..b.| samples: raw bits 0x1bdb2.2-0x1bf30.4 (382.2) +0x1bdb0| bc 26 c8 10 3b 57 4c 9a 46 32 9f a4 62 ee| .&..;WL.F2..b.| residuals: raw bits 0x1bdb2.2-0x1bf30.4 (382.2) 0x1bdc0|a5 c3 7e 72 86 1a 0b 1b fc 92 be 43 b8 05 4a 9c|..~r.......C..J.| * |until 0x1bf30.3 (383) | | | | | [11]{}: partition 0x1bf30.4-0x1c0ad.7 (381.3) | | | count: 128 0x1bf30|bb 40 |.@ | rice_parameter: 22 0x1bf30.4-0x1bf31.1 (0.5) -0x1bf30| 40 61 87 89 58 45 0e 2e de 2d 69 d8 b4 1c 6d| @a..XE...-i...m| samples: raw bits 0x1bf31.1-0x1c0ad.7 (380.6) +0x1bf30| 40 61 87 89 58 45 0e 2e de 2d 69 d8 b4 1c 6d| @a..XE...-i...m| residuals: raw bits 0x1bf31.1-0x1c0ad.7 (380.6) 0x1bf40|ef e0 c2 0e bc 4d 32 b5 ac 7a b5 28 95 38 46 75|.....M2..z.(.8Fu| * |until 0x1c0ad.6 (381) | | | | | [12]{}: partition 0x1c0ad.7-0x1c227.3 (377.4) | | | count: 128 0x1c0a0| ad 59 | .Y | rice_parameter: 21 0x1c0ad.7-0x1c0ae.4 (0.5) -0x1c0a0| 59 1b| Y.| samples: raw bits 0x1c0ae.4-0x1c227.3 (376.7) +0x1c0a0| 59 1b| Y.| residuals: raw bits 0x1c0ae.4-0x1c227.3 (376.7) 0x1c0b0|08 2f 8a 57 00 00 ed 8a d0 1f 52 8f 05 dd 4b ba|./.W......R...K.| * |until 0x1c227.2 (377) | | | | | [13]{}: partition 0x1c227.3-0x1c387.7 (352.4) | | | count: 128 0x1c220| 54 | T | rice_parameter: 20 0x1c227.3-0x1c228 (0.5) -0x1c220| 00 0d bb bb 27 91 51 f2| ....'.Q.| samples: raw bits 0x1c228-0x1c387.7 (351.7) +0x1c220| 00 0d bb bb 27 91 51 f2| ....'.Q.| residuals: raw bits 0x1c228-0x1c387.7 (351.7) 0x1c230|22 0b d8 1d df f4 ca 50 48 34 3c 90 81 10 14 9d|"......PH4<.....| * |until 0x1c387.6 (352) | | | | | [14]{}: partition 0x1c387.7-0x1c4f0.2 (360.3) | | | count: 128 0x1c380| 79 48 | yH | rice_parameter: 20 0x1c387.7-0x1c388.4 (0.5) -0x1c380| 48 e0 22 47 04 1a 38 32| H."G..82| samples: raw bits 0x1c388.4-0x1c4f0.2 (359.6) +0x1c380| 48 e0 22 47 04 1a 38 32| H."G..82| residuals: raw bits 0x1c388.4-0x1c4f0.2 (359.6) 0x1c390|51 c2 98 8e 1b 54 71 2a a3 8c 4d 1c 62 88 e0 16|Q....Tq*..M.b...| * |until 0x1c4f0.1 (360) | | | | | [15]{}: partition 0x1c4f0.2-0x1c666.1 (373.7) | | | count: 128 0x1c4f0|2a |* | rice_parameter: 21 0x1c4f0.2-0x1c4f0.7 (0.5) -0x1c4f0|2a 5a 18 61 79 b0 f4 8b 80 32 c8 85 41 97 5b 18|*Z.ay....2..A.[.| samples: raw bits 0x1c4f0.7-0x1c666.1 (373.2) +0x1c4f0|2a 5a 18 61 79 b0 f4 8b 80 32 c8 85 41 97 5b 18|*Z.ay....2..A.[.| residuals: raw bits 0x1c4f0.7-0x1c666.1 (373.2) 0x1c500|7e 84 1b da 50 fe cd 43 09 05 0d 48 04 35 8b 10|~...P..C...H.5..| * |until 0x1c666 (374) | | | | | [16]{}: partition 0x1c666.1-0x1c7e3 (380.7) | | | count: 128 0x1c660| 59 | Y | rice_parameter: 22 0x1c666.1-0x1c666.6 (0.5) -0x1c660| 59 dd f9 60 da 15 4f 19 8a 23| Y..`..O..#| samples: raw bits 0x1c666.6-0x1c7e3 (380.2) +0x1c660| 59 dd f9 60 da 15 4f 19 8a 23| Y..`..O..#| residuals: raw bits 0x1c666.6-0x1c7e3 (380.2) 0x1c670|11 73 be 92 3b cf 94 58 e2 ce 36 82 a9 a3 64 dd|.s..;..X..6...d.| * |until 0x1c7e2.7 (381) | | | | | [17]{}: partition 0x1c7e3-0x1c963.6 (384.6) | | | count: 128 0x1c7e0| b2 | . | rice_parameter: 22 0x1c7e3-0x1c7e3.5 (0.5) -0x1c7e0| b2 98 c8 10 a7 3d 8a a9 36 53 ad dc d7| .....=..6S...| samples: raw bits 0x1c7e3.5-0x1c963.6 (384.1) +0x1c7e0| b2 98 c8 10 a7 3d 8a a9 36 53 ad dc d7| .....=..6S...| residuals: raw bits 0x1c7e3.5-0x1c963.6 (384.1) 0x1c7f0|5e 3a 57 52 07 94 57 e4 83 5b 04 50 a3 da b3 bb|^:WR..W..[.P....| * |until 0x1c963.5 (385) | | | | | [18]{}: partition 0x1c963.6-0x1caea.3 (390.5) | | | count: 128 0x1c960| 92 c0 | .. | rice_parameter: 22 0x1c963.6-0x1c964.3 (0.5) -0x1c960| c0 31 4e b1 a6 f7 de b2 93 c5 ba 96| .1N.........| samples: raw bits 0x1c964.3-0x1caea.3 (390) +0x1c960| c0 31 4e b1 a6 f7 de b2 93 c5 ba 96| .1N.........| residuals: raw bits 0x1c964.3-0x1caea.3 (390) 0x1c970|b1 3c d6 a9 1b e3 ff 63 78 f4 67 39 dd dd de 30|.<.....cx.g9...0| * |until 0x1caea.2 (390) | | | | | [19]{}: partition 0x1caea.3-0x1cc6e.2 (387.7) | | | count: 128 0x1cae0| 36 | 6 | rice_parameter: 22 0x1caea.3-0x1caeb (0.5) -0x1cae0| 5e 04 fe 2c d8| ^..,.| samples: raw bits 0x1caeb-0x1cc6e.2 (387.2) +0x1cae0| 5e 04 fe 2c d8| ^..,.| residuals: raw bits 0x1caeb-0x1cc6e.2 (387.2) 0x1caf0|d2 0f 4b 07 e4 ae c0 20 70 d4 1b 1c 86 01 75 6e|..K.... p.....un| * |until 0x1cc6e.1 (388) | | | | | [20]{}: partition 0x1cc6e.2-0x1cdec.4 (382.2) | | | count: 128 0x1cc60| 2d | - | rice_parameter: 22 0x1cc6e.2-0x1cc6e.7 (0.5) -0x1cc60| 2d 0d| -.| samples: raw bits 0x1cc6e.7-0x1cdec.4 (381.5) +0x1cc60| 2d 0d| -.| residuals: raw bits 0x1cc6e.7-0x1cdec.4 (381.5) 0x1cc70|40 f2 0b 21 bc 43 53 b8 91 28 d1 90 29 e3 06 26|@..!.CS..(..)..&| * |until 0x1cdec.3 (382) | | | | | [21]{}: partition 0x1cdec.4-0x1cf5c (367.4) | | | count: 128 0x1cde0| ba c2 | .. | rice_parameter: 21 0x1cdec.4-0x1cded.1 (0.5) -0x1cde0| c2 3c 09| .<.| samples: raw bits 0x1cded.1-0x1cf5c (366.7) +0x1cde0| c2 3c 09| .<.| residuals: raw bits 0x1cded.1-0x1cf5c (366.7) 0x1cdf0|17 3d bc 16 57 30 d3 15 c3 5c a3 05 a7 ac 59 01|.=..W0...\....Y.| * |until 0x1cf5b.7 (367) | | | | | [22]{}: partition 0x1cf5c-0x1d0b6.7 (346.7) | | | count: 128 0x1cf50| 98 | . | rice_parameter: 19 0x1cf5c-0x1cf5c.5 (0.5) -0x1cf50| 98 00 26 e5| ..&.| samples: raw bits 0x1cf5c.5-0x1d0b6.7 (346.2) +0x1cf50| 98 00 26 e5| ..&.| residuals: raw bits 0x1cf5c.5-0x1d0b6.7 (346.2) 0x1cf60|88 00 02 d0 21 00 00 00 3b b2 34 39 80 80 00 66|....!...;.49...f| * |until 0x1d0b6.6 (347) | | | | | [23]{}: partition 0x1d0b6.7-0x1d21b.5 (356.6) | | | count: 128 0x1d0b0| a7 48 | .H | rice_parameter: 20 0x1d0b6.7-0x1d0b7.4 (0.5) -0x1d0b0| 48 df 1a c6 fe 6e 38 0e f1| H....n8..| samples: raw bits 0x1d0b7.4-0x1d21b.5 (356.1) +0x1d0b0| 48 df 1a c6 fe 6e 38 0e f1| H....n8..| residuals: raw bits 0x1d0b7.4-0x1d21b.5 (356.1) 0x1d0c0|c1 77 8e 14 2c 70 c4 e3 88 2f 1c 57 98 e3 ab c7|.w..,p.../.W....| * |until 0x1d21b.4 (357) | | | | | [24]{}: partition 0x1d21b.5-0x1d38f.2 (371.5) | | | count: 128 0x1d210| ad 40 | .@ | rice_parameter: 21 0x1d21b.5-0x1d21c.2 (0.5) -0x1d210| 40 e8 55 b8| @.U.| samples: raw bits 0x1d21c.2-0x1d38f.2 (371) +0x1d210| 40 e8 55 b8| @.U.| residuals: raw bits 0x1d21c.2-0x1d38f.2 (371) 0x1d220|b0 65 8a d7 65 a9 d8 29 61 ba ac 8d 23 9e 0b 54|.e..e..)a...#..T| * |until 0x1d38f.1 (371) | | | | | [25]{}: partition 0x1d38f.2-0x1d50c.6 (381.4) | | | count: 128 0x1d380| 2d| -| rice_parameter: 22 0x1d38f.2-0x1d38f.7 (0.5) -0x1d380| 2d| -| samples: raw bits 0x1d38f.7-0x1d50c.6 (380.7) +0x1d380| 2d| -| residuals: raw bits 0x1d38f.7-0x1d50c.6 (380.7) 0x1d390|9d 38 a7 bc cb e3 35 6b 49 e3 a8 f6 80 b2 dc b3|.8....5kI.......| * |until 0x1d50c.5 (381) | | | | | [26]{}: partition 0x1d50c.6-0x1d68d (384.2) | | | count: 128 0x1d500| 72 c4 | r. | rice_parameter: 22 0x1d50c.6-0x1d50d.3 (0.5) -0x1d500| c4 9a 23| ..#| samples: raw bits 0x1d50d.3-0x1d68d (383.5) +0x1d500| c4 9a 23| ..#| residuals: raw bits 0x1d50d.3-0x1d68d (383.5) 0x1d510|52 f5 2e 7c d9 ac 58 23 30 31 5f 6e e4 70 36 4e|R..|..X#01_n.p6N| * |until 0x1d68c.7 (384) | | | | | [27]{}: partition 0x1d68d-0x1d80a.3 (381.3) | | | count: 128 0x1d680| b4 | . | rice_parameter: 22 0x1d68d-0x1d68d.5 (0.5) -0x1d680| b4 4c b8| .L.| samples: raw bits 0x1d68d.5-0x1d80a.3 (380.6) +0x1d680| b4 4c b8| .L.| residuals: raw bits 0x1d68d.5-0x1d80a.3 (380.6) 0x1d690|58 d9 63 51 cc eb 60 7b 26 0e e1 b6 d1 a9 07 d3|X.cQ..`{&.......| * |until 0x1d80a.2 (381) | | | | | [28]{}: partition 0x1d80a.3-0x1d989.1 (382.6) | | | count: 128 0x1d800| 36 | 6 | rice_parameter: 22 0x1d80a.3-0x1d80b (0.5) -0x1d800| 8a 45 8e 01 83| .E...| samples: raw bits 0x1d80b-0x1d989.1 (382.1) +0x1d800| 8a 45 8e 01 83| .E...| residuals: raw bits 0x1d80b-0x1d989.1 (382.1) 0x1d810|7c c8 d9 0f 64 4c 68 75 ad a6 2b 0c 4b ee 00 53||...dLhu..+.K..S| * |until 0x1d989 (383) | | | | | [29]{}: partition 0x1d989.1-0x1db01.3 (376.2) | | | count: 128 0x1d980| 54 | T | rice_parameter: 21 0x1d989.1-0x1d989.6 (0.5) -0x1d980| 54 26 9f f1 00 2f e1| T&.../.| samples: raw bits 0x1d989.6-0x1db01.3 (375.5) +0x1d980| 54 26 9f f1 00 2f e1| T&.../.| residuals: raw bits 0x1d989.6-0x1db01.3 (375.5) 0x1d990|90 00 c8 a6 d9 3b fa e4 f0 3b 37 6e 79 67 ac 1f|.....;...;7nyg..| * |until 0x1db01.2 (376) | | | | | [30]{}: partition 0x1db01.3-0x1dc6b.4 (362.1) | | | count: 128 0x1db00| d4 | . | rice_parameter: 20 0x1db01.3-0x1db02 (0.5) -0x1db00| 8f d3 1d c8 fe 2e 14 0b e6 04 64 59 63 5d| ..........dYc]| samples: raw bits 0x1db02-0x1dc6b.4 (361.4) +0x1db00| 8f d3 1d c8 fe 2e 14 0b e6 04 64 59 63 5d| ..........dYc]| residuals: raw bits 0x1db02-0x1dc6b.4 (361.4) 0x1db10|7a be 30 d4 ee 14 fd 6c 00 e0 51 38 03 01 ca a9|z.0....l..Q8....| * |until 0x1dc6b.3 (362) | | | | | [31]{}: partition 0x1dc6b.4-0x1ddc2.3 (342.7) | | | count: 128 0x1dc60| 79 ea | y. | rice_parameter: 19 0x1dc6b.4-0x1dc6c.1 (0.5) -0x1dc60| ea 34 65 d9| .4e.| samples: raw bits 0x1dc6c.1-0x1ddc2.3 (342.2) +0x1dc60| ea 34 65 d9| .4e.| residuals: raw bits 0x1dc6c.1-0x1ddc2.3 (342.2) 0x1dc70|90 a8 56 b1 56 99 e6 4a d6 0c 28 eb 01 0d fa 40|..V.V..J..(....@| * |until 0x1ddc2.2 (343) | | 0x1ddc0| a0 | . | byte_align: 0 (valid) 0x1ddc2.3-0x1ddc3 (0.5) @@ -1617,7 +1617,7 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x1ddce.6-0x1f60f.7 (6209.1) | | | count: 1570 0x1ddc0| 43 ca| C.| rice_parameter: 30 0x1ddce.6-0x1ddcf.3 (0.5) -0x1ddc0| ca| .| samples: raw bits 0x1ddcf.3-0x1f60f.7 (6208.4) +0x1ddc0| ca| .| residuals: raw bits 0x1ddcf.3-0x1f60f.7 (6208.4) 0x1ddd0|49 3e a0 09 02 02 70 05 01 c0 40 0e f3 65 e8 0f|I>....p...@..e..| * |until 0x1f60f.6 (6209) | | | | | [1]{}: subframe 0x1f60f.7-0x2082d.2 (4637.3) @@ -1641,13 +1641,13 @@ $ fq -d flac dv stereo32.flac | | | [0]{}: partition 0x1f61e.4-0x1ff48.5 (2346.1) | | | count: 783 0x1f610| 1b 6b| .k| rice_parameter: 22 0x1f61e.4-0x1f61f.1 (0.5) -0x1f610| 6b| k| samples: raw bits 0x1f61f.1-0x1ff48.5 (2345.4) +0x1f610| 6b| k| residuals: raw bits 0x1f61f.1-0x1ff48.5 (2345.4) 0x1f620|a2 ee fe 33 22 f6 87 7c 02 6a cf ba dd a7 3e 75|...3"..|.j....>u| * |until 0x1ff48.4 (2346) | | | | | [1]{}: partition 0x1ff48.5-0x2082d.2 (2276.5) | | | count: 785 0x1ff40| cd 66 | .f | rice_parameter: 21 0x1ff48.5-0x1ff49.2 (0.5) -0x1ff40| 66 85 46 a9 67 a3 71| f.F.g.q| samples: raw bits 0x1ff49.2-0x2082d.2 (2276) +0x1ff40| 66 85 46 a9 67 a3 71| f.F.g.q| residuals: raw bits 0x1ff49.2-0x2082d.2 (2276) 0x1ff50|a4 9f dc 5e 18 8f 4c 96 82 95 01 15 e6 15 11 1f|...^..L.........| * |until 0x2082d.1 (2276) | | 0x20820| 80 | . | byte_align: 0 (valid) 0x2082d.2-0x2082e (0.6) diff --git a/format/flac/testdata/stereo8.fqtest b/format/flac/testdata/stereo8.fqtest index dbd117648..a1db5a6d3 100644 --- a/format/flac/testdata/stereo8.fqtest +++ b/format/flac/testdata/stereo8.fqtest @@ -102,13 +102,13 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x2084.6-0x21b1.7 (301.1) | | | count: 2047 0x2080| 04 3f | .? | rice_parameter: 0 0x2084.6-0x2085.2 (0.4) -0x2080| 3f ff ff ff ff ff ff ff ff ff ff| ?..........| samples: raw bits 0x2085.2-0x21b1.7 (300.5) +0x2080| 3f ff ff ff ff ff ff ff ff ff ff| ?..........| residuals: raw bits 0x2085.2-0x21b1.7 (300.5) 0x2090|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x21b1.6 (301) | | | | | [1]{}: partition 0x21b1.7-0x22e9.2 (311.3) | | | count: 2048 0x21b0| f2 1e | .. | rice_parameter: 0 0x21b1.7-0x21b2.3 (0.4) -0x21b0| 1e 79 f3 cf 9e 79 f3 cf 9e 7c f3 e7 cf 9f| .y...y...|....| samples: raw bits 0x21b2.3-0x22e9.2 (310.7) +0x21b0| 1e 79 f3 cf 9e 79 f3 cf 9e 7c f3 e7 cf 9f| .y...y...|....| residuals: raw bits 0x21b2.3-0x22e9.2 (310.7) 0x21c0|9f 9f 9f cf f3 ff 9f ff ff ff ff ff fb ff 7f bf|................| * |until 0x22e9.1 (311) | | | | | [1]{}: subframe 0x22e9.2-0x2618.3 (815.1) @@ -127,13 +127,13 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x22ed-0x2476.2 (393.2) | | | count: 2046 0x22e0| 0f | . | rice_parameter: 0 0x22ed-0x22ed.4 (0.4) -0x22e0| 0f ff ff| ...| samples: raw bits 0x22ed.4-0x2476.2 (392.6) +0x22e0| 0f ff ff| ...| residuals: raw bits 0x22ed.4-0x2476.2 (392.6) 0x22f0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2476.1 (393) | | | | | [1]{}: partition 0x2476.2-0x2618.3 (418.1) | | | count: 2048 0x2470| c3 | . | rice_parameter: 0 0x2476.2-0x2476.6 (0.4) -0x2470| c3 f9 4f e5 34 e5 cb 29 72 e9| ..O.4..)r.| samples: raw bits 0x2476.6-0x2618.3 (417.5) +0x2470| c3 f9 4f e5 34 e5 cb 29 72 e9| ..O.4..)r.| residuals: raw bits 0x2476.6-0x2618.3 (417.5) 0x2480|a5 fd 2f fa 69 4e 9f 2c ff 29 fe 59 4b 2f f4 bf|../.iN.,.).YK/..| * |until 0x2618.2 (418) | | 0x2610| 20 | | byte_align: 0 (valid) 0x2618.3-0x2619 (0.5) @@ -167,193 +167,193 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x2622.6-0x267b.4 (88.6) | | | count: 128 0x2620| 15 27 | .' | rice_parameter: 4 0x2622.6-0x2623.2 (0.4) -0x2620| 27 5b df 7b ef fe 8a 69 aa aa ec b2 cb| '[.{...i.....| samples: raw bits 0x2623.2-0x267b.4 (88.2) +0x2620| 27 5b df 7b ef fe 8a 69 aa aa ec b2 cb| '[.{...i.....| residuals: raw bits 0x2623.2-0x267b.4 (88.2) 0x2630|6d b6 db 6d b6 db 6d b6 cb 2c ae ba aa a6 9a 3f|m..m..m..,.....?| * |until 0x267b.3 (89) | | | | | [1]{}: partition 0x267b.4-0x26c8.2 (76.6) | | | count: 128 0x2670| 03 | . | rice_parameter: 3 0x267b.4-0x267c (0.4) -0x2670| aa aa aa cc| ....| samples: raw bits 0x267c-0x26c8.2 (76.2) +0x2670| aa aa aa cc| ....| residuals: raw bits 0x267c-0x26c8.2 (76.2) 0x2680|ca aa a8 89 9b bd df 4a 56 b6 bd ef 24 92 cb 2c|.......JV...$..,| * |until 0x26c8.1 (77) | | | | | [2]{}: partition 0x26c8.2-0x2720.4 (88.2) | | | count: 128 0x26c0| 0f | . | rice_parameter: 3 0x26c8.2-0x26c8.6 (0.4) -0x26c0| 0f 90 85 31 84 10 51 86| ...1..Q.| samples: raw bits 0x26c8.6-0x2720.4 (87.6) +0x26c0| 0f 90 85 31 84 10 51 86| ...1..Q.| residuals: raw bits 0x26c8.6-0x2720.4 (87.6) 0x26d0|1c 70 81 02 85 0c 18 38 70 e1 c3 87 0e 1c 38 60|.p.....8p.....8`| * |until 0x2720.3 (88) | | | | | [3]{}: partition 0x2720.4-0x2770.2 (79.6) | | | count: 128 0x2720|93 |. | rice_parameter: 3 0x2720.4-0x2721 (0.4) -0x2720| 4a d6 b5 ad ad 6b 56 d5 ad 29 4f fe ed dc cc| J....kV..)O....| samples: raw bits 0x2721-0x2770.2 (79.2) +0x2720| 4a d6 b5 ad ad 6b 56 d5 ad 29 4f fe ed dc cc| J....kV..)O....| residuals: raw bits 0x2721-0x2770.2 (79.2) 0x2730|55 66 77 21 08 52 94 a5 29 4a 52 94 84 77 76 55|Ufw!.R..)JR..wvU| * |until 0x2770.1 (80) | | | | | [4]{}: partition 0x2770.2-0x27cc.7 (92.5) | | | count: 128 0x2770|d3 |. | rice_parameter: 4 0x2770.2-0x2770.6 (0.4) -0x2770|d3 39 df 7b f4 51 4d 55 57 65 96 db 75 d7 5f 7d|.9.{.QMUWe..u._}| samples: raw bits 0x2770.6-0x27cc.7 (92.1) +0x2770|d3 39 df 7b f4 51 4d 55 57 65 96 db 75 d7 5f 7d|.9.{.QMUWe..u._}| residuals: raw bits 0x2770.6-0x27cc.7 (92.1) 0x2780|f7 df 7d f7 df 7d f7 dd 6d b6 59 5d 75 53 4d 1f|..}..}..m.Y]uSM.| * |until 0x27cc.6 (93) | | | | | [5]{}: partition 0x27cc.7-0x2848.4 (123.5) | | | count: 128 0x27c0| 36 c5 | 6. | rice_parameter: 6 0x27cc.7-0x27cd.3 (0.4) -0x27c0| c5 c3 c4| ...| samples: raw bits 0x27cd.3-0x2848.4 (123.1) +0x27c0| c5 c3 c4| ...| residuals: raw bits 0x27cd.3-0x2848.4 (123.1) 0x27d0|05 96 d6 1e f7 dd 68 37 f1 84 f8 ce 6c 2d 48 76|......h7....l-Hv| * |until 0x2848.3 (124) | | | | | [6]{}: partition 0x2848.4-0x28c7.6 (127.2) | | | count: 128 0x2840| 66 | f | rice_parameter: 6 0x2848.4-0x2849 (0.4) -0x2840| b2 ed 18 e7 39 1d cb| ....9..| samples: raw bits 0x2849-0x28c7.6 (126.6) +0x2840| b2 ed 18 e7 39 1d cb| ....9..| residuals: raw bits 0x2849-0x28c7.6 (126.6) 0x2850|f4 d4 f5 92 e4 43 14 92 bb e2 fb 71 6c 53 b3 be|.....C.....qlS..| * |until 0x28c7.5 (127) | | | | | [7]{}: partition 0x28c7.6-0x2946.4 (126.6) | | | count: 128 0x28c0| 85 86 | .. | rice_parameter: 6 0x28c7.6-0x28c8.2 (0.4) -0x28c0| 86 47 75 b7 aa 91 bb 23| .Gu....#| samples: raw bits 0x28c8.2-0x2946.4 (126.2) +0x28c0| 86 47 75 b7 aa 91 bb 23| .Gu....#| residuals: raw bits 0x28c8.2-0x2946.4 (126.2) 0x28d0|66 c0 9f bc 9f 5c 9e be f0 a3 35 24 a3 a5 6a e4|f....\....5$..j.| * |until 0x2946.3 (127) | | | | | [8]{}: partition 0x2946.4-0x29c3.3 (124.7) | | | count: 128 0x2940| d6 | . | rice_parameter: 6 0x2946.4-0x2947 (0.4) -0x2940| 99 15 d4 c7 ac ef a9 7b 10| .......{.| samples: raw bits 0x2947-0x29c3.3 (124.3) +0x2940| 99 15 d4 c7 ac ef a9 7b 10| .......{.| residuals: raw bits 0x2947-0x29c3.3 (124.3) 0x2950|a7 bc b1 0a a3 97 6f 0a bb 44 32 af d6 a1 51 2f|......o..D2...Q/| * |until 0x29c3.2 (125) | | | | | [9]{}: partition 0x29c3.3-0x2a41 (125.5) | | | count: 128 0x29c0| ad | . | rice_parameter: 6 0x29c3.3-0x29c3.7 (0.4) -0x29c0| ad b9 f4 c8 9b 33 a4 32 57 c2 5b 6a 89| .....3.2W.[j.| samples: raw bits 0x29c3.7-0x2a41 (125.1) +0x29c0| ad b9 f4 c8 9b 33 a4 32 57 c2 5b 6a 89| .....3.2W.[j.| residuals: raw bits 0x29c3.7-0x2a41 (125.1) 0x29d0|e2 e4 72 4f e3 b5 79 24 da 9d ad 22 a5 9d 9b e0|..rO..y$..."....| * |until 0x2a40.7 (126) | | | | | [10]{}: partition 0x2a41-0x2ac0.6 (127.6) | | | count: 128 0x2a40| 67 | g | rice_parameter: 6 0x2a41-0x2a41.4 (0.4) -0x2a40| 67 84 fb e9 c4 48 f7 8c 9c 21 0c 0d 5b 56 a1| g....H...!..[V.| samples: raw bits 0x2a41.4-0x2ac0.6 (127.2) +0x2a40| 67 84 fb e9 c4 48 f7 8c 9c 21 0c 0d 5b 56 a1| g....H...!..[V.| residuals: raw bits 0x2a41.4-0x2ac0.6 (127.2) 0x2a50|0d 82 71 ef 21 24 ef 25 9c 98 56 21 93 a4 5a ea|..q.!$.%..V!..Z.| * |until 0x2ac0.5 (128) | | | | | [11]{}: partition 0x2ac0.6-0x2b3e.4 (125.6) | | | count: 128 0x2ac0|41 93 |A. | rice_parameter: 6 0x2ac0.6-0x2ac1.2 (0.4) -0x2ac0| 93 ef c5 30 8b 47 23 6b a3 ed 35 68 76 b0 76| ...0.G#k..5hv.v| samples: raw bits 0x2ac1.2-0x2b3e.4 (125.2) +0x2ac0| 93 ef c5 30 8b 47 23 6b a3 ed 35 68 76 b0 76| ...0.G#k..5hv.v| residuals: raw bits 0x2ac1.2-0x2b3e.4 (125.2) 0x2ad0|5d e1 35 15 c9 d6 97 48 0f 33 1b 14 60 0b 94 86|].5....H.3..`...| * |until 0x2b3e.3 (126) | | | | | [12]{}: partition 0x2b3e.4-0x2bbe.3 (127.7) | | | count: 128 0x2b30| e6 | . | rice_parameter: 6 0x2b3e.4-0x2b3f (0.4) -0x2b30| 92| .| samples: raw bits 0x2b3f-0x2bbe.3 (127.3) +0x2b30| 92| .| residuals: raw bits 0x2b3f-0x2bbe.3 (127.3) 0x2b40|ca f9 59 dd e1 a3 8c e9 8e 0d 87 79 8d d5 10 ce|..Y........y....| * |until 0x2bbe.2 (128) | | | | | [13]{}: partition 0x2bbe.3-0x2c3b.6 (125.3) | | | count: 128 0x2bb0| 0d | . | rice_parameter: 6 0x2bbe.3-0x2bbe.7 (0.4) -0x2bb0| 0d 5c| .\| samples: raw bits 0x2bbe.7-0x2c3b.6 (124.7) +0x2bb0| 0d 5c| .\| residuals: raw bits 0x2bbe.7-0x2c3b.6 (124.7) 0x2bc0|8d 94 e5 23 24 d3 50 df 54 42 3e 2f 69 20 33 95|...#$.P.TB>/i 3.| * |until 0x2c3b.5 (125) | | | | | [14]{}: partition 0x2c3b.6-0x2cb9.6 (126) | | | count: 128 0x2c30| 25 94 | %. | rice_parameter: 6 0x2c3b.6-0x2c3c.2 (0.4) -0x2c30| 94 8e 8b 4c| ...L| samples: raw bits 0x2c3c.2-0x2cb9.6 (125.4) +0x2c30| 94 8e 8b 4c| ...L| residuals: raw bits 0x2c3c.2-0x2cb9.6 (125.4) 0x2c40|ca c6 7b 89 79 c7 14 23 41 50 60 a2 d7 8d 0e a4|..{.y..#AP`.....| * |until 0x2cb9.5 (126) | | | | | [15]{}: partition 0x2cb9.6-0x2d37.6 (126) | | | count: 128 0x2cb0| 19 b2 | .. | rice_parameter: 6 0x2cb9.6-0x2cba.2 (0.4) -0x2cb0| b2 b5 21 a6 54 1a| ..!.T.| samples: raw bits 0x2cba.2-0x2d37.6 (125.4) +0x2cb0| b2 b5 21 a6 54 1a| ..!.T.| residuals: raw bits 0x2cba.2-0x2d37.6 (125.4) 0x2cc0|d1 e8 1e 5f 93 09 07 5a 09 24 f4 49 1a 65 35 13|..._...Z.$.I.e5.| * |until 0x2d37.5 (126) | | | | | [16]{}: partition 0x2d37.6-0x2db5 (125.2) | | | count: 128 0x2d30| 51 97 | Q. | rice_parameter: 6 0x2d37.6-0x2d38.2 (0.4) -0x2d30| 97 eb c6 34 15 95 9d 2b| ...4...+| samples: raw bits 0x2d38.2-0x2db5 (124.6) +0x2d30| 97 eb c6 34 15 95 9d 2b| ...4...+| residuals: raw bits 0x2d38.2-0x2db5 (124.6) 0x2d40|bf c8 d8 bd 8c 8e af ca 21 bf 6d e8 e6 fb d4 db|........!.m.....| * |until 0x2db4.7 (125) | | | | | [17]{}: partition 0x2db5-0x2e33 (126) | | | count: 128 0x2db0| 62 | b | rice_parameter: 6 0x2db5-0x2db5.4 (0.4) -0x2db0| 62 2c 14 6b 59 52 e1 fd 3b 9c 6e| b,.kYR..;.n| samples: raw bits 0x2db5.4-0x2e33 (125.4) +0x2db0| 62 2c 14 6b 59 52 e1 fd 3b 9c 6e| b,.kYR..;.n| residuals: raw bits 0x2db5.4-0x2e33 (125.4) 0x2dc0|1b 3d 4c 27 79 87 ec c0 eb 2c be 4c 27 5a 24 9b|.=L'y....,.L'Z$.| * |until 0x2e32.7 (126) | | | | | [18]{}: partition 0x2e33-0x2eb2 (127) | | | count: 128 0x2e30| 66 | f | rice_parameter: 6 0x2e33-0x2e33.4 (0.4) -0x2e30| 66 e9 22 de 46 5c bc 50 e1 0f 31 c9 f8| f.".F\.P..1..| samples: raw bits 0x2e33.4-0x2eb2 (126.4) +0x2e30| 66 e9 22 de 46 5c bc 50 e1 0f 31 c9 f8| f.".F\.P..1..| residuals: raw bits 0x2e33.4-0x2eb2 (126.4) 0x2e40|06 c9 71 78 b2 e1 20 c3 2f f0 6c 39 8a 5f e9 78|..qx.. ./.l9._.x| * |until 0x2eb1.7 (127) | | | | | [19]{}: partition 0x2eb2-0x2f31.1 (127.1) | | | count: 128 0x2eb0| 64 | d | rice_parameter: 6 0x2eb2-0x2eb2.4 (0.4) -0x2eb0| 64 51 48 b0 24 74 bf 0a 71 f0 83 65 2c 99| dQH.$t..q..e,.| samples: raw bits 0x2eb2.4-0x2f31.1 (126.5) +0x2eb0| 64 51 48 b0 24 74 bf 0a 71 f0 83 65 2c 99| dQH.$t..q..e,.| residuals: raw bits 0x2eb2.4-0x2f31.1 (126.5) 0x2ec0|96 f3 82 79 39 e3 35 31 2a c1 02 46 d9 33 9f e7|...y9.51*..F.3..| * |until 0x2f31 (127) | | | | | [20]{}: partition 0x2f31.1-0x2fb1.1 (128) | | | count: 128 0x2f30| b6 | . | rice_parameter: 6 0x2f31.1-0x2f31.5 (0.4) -0x2f30| b6 95 44 93 cc d7 c9 19 d2 0a 89 76 16 df 54| ..D........v..T| samples: raw bits 0x2f31.5-0x2fb1.1 (127.4) +0x2f30| b6 95 44 93 cc d7 c9 19 d2 0a 89 76 16 df 54| ..D........v..T| residuals: raw bits 0x2f31.5-0x2fb1.1 (127.4) 0x2f40|59 65 29 20 12 e6 55 65 a7 05 0a b4 54 68 49 3b|Ye) ..Ue....ThI;| * |until 0x2fb1 (128) | | | | | [21]{}: partition 0x2fb1.1-0x3031.3 (128.2) | | | count: 128 0x2fb0| b6 | . | rice_parameter: 6 0x2fb1.1-0x2fb1.5 (0.4) -0x2fb0| b6 e5 88 91 cb 0a 07 1a a2 11 d8 c2 4f 31 f7| ............O1.| samples: raw bits 0x2fb1.5-0x3031.3 (127.6) +0x2fb0| b6 e5 88 91 cb 0a 07 1a a2 11 d8 c2 4f 31 f7| ............O1.| residuals: raw bits 0x2fb1.5-0x3031.3 (127.6) 0x2fc0|7a 3d 9b f4 2d 3a de 4d 5e 8c 46 c2 25 3b 46 2f|z=..-:.M^.F.%;F/| * |until 0x3031.2 (128) | | | | | [22]{}: partition 0x3031.3-0x30b0.3 (127) | | | count: 128 0x3030| 2d | - | rice_parameter: 6 0x3031.3-0x3031.7 (0.4) -0x3030| 2d 3d 8b d1 4e 22 d9 d2 a9 79 e1 17 6d c6 da| -=..N"...y..m..| samples: raw bits 0x3031.7-0x30b0.3 (126.4) +0x3030| 2d 3d 8b d1 4e 22 d9 d2 a9 79 e1 17 6d c6 da| -=..N"...y..m..| residuals: raw bits 0x3031.7-0x30b0.3 (126.4) 0x3040|e9 d2 ec ec ca 84 ea 2c 5a e6 a1 98 de 7c 17 e7|.......,Z....|..| * |until 0x30b0.2 (127) | | | | | [23]{}: partition 0x30b0.3-0x312e.1 (125.6) | | | count: 128 0x30b0|6d |m | rice_parameter: 6 0x30b0.3-0x30b0.7 (0.4) -0x30b0|6d d0 e0 9e 62 7b 4d f6 43 90 a8 bf 76 83 a1 4e|m...b{M.C...v..N| samples: raw bits 0x30b0.7-0x312e.1 (125.2) +0x30b0|6d d0 e0 9e 62 7b 4d f6 43 90 a8 bf 76 83 a1 4e|m...b{M.C...v..N| residuals: raw bits 0x30b0.7-0x312e.1 (125.2) 0x30c0|4f b2 09 85 25 a2 49 a6 13 88 98 e9 57 34 86 81|O...%.I.....W4..| * |until 0x312e (126) | | | | | [24]{}: partition 0x312e.1-0x31ad.1 (127) | | | count: 128 0x3120| b7 | . | rice_parameter: 6 0x312e.1-0x312e.5 (0.4) -0x3120| b7 7c| .|| samples: raw bits 0x312e.5-0x31ad.1 (126.4) +0x3120| b7 7c| .|| residuals: raw bits 0x312e.5-0x31ad.1 (126.4) 0x3130|8e 45 73 1a e9 60 86 32 9f b2 78 10 88 89 e9 1e|.Es..`.2..x.....| * |until 0x31ad (127) | | | | | [25]{}: partition 0x31ad.1-0x322a.5 (125.4) | | | count: 128 0x31a0| b4 | . | rice_parameter: 6 0x31ad.1-0x31ad.5 (0.4) -0x31a0| b4 38 18| .8.| samples: raw bits 0x31ad.5-0x322a.5 (125) +0x31a0| b4 38 18| .8.| residuals: raw bits 0x31ad.5-0x322a.5 (125) 0x31b0|d4 6b 96 cb 91 26 91 fa 46 f4 b2 da 24 6d 63 5a|.k...&..F...$mcZ| * |until 0x322a.4 (125) | | | | | [26]{}: partition 0x322a.5-0x32a8.2 (125.5) | | | count: 128 0x3220| 13 1a | .. | rice_parameter: 6 0x322a.5-0x322b.1 (0.4) -0x3220| 1a 61 29 b8 8c| .a)..| samples: raw bits 0x322b.1-0x32a8.2 (125.1) +0x3220| 1a 61 29 b8 8c| .a)..| residuals: raw bits 0x322b.1-0x32a8.2 (125.1) 0x3230|2f 53 5d f0 89 6f c8 16 f9 b1 a8 24 9d 70 6d fa|/S]..o.....$.pm.| * |until 0x32a8.1 (126) | | | | | [27]{}: partition 0x32a8.2-0x3327.2 (127) | | | count: 128 0x32a0| 5a | Z | rice_parameter: 6 0x32a8.2-0x32a8.6 (0.4) -0x32a0| 5a 0f 6f f3 84 a8 4f b1| Z.o...O.| samples: raw bits 0x32a8.6-0x3327.2 (126.4) +0x32a0| 5a 0f 6f f3 84 a8 4f b1| Z.o...O.| residuals: raw bits 0x32a8.6-0x3327.2 (126.4) 0x32b0|85 a4 84 63 bb 4a 77 d5 5e 67 d1 2e 5c a8 b0 8a|...c.Jw.^g..\...| * |until 0x3327.1 (127) | | | | | [28]{}: partition 0x3327.2-0x33a6.2 (127) | | | count: 128 0x3320| 5b | [ | rice_parameter: 6 0x3327.2-0x3327.6 (0.4) -0x3320| 5b ab 6c 5c 9b 97 35 18 09| [.l\..5..| samples: raw bits 0x3327.6-0x33a6.2 (126.4) +0x3320| 5b ab 6c 5c 9b 97 35 18 09| [.l\..5..| residuals: raw bits 0x3327.6-0x33a6.2 (126.4) 0x3330|e5 d8 a3 8e e2 ec 4b 08 ba 05 fa 6b d2 84 dd 88|......K....k....| * |until 0x33a6.1 (127) | | | | | [29]{}: partition 0x33a6.2-0x3426.4 (128.2) | | | count: 128 0x33a0| db | . | rice_parameter: 6 0x33a6.2-0x33a6.6 (0.4) -0x33a0| db a3 82 85 fc c9 a2 a1 85 1e| ..........| samples: raw bits 0x33a6.6-0x3426.4 (127.6) +0x33a0| db a3 82 85 fc c9 a2 a1 85 1e| ..........| residuals: raw bits 0x33a6.6-0x3426.4 (127.6) 0x33b0|f1 fd 94 cc 88 85 b0 43 16 72 ab a6 9b 88 ab 3b|.......C.r.....;| * |until 0x3426.3 (128) | | | | | [30]{}: partition 0x3426.4-0x34a6.2 (127.6) | | | count: 128 0x3420| e6 | . | rice_parameter: 6 0x3426.4-0x3427 (0.4) -0x3420| 8c 26 ca 57 44 1a f1 6d 53| .&.WD..mS| samples: raw bits 0x3427-0x34a6.2 (127.2) +0x3420| 8c 26 ca 57 44 1a f1 6d 53| .&.WD..mS| residuals: raw bits 0x3427-0x34a6.2 (127.2) 0x3430|dc 8b 24 c6 2e c0 40 62 c9 f4 c0 5a 84 80 2b 96|..$...@b...Z..+.| * |until 0x34a6.1 (128) | | | | | [31]{}: partition 0x34a6.2-0x3523.7 (125.5) | | | count: 128 0x34a0| 1a | . | rice_parameter: 6 0x34a6.2-0x34a6.6 (0.4) -0x34a0| 1a bc 2f 37 bd 4e 48 a9 48 89| ../7.NH.H.| samples: raw bits 0x34a6.6-0x3523.7 (125.1) +0x34a0| 1a bc 2f 37 bd 4e 48 a9 48 89| ../7.NH.H.| residuals: raw bits 0x34a6.6-0x3523.7 (125.1) 0x34b0|14 ad d5 31 d1 95 30 86 81 ba 42 c3 df 23 69 5c|...1..0...B..#i\| * |until 0x3523.6 (126) | | | | | [1]{}: subframe 0x3523.7-0x4626.6 (4354.7) @@ -375,194 +375,194 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x3528.5-0x3588.6 (96.1) | | | count: 127 0x3520| 2a 27 | *' | rice_parameter: 4 0x3528.5-0x3529.1 (0.4) -0x3520| 27 fe ef 37 9c 63 09| '..7.c.| samples: raw bits 0x3529.1-0x3588.6 (95.5) +0x3520| 27 fe ef 37 9c 63 09| '..7.c.| residuals: raw bits 0x3529.1-0x3588.6 (95.5) 0x3530|4a 94 b6 31 ad 63 18 c6 31 6a 4a 10 8c 67 9d f7|J..1.c..1jJ..g..| * |until 0x3588.5 (96) | | | | | [1]{}: partition 0x3588.6-0x35ec.6 (100) | | | count: 128 0x3580| 4d 04 | M. | rice_parameter: 4 0x3588.6-0x3589.2 (0.4) -0x3580| 04 c4 c4 c4 c4 c4 c4| .......| samples: raw bits 0x3589.2-0x35ec.6 (99.4) +0x3580| 04 c4 c4 c4 c4 c4 c4| .......| residuals: raw bits 0x3589.2-0x35ec.6 (99.4) 0x3590|44 44 4f 9d 3a 64 b9 52 64 5d 65 75 51 fe 6f 58|DDO.:d.Rd]euQ.oX| * |until 0x35ec.5 (100) | | | | | [2]{}: partition 0x35ec.6-0x364e.5 (97.7) | | | count: 128 0x35e0| 69 0c | i. | rice_parameter: 4 0x35ec.6-0x35ed.2 (0.4) -0x35e0| 0c 14 24| ..$| samples: raw bits 0x35ed.2-0x364e.5 (97.3) +0x35e0| 0c 14 24| ..$| residuals: raw bits 0x35ed.2-0x364e.5 (97.3) 0x35f0|41 c6 98 59 44 3d cd 62 d4 94 a5 08 42 10 84 21|A..YD=.b....B..!| * |until 0x364e.4 (98) | | | | | [3]{}: partition 0x364e.5-0x36b2.7 (100.2) | | | count: 128 0x3640| b2 18| ..| rice_parameter: 4 0x364e.5-0x364f.1 (0.4) -0x3640| 18| .| samples: raw bits 0x364f.1-0x36b2.7 (99.6) +0x3640| 18| .| residuals: raw bits 0x364f.1-0x36b2.7 (99.6) 0x3650|34 60 c1 83 05 8b 16 2c 50 91 07 9c 61 65 12 43|4`.....,P...ae.C| * |until 0x36b2.6 (100) | | | | | [4]{}: partition 0x36b2.7-0x3720 (109.1) | | | count: 128 0x36b0| 3a aa | :. | rice_parameter: 5 0x36b2.7-0x36b3.3 (0.4) -0x36b0| aa d4 a7 46 87 fe f9 d7 3c 6f ae 99 e5| ...F......8| samples: raw bits 0x3d40.3-0x3dd1 (144.5) +0x3d40|e8 02 30 c5 4d 30 30 d4 46 e4 6f e7 3e d9 a5 38|..0.M00.F.o.>..8| residuals: raw bits 0x3d40.3-0x3dd1 (144.5) 0x3d50|ec ca 2c 14 0a 0c 83 8f 9d 5c d9 dd 62 90 0a 97|..,......\..b...| * |until 0x3dd0.7 (145) | | | | | [17]{}: partition 0x3dd1-0x3e5e.7 (141.7) | | | count: 128 0x3dd0| 75 | u | rice_parameter: 7 0x3dd1-0x3dd1.4 (0.4) -0x3dd0| 75 d1 d9 98 f0 d2 80 4e 92 1b dc 29 f4 93 a0| u......N...)...| samples: raw bits 0x3dd1.4-0x3e5e.7 (141.3) +0x3dd0| 75 d1 d9 98 f0 d2 80 4e 92 1b dc 29 f4 93 a0| u......N...)...| residuals: raw bits 0x3dd1.4-0x3e5e.7 (141.3) 0x3de0|a4 dc c5 49 9b 28 8f 7b 59 cb d8 42 dd 29 f2 7a|...I.(.{Y..B.).z| * |until 0x3e5e.6 (142) | | | | | [18]{}: partition 0x3e5e.7-0x3eed.2 (142.3) | | | count: 128 0x3e50| 8c ee| ..| rice_parameter: 7 0x3e5e.7-0x3e5f.3 (0.4) -0x3e50| ee| .| samples: raw bits 0x3e5f.3-0x3eed.2 (141.7) +0x3e50| ee| .| residuals: raw bits 0x3e5f.3-0x3eed.2 (141.7) 0x3e60|e1 8f 0e 56 a8 d6 d1 f8 43 6a 08 70 4e d0 c6 57|...V....Cj.pN..W| * |until 0x3eed.1 (142) | | | | | [19]{}: partition 0x3eed.2-0x3f7c.1 (142.7) | | | count: 128 0x3ee0| 1d | . | rice_parameter: 7 0x3eed.2-0x3eed.6 (0.4) -0x3ee0| 1d 97 8a| ...| samples: raw bits 0x3eed.6-0x3f7c.1 (142.3) +0x3ee0| 1d 97 8a| ...| residuals: raw bits 0x3eed.6-0x3f7c.1 (142.3) 0x3ef0|a2 ec 60 1c ae 41 85 54 eb 8e 34 eb 48 44 7b 29|..`..A.T..4.HD{)| * |until 0x3f7c (143) | | | | | [20]{}: partition 0x3f7c.1-0x400a.5 (142.4) | | | count: 128 0x3f70| be | . | rice_parameter: 7 0x3f7c.1-0x3f7c.5 (0.4) -0x3f70| be 1a e7 bb| ....| samples: raw bits 0x3f7c.5-0x400a.5 (142) +0x3f70| be 1a e7 bb| ....| residuals: raw bits 0x3f7c.5-0x400a.5 (142) 0x3f80|be 11 8e 2f 45 56 e2 01 39 c0 d5 75 4f f2 9d ae|.../EV..9..uO...| * |until 0x400a.4 (142) | | | | | [21]{}: partition 0x400a.5-0x4099.6 (143.1) | | | count: 128 0x4000| 53 91 | S. | rice_parameter: 7 0x400a.5-0x400b.1 (0.4) -0x4000| 91 0c d1 be a4| .....| samples: raw bits 0x400b.1-0x4099.6 (142.5) +0x4000| 91 0c d1 be a4| .....| residuals: raw bits 0x400b.1-0x4099.6 (142.5) 0x4010|de 2e ea 26 f5 b3 a8 29 e6 8e 77 d4 bc ea fb 85|...&...)..w.....| * |until 0x4099.5 (143) | | | | | [22]{}: partition 0x4099.6-0x4128.7 (143.1) | | | count: 128 0x4090| b5 da | .. | rice_parameter: 7 0x4099.6-0x409a.2 (0.4) -0x4090| da 9c 6b 0d 21 b4| ..k.!.| samples: raw bits 0x409a.2-0x4128.7 (142.5) +0x4090| da 9c 6b 0d 21 b4| ..k.!.| residuals: raw bits 0x409a.2-0x4128.7 (142.5) 0x40a0|f0 d4 36 53 b4 ed 23 e6 4d 0f 0e 98 a4 15 f0 fa|..6S..#.M.......| * |until 0x4128.6 (143) | | | | | [23]{}: partition 0x4128.7-0x41b6 (141.1) | | | count: 128 0x4120| 86 ec | .. | rice_parameter: 7 0x4128.7-0x4129.3 (0.4) -0x4120| ec 2c fe 55 83 3e fc| .,.U.>.| samples: raw bits 0x4129.3-0x41b6 (140.5) +0x4120| ec 2c fe 55 83 3e fc| .,.U.>.| residuals: raw bits 0x4129.3-0x41b6 (140.5) 0x4130|c8 ef 63 ec 49 09 46 56 44 ef 4a b1 71 90 e1 d3|..c.I.FVD.J.q...| * |until 0x41b5.7 (141) | | | | | [24]{}: partition 0x41b6-0x4244.4 (142.4) | | | count: 128 0x41b0| 72 | r | rice_parameter: 7 0x41b6-0x41b6.4 (0.4) -0x41b0| 72 3c 89 6a ad f6 f5 6b 30 23| r<.j...k0#| samples: raw bits 0x41b6.4-0x4244.4 (142) +0x41b0| 72 3c 89 6a ad f6 f5 6b 30 23| r<.j...k0#| residuals: raw bits 0x41b6.4-0x4244.4 (142) 0x41c0|71 21 6a ae e0 d8 8c 83 3a 7e 6c 46 30 ec a9 53|q!j.....:~lF0..S| * |until 0x4244.3 (142) | | | | | [25]{}: partition 0x4244.4-0x42d4 (143.4) | | | count: 128 0x4240| c7 | . | rice_parameter: 7 0x4244.4-0x4245 (0.4) -0x4240| f1 29 8c e4 41 ff b3 48 32 08 85| .)..A..H2..| samples: raw bits 0x4245-0x42d4 (143) +0x4240| f1 29 8c e4 41 ff b3 48 32 08 85| .)..A..H2..| residuals: raw bits 0x4245-0x42d4 (143) 0x4250|ba 60 63 fc 45 2a 6e f3 eb 3d b2 9f e4 3a 96 01|.`c.E*n..=...:..| * |until 0x42d3.7 (143) | | | | | [26]{}: partition 0x42d4-0x4362.7 (142.7) | | | count: 128 0x42d0| 7b | { | rice_parameter: 7 0x42d4-0x42d4.4 (0.4) -0x42d0| 7b 53 77 13 86 5d 80 ed ae 48 f0 c9| {Sw..]...H..| samples: raw bits 0x42d4.4-0x4362.7 (142.3) +0x42d0| 7b 53 77 13 86 5d 80 ed ae 48 f0 c9| {Sw..]...H..| residuals: raw bits 0x42d4.4-0x4362.7 (142.3) 0x42e0|f1 d3 25 14 29 47 87 6c 56 0e 22 2c c3 ca 58 15|..%.)G.lV.",..X.| * |until 0x4362.6 (143) | | | | | [27]{}: partition 0x4362.7-0x43f1.6 (142.7) | | | count: 128 0x4360| d8 e4 | .. | rice_parameter: 7 0x4362.7-0x4363.3 (0.4) -0x4360| e4 db 88 db f1 93 64 60 0b 19 f2 2b 8e| ......d`...+.| samples: raw bits 0x4363.3-0x43f1.6 (142.3) +0x4360| e4 db 88 db f1 93 64 60 0b 19 f2 2b 8e| ......d`...+.| residuals: raw bits 0x4363.3-0x43f1.6 (142.3) 0x4370|91 e6 8d 3a 9e 92 f0 17 eb 83 98 e9 38 7b 89 92|...:........8{..| * |until 0x43f1.5 (143) | | | | | [28]{}: partition 0x43f1.6-0x447f.3 (141.5) | | | count: 128 0x43f0| c9 d0 | .. | rice_parameter: 7 0x43f1.6-0x43f2.2 (0.4) -0x43f0| d0 1d 62 97 4f f2 e1 23 85 e3 f2 30 a1 90| ..b.O..#...0..| samples: raw bits 0x43f2.2-0x447f.3 (141.1) +0x43f0| d0 1d 62 97 4f f2 e1 23 85 e3 f2 30 a1 90| ..b.O..#...0..| residuals: raw bits 0x43f2.2-0x447f.3 (141.1) 0x4400|13 22 1d 2d d9 01 70 34 ab 2d a0 76 71 26 52 05|.".-..p4.-.vq&R.| * |until 0x447f.2 (142) | | | | | [29]{}: partition 0x447f.3-0x450a.5 (139.2) | | | count: 128 0x4470| cf| .| rice_parameter: 7 0x447f.3-0x447f.7 (0.4) -0x4470| cf| .| samples: raw bits 0x447f.7-0x450a.5 (138.6) +0x4470| cf| .| residuals: raw bits 0x447f.7-0x450a.5 (138.6) 0x4480|a8 fe 6b 3b 0e 42 76 02 37 a9 eb c9 c1 f0 b5 21|..k;.Bv.7......!| * |until 0x450a.4 (139) | | | | | [30]{}: partition 0x450a.5-0x4598.4 (141.7) | | | count: 128 0x4500| bb 8c | .. | rice_parameter: 7 0x450a.5-0x450b.1 (0.4) -0x4500| 8c 8d 7f 2b 32| ...+2| samples: raw bits 0x450b.1-0x4598.4 (141.3) +0x4500| 8c 8d 7f 2b 32| ...+2| residuals: raw bits 0x450b.1-0x4598.4 (141.3) 0x4510|4a 07 c2 b9 a4 b9 eb 72 f8 49 8c 43 03 e4 91 9e|J......r.I.C....| * |until 0x4598.3 (142) | | | | | [31]{}: partition 0x4598.4-0x4626.6 (142.2) | | | count: 128 0x4590| 27 | ' | rice_parameter: 7 0x4598.4-0x4599 (0.4) -0x4590| dc 2f ed f6 8b dc 43| ./....C| samples: raw bits 0x4599-0x4626.6 (141.6) +0x4590| dc 2f ed f6 8b dc 43| ./....C| residuals: raw bits 0x4599-0x4626.6 (141.6) 0x45a0|80 d4 dd c8 36 ab 48 a2 51 a1 03 f6 86 a3 fe 71|....6.H.Q......q| * |until 0x4626.5 (142) | | 0x4620| 40 | @ | byte_align: 0 (valid) 0x4626.6-0x4627 (0.2) @@ -596,97 +596,97 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x4631.6-0x474e.6 (285) | | | count: 255 0x4630| 11 d5 | .. | rice_parameter: 7 0x4631.6-0x4632.2 (0.4) -0x4630| d5 12 05 2e 9e 78 a6 30 4d 22 76 27 d4 56| .....x.0M"v'.V| samples: raw bits 0x4632.2-0x474e.6 (284.4) +0x4630| d5 12 05 2e 9e 78 a6 30 4d 22 76 27 d4 56| .....x.0M"v'.V| residuals: raw bits 0x4632.2-0x474e.6 (284.4) 0x4640|26 5c 73 ca e4 01 96 5f 40 a9 e9 da 14 f1 7b f7|&\s...._@.....{.| * |until 0x474e.5 (285) | | | | | [1]{}: partition 0x474e.6-0x486b.3 (284.5) | | | count: 256 0x4740| 15 ca| ..| rice_parameter: 7 0x474e.6-0x474f.2 (0.4) -0x4740| ca| .| samples: raw bits 0x474f.2-0x486b.3 (284.1) +0x4740| ca| .| residuals: raw bits 0x474f.2-0x486b.3 (284.1) 0x4750|c2 c7 69 c3 0a c6 91 ae 5f 6a 91 a6 e3 6e b1 c2|..i....._j...n..| * |until 0x486b.2 (285) | | | | | [2]{}: partition 0x486b.3-0x4985.4 (282.1) | | | count: 256 0x4860| 4f | O | rice_parameter: 7 0x486b.3-0x486b.7 (0.4) -0x4860| 4f 88 af 76 95| O..v.| samples: raw bits 0x486b.7-0x4985.4 (281.5) +0x4860| 4f 88 af 76 95| O..v.| residuals: raw bits 0x486b.7-0x4985.4 (281.5) 0x4870|8a ce 31 0e 32 04 2a 33 43 8e 36 ef 63 a9 03 43|..1.2.*3C.6.c..C| * |until 0x4985.3 (282) | | | | | [3]{}: partition 0x4985.4-0x4a8e.4 (265) | | | count: 256 0x4980| e6 | . | rice_parameter: 6 0x4985.4-0x4986 (0.4) -0x4980| 18 c6 c1 b5 c0 dd 6c 14 e5 82| ......l...| samples: raw bits 0x4986-0x4a8e.4 (264.4) +0x4980| 18 c6 c1 b5 c0 dd 6c 14 e5 82| ......l...| residuals: raw bits 0x4986-0x4a8e.4 (264.4) 0x4990|02 82 ff c1 a6 e1 b8 b2 36 05 31 a8 2d d7 06 e1|........6.1.-...| * |until 0x4a8e.3 (265) | | | | | [4]{}: partition 0x4a8e.4-0x4ad8.3 (73.7) | | | count: 256 0x4a80| 20 | | rice_parameter: 0 0x4a8e.4-0x4a8f (0.4) -0x4a80| 24| $| samples: raw bits 0x4a8f-0x4ad8.3 (73.3) +0x4a80| 24| $| residuals: raw bits 0x4a8f-0x4ad8.3 (73.3) 0x4a90|93 3f eb 55 45 51 45 45 55 55 bf cc 99 24 24 90|.?.UEQEEUU...$$.| * |until 0x4ad8.2 (74) | | | | | [5]{}: partition 0x4ad8.3-0x4b23.5 (75.2) | | | count: 256 0x4ad0| 20 | | rice_parameter: 0 0x4ad8.3-0x4ad8.7 (0.4) -0x4ad0| 20 aa d7 fc c9 24 92 42| ....$.B| samples: raw bits 0x4ad8.7-0x4b23.5 (74.6) +0x4ad0| 20 aa d7 fc c9 24 92 42| ....$.B| residuals: raw bits 0x4ad8.7-0x4b23.5 (74.6) 0x4ae0|48 48 49 09 24 92 4c ff ad 55 15 45 15 15 55 56|HHI.$.L..U.E..UV| * |until 0x4b23.4 (75) | | | | | [6]{}: partition 0x4b23.5-0x4b6d.7 (74.2) | | | count: 256 0x4b20| 48 10 | H. | rice_parameter: 0 0x4b23.5-0x4b24.1 (0.4) -0x4b20| 10 92 64 cf f6 aa aa 8a 8a 2a 8a ab| ..d......*..| samples: raw bits 0x4b24.1-0x4b6d.7 (73.6) +0x4b20| 10 92 64 cf f6 aa aa 8a 8a 2a 8a ab| ..d......*..| residuals: raw bits 0x4b24.1-0x4b6d.7 (73.6) 0x4b30|5f f3 24 92 49 09 21 21 24 24 92 49 33 fe b5 54|_.$.I.!!$$.I3..T| * |until 0x4b6d.6 (74) | | | | | [7]{}: partition 0x4b6d.7-0x4bb8.6 (74.7) | | | count: 256 0x4b60| a2 0a | .. | rice_parameter: 0 0x4b6d.7-0x4b6e.3 (0.4) -0x4b60| 0a aa| ..| samples: raw bits 0x4b6e.3-0x4bb8.6 (74.3) +0x4b60| 0a aa| ..| residuals: raw bits 0x4b6e.3-0x4bb8.6 (74.3) 0x4b70|ad fe 64 c9 21 24 84 90 90 92 42 49 93 3f da aa|..d.!$....BI.?..| * |until 0x4bb8.5 (75) | | | | | [8]{}: partition 0x4bb8.6-0x4c03 (74.2) | | | count: 256 0x4bb0| 24 08 | $. | rice_parameter: 0 0x4bb8.6-0x4bb9.2 (0.4) -0x4bb0| 08 49 24 92 67 fd 6a| .I$.g.j| samples: raw bits 0x4bb9.2-0x4c03 (73.6) +0x4bb0| 08 49 24 92 67 fd 6a| .I$.g.j| residuals: raw bits 0x4bb9.2-0x4c03 (73.6) 0x4bc0|a8 aa 28 a8 aa aa b7 f9 93 24 84 92 12 42 42 49|..(......$...BBI| * |until 0x4c02.7 (74) | | | | | [9]{}: partition 0x4c03-0x4c4d.5 (74.5) | | | count: 256 0x4c00| 01 | . | rice_parameter: 0 0x4c03-0x4c03.4 (0.4) -0x4c00| 01 54 55 5a ff 99 24 92 48 49 09 09 21| .TUZ..$.HI..!| samples: raw bits 0x4c03.4-0x4c4d.5 (74.1) +0x4c00| 01 54 55 5a ff 99 24 92 48 49 09 09 21| .TUZ..$.HI..!| residuals: raw bits 0x4c03.4-0x4c4d.5 (74.1) 0x4c10|24 92 49 9f f5 aa a2 a8 a2 a2 aa aa df e6 4c 92|$.I...........L.| * |until 0x4c4d.4 (75) | | | | | [10]{}: partition 0x4c4d.5-0x4c98.4 (74.7) | | | count: 256 0x4c40| 48 04 | H. | rice_parameter: 0 0x4c4d.5-0x4c4e.1 (0.4) -0x4c40| 04 84| ..| samples: raw bits 0x4c4e.1-0x4c98.4 (74.3) +0x4c40| 04 84| ..| residuals: raw bits 0x4c4e.1-0x4c98.4 (74.3) 0x4c50|92 12 4c 99 fe d5 55 51 51 45 51 55 6b fe 64 92|..L...UQQEQUk.d.| * |until 0x4c98.3 (75) | | | | | [11]{}: partition 0x4c98.4-0x4ce2.6 (74.2) | | | count: 256 0x4c90| 10 | . | rice_parameter: 0 0x4c98.4-0x4c99 (0.4) -0x4c90| 45 45 55 55 bf cc 99| EEUU...| samples: raw bits 0x4c99-0x4ce2.6 (73.6) +0x4c90| 45 45 55 55 bf cc 99| EEUU...| residuals: raw bits 0x4c99-0x4ce2.6 (73.6) 0x4ca0|24 24 90 92 12 12 48 49 32 67 fb 55 55 45 45 15|$$....HI2g.UUEE.| * |until 0x4ce2.5 (74) | | | | | [12]{}: partition 0x4ce2.6-0x4d2d.5 (74.7) | | | count: 256 0x4ce0| 24 08 | $. | rice_parameter: 0 0x4ce2.6-0x4ce3.2 (0.4) -0x4ce0| 08 48 49 09 24 92 4c ff ad 55 15 45 15| .HI.$.L..U.E.| samples: raw bits 0x4ce3.2-0x4d2d.5 (74.3) +0x4ce0| 08 48 49 09 24 92 4c ff ad 55 15 45 15| .HI.$.L..U.E.| residuals: raw bits 0x4ce3.2-0x4d2d.5 (74.3) 0x4cf0|15 55 56 ff 32 64 90 92 42 48 48 49 21 24 c9 9f|.UV.2d..BHHI!$..| * |until 0x4d2d.4 (75) | | | | | [13]{}: partition 0x4d2d.5-0x4d77.7 (74.2) | | | count: 256 0x4d20| a8 0a | .. | rice_parameter: 0 0x4d2d.5-0x4d2e.1 (0.4) -0x4d20| 0a 8a| ..| samples: raw bits 0x4d2e.1-0x4d77.7 (73.6) +0x4d20| 0a 8a| ..| residuals: raw bits 0x4d2e.1-0x4d77.7 (73.6) 0x4d30|2a 8a ab 5f f3 24 92 49 09 21 21 24 24 92 49 33|*.._.$.I.!!$$.I3| * |until 0x4d77.6 (74) | | | | | [14]{}: partition 0x4d77.7-0x4dc3.1 (75.2) | | | count: 256 0x4d70| 12 04 | .. | rice_parameter: 0 0x4d77.7-0x4d78.3 (0.4) -0x4d70| 04 84 90 90 92 42 49 93| .....BI.| samples: raw bits 0x4d78.3-0x4dc3.1 (74.6) +0x4d70| 04 84 90 90 92 42 49 93| .....BI.| residuals: raw bits 0x4d78.3-0x4dc3.1 (74.6) 0x4d80|3f da aa aa 2a 28 aa 2a ad 7f cc 92 49 24 24 84|?...*(.*....I$$.| * |until 0x4dc3 (75) | | | | | [15]{}: partition 0x4dc3.1-0x4e0d (73.7) | | | count: 256 0x4dc0| 80 | . | rice_parameter: 0 0x4dc3.1-0x4dc3.5 (0.4) -0x4dc0| 80 aa 28 a8 aa aa b7 f9 93 24 84 92 12| ..(......$...| samples: raw bits 0x4dc3.5-0x4e0d (73.3) +0x4dc0| 80 aa 28 a8 aa aa b7 f9 93 24 84 92 12| ..(......$...| residuals: raw bits 0x4dc3.5-0x4e0d (73.3) 0x4dd0|42 42 49 09 26 4c ff 6a aa a8 a8 a2 a8 aa b5 ff|BBI.&L.j........| * |until 0x4e0c.7 (74) | | | | | [1]{}: subframe 0x4e0d-0x541d.6 (1552.6) @@ -705,26 +705,26 @@ $ fq -d flac dv stereo8.flac | | | count: 1023 0x4e00| 09| .| rice_parameter: 7 0x4e0f.6-0x4e10.2 (0.4) 0x4e10|fc |. | -0x4e10|fc 4c c7 2d 79 18 5a 91 08 12 58 f7 9c 39 1e eb|.L.-y.Z...X..9..| samples: raw bits 0x4e10.2-0x5274.6 (1124.4) +0x4e10|fc 4c c7 2d 79 18 5a 91 08 12 58 f7 9c 39 1e eb|.L.-y.Z...X..9..| residuals: raw bits 0x4e10.2-0x5274.6 (1124.4) 0x4e20|83 86 14 51 56 db c9 5e 08 15 63 1a ef 20 a9 4f|...QV..^..c.. .O| * |until 0x5274.5 (1125) | | | | | [1]{}: partition 0x5274.6-0x5302.5 (141.7) | | | count: 1024 0x5270| 00 33 | .3 | rice_parameter: 0 0x5274.6-0x5275.2 (0.4) -0x5270| 33 ff 9f fe 7f fc ff fc ff ff 3f| 3.........?| samples: raw bits 0x5275.2-0x5302.5 (141.3) +0x5270| 33 ff 9f fe 7f fc ff fc ff ff 3f| 3.........?| residuals: raw bits 0x5275.2-0x5302.5 (141.3) 0x5280|ff fe 7f ff ff ff ff ff ff ff ff ff ff ff fb ff|................| * |until 0x5302.4 (142) | | | | | [2]{}: partition 0x5302.5-0x538f.5 (141) | | | count: 1024 0x5300| f8 7f | .. | rice_parameter: 0 0x5302.5-0x5303.1 (0.4) -0x5300| 7f ff ff ff ff ff 7f ff fd ff fe ff fd| .............| samples: raw bits 0x5303.1-0x538f.5 (140.4) +0x5300| 7f ff ff ff ff ff 7f ff fd ff fe ff fd| .............| residuals: raw bits 0x5303.1-0x538f.5 (140.4) 0x5310|ff f7 ff bf fb ff 7f ef fd ff 7f df f7 fd ff 7f|................| * |until 0x538f.4 (141) | | | | | [3]{}: partition 0x538f.5-0x541d.6 (142.1) | | | count: 1024 0x5380| f8| .| rice_parameter: 0 0x538f.5-0x5390.1 (0.4) 0x5390|6f |o | -0x5390|6f fd ff bf ef fb fe ff bf ef fb fd ff 7f df f7|o...............| samples: raw bits 0x5390.1-0x541d.6 (141.5) +0x5390|6f fd ff bf ef fb fe ff bf ef fb fd ff 7f df f7|o...............| residuals: raw bits 0x5390.1-0x541d.6 (141.5) 0x53a0|fd |. | * |until 0x541d.5 (142) | | 0x5410| dc | . | byte_align: 0 (valid) 0x541d.6-0x541e (0.2) @@ -762,97 +762,97 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x542a.5-0x54df.1 (180.4) | | | count: 255 0x5420| 22 77 | "w | rice_parameter: 4 0x542a.5-0x542b.1 (0.4) -0x5420| 77 77 ac e1 2a| ww..*| samples: raw bits 0x542b.1-0x54df.1 (180) +0x5420| 77 77 ac e1 2a| ww..*| residuals: raw bits 0x542b.1-0x54df.1 (180) 0x5430|5b 1c f2 09 28 b3 0d 38 e3 cf 3c f3 cf 3c f3 ce|[...(..8..<..<..| * |until 0x54df (180) | | | | | [1]{}: partition 0x54df.1-0x5594.2 (181.1) | | | count: 256 0x54d0| 22| "| rice_parameter: 4 0x54df.1-0x54df.5 (0.4) -0x54d0| 22| "| samples: raw bits 0x54df.5-0x5594.2 (180.5) +0x54d0| 22| "| residuals: raw bits 0x54df.5-0x5594.2 (180.5) 0x54e0|48 7b 9a b5 25 18 d6 f9 df d1 4d 55 d9 65 b7 5d|H{..%.....MU.e.]| * |until 0x5594.1 (181) | | | | | [2]{}: partition 0x5594.2-0x5649.3 (181.1) | | | count: 256 0x5590| d1 | . | rice_parameter: 4 0x5594.2-0x5594.6 (0.4) -0x5590| d1 54 d1 ee f3 79 c6 14 a6 35 cf 24| .T...y...5.$| samples: raw bits 0x5594.6-0x5649.3 (180.5) +0x5590| d1 54 d1 ee f3 79 c6 14 a6 35 cf 24| .T...y...5.$| residuals: raw bits 0x5594.6-0x5649.3 (180.5) 0x55a0|a2 cc 30 d3 8e 3c f3 cf 3c f3 cf 38 e3 4c 2c a2|..0..<..<..8.L,.| * |until 0x5649.2 (181) | | | | | [3]{}: partition 0x5649.3-0x56fe.4 (181.1) | | | count: 256 0x5640| 48 | H | rice_parameter: 4 0x5649.3-0x5649.7 (0.4) -0x5640| 48 c2 ca 24 87 35 8b| H..$.5.| samples: raw bits 0x5649.7-0x56fe.4 (180.5) +0x5640| 48 c2 ca 24 87 35 8b| H..$.5.| residuals: raw bits 0x5649.7-0x56fe.4 (180.5) 0x5650|4a 13 9d 73 be fd 14 d5 5d 96 db 75 d7 5d 75 d7|J..s....]..u.]u.| * |until 0x56fe.3 (181) | | | | | [4]{}: partition 0x56fe.4-0x57c7.2 (200.6) | | | count: 256 0x56f0| b4 | . | rice_parameter: 4 0x56fe.4-0x56ff (0.4) -0x56f0| 65| e| samples: raw bits 0x56ff-0x57c7.2 (200.2) +0x56f0| 65| e| residuals: raw bits 0x56ff-0x57c7.2 (200.2) 0x5700|75 53 47 fd dd eb 38 4a 96 c7 3c 82 4a 2c c3 4e|uSG...8J..<.J,.N| * |until 0x57c7.1 (201) | | | | | [5]{}: partition 0x57c7.2-0x58d9.5 (274.3) | | | count: 256 0x57c0| 9f | . | rice_parameter: 7 0x57c7.2-0x57c7.6 (0.4) -0x57c0| 9f 83 8d 66 d8 ba c1 66 f0| ...f...f.| samples: raw bits 0x57c7.6-0x58d9.5 (273.7) +0x57c0| 9f 83 8d 66 d8 ba c1 66 f0| ...f...f.| residuals: raw bits 0x57c7.6-0x58d9.5 (273.7) 0x57d0|b9 9f 6f 65 0e cb cd 35 7b b1 29 55 40 cc 45 cf|..oe...5{.)U@.E.| * |until 0x58d9.4 (274) | | | | | [6]{}: partition 0x58d9.5-0x59e5.7 (268.2) | | | count: 256 0x58d0| d3 12 | .. | rice_parameter: 6 0x58d9.5-0x58da.1 (0.4) -0x58d0| 12 55 14 8f 57 4b| .U..WK| samples: raw bits 0x58da.1-0x59e5.7 (267.6) +0x58d0| 12 55 14 8f 57 4b| .U..WK| residuals: raw bits 0x58da.1-0x59e5.7 (267.6) 0x58e0|d7 c4 f1 b9 4c 45 43 b0 e4 6a 30 38 e9 17 87 63|....LEC..j08...c| * |until 0x59e5.6 (268) | | | | | [7]{}: partition 0x59e5.7-0x5af4.7 (271) | | | count: 256 0x59e0| fe c8 | .. | rice_parameter: 6 0x59e5.7-0x59e6.3 (0.4) -0x59e0| c8 07 c7 61 a8 7b 86 78 7a a2| ...a.{.xz.| samples: raw bits 0x59e6.3-0x5af4.7 (270.4) +0x59e0| c8 07 c7 61 a8 7b 86 78 7a a2| ...a.{.xz.| residuals: raw bits 0x59e6.3-0x5af4.7 (270.4) 0x59f0|8a ca f0 35 27 f7 5d 19 99 89 c5 f2 c9 70 58 4f|...5'.]......pXO| * |until 0x5af4.6 (271) | | | | | [8]{}: partition 0x5af4.7-0x5c06 (273.1) | | | count: 256 0x5af0| b6 fa | .. | rice_parameter: 7 0x5af4.7-0x5af5.3 (0.4) -0x5af0| fa 69 fe db 4e eb 45 4c eb d6 89| .i..N.EL...| samples: raw bits 0x5af5.3-0x5c06 (272.5) +0x5af0| fa 69 fe db 4e eb 45 4c eb d6 89| .i..N.EL...| residuals: raw bits 0x5af5.3-0x5c06 (272.5) 0x5b00|8a c9 83 dd 7b b0 13 ea 47 b3 ed 92 f7 df a2 43|....{...G......C| * |until 0x5c05.7 (273) | | | | | [9]{}: partition 0x5c06-0x5d17.4 (273.4) | | | count: 256 0x5c00| 79 | y | rice_parameter: 7 0x5c06-0x5c06.4 (0.4) -0x5c00| 79 86 c6 ed af 9f 6b 01 f0 f2| y.....k...| samples: raw bits 0x5c06.4-0x5d17.4 (273) +0x5c00| 79 86 c6 ed af 9f 6b 01 f0 f2| y.....k...| residuals: raw bits 0x5c06.4-0x5d17.4 (273) 0x5c10|8f 69 bc e2 64 fc ac 9f 8c f9 bb 9b 86 73 3e a9|.i..d........s>.| * |until 0x5d17.3 (273) | | | | | [10]{}: partition 0x5d17.4-0x5e28.2 (272.6) | | | count: 256 0x5d10| c7 | . | rice_parameter: 7 0x5d17.4-0x5d18 (0.4) -0x5d10| fd 7c 25 a7 95 59 4a 97| .|%..YJ.| samples: raw bits 0x5d18-0x5e28.2 (272.2) +0x5d10| fd 7c 25 a7 95 59 4a 97| .|%..YJ.| residuals: raw bits 0x5d18-0x5e28.2 (272.2) 0x5d20|f2 d3 d6 fa ba 23 c3 3e ad 0c f7 a8 4e 90 0a 66|.....#.>....N..f| * |until 0x5e28.1 (273) | | | | | [11]{}: partition 0x5e28.2-0x5f39 (272.6) | | | count: 256 0x5e20| 98 | . | rice_parameter: 6 0x5e28.2-0x5e28.6 (0.4) -0x5e20| 98 58 24 0f 34 06 e1 ca| .X$.4...| samples: raw bits 0x5e28.6-0x5f39 (272.2) +0x5e20| 98 58 24 0f 34 06 e1 ca| .X$.4...| residuals: raw bits 0x5e28.6-0x5f39 (272.2) 0x5e30|d9 dc 21 2b b9 b3 cd 69 12 c2 05 ca 19 c7 c5 72|..!+...i.......r| * |until 0x5f38.7 (273) | | | | | [12]{}: partition 0x5f39-0x604a (273) | | | count: 256 0x5f30| 7f | . | rice_parameter: 7 0x5f39-0x5f39.4 (0.4) -0x5f30| 7f 6e b4 c3 d7 bf e9| .n.....| samples: raw bits 0x5f39.4-0x604a (272.4) +0x5f30| 7f 6e b4 c3 d7 bf e9| .n.....| residuals: raw bits 0x5f39.4-0x604a (272.4) 0x5f40|41 e5 09 8f 99 9f 7d b5 2c ca 9b 72 69 a9 fc 50|A.....}.,..ri..P| * |until 0x6049.7 (273) | | | | | [13]{}: partition 0x604a-0x6159.4 (271.4) | | | count: 256 0x6040| 65 | e | rice_parameter: 6 0x604a-0x604a.4 (0.4) -0x6040| 65 9b cc 6e 27 b1| e..n'.| samples: raw bits 0x604a.4-0x6159.4 (271) +0x6040| 65 9b cc 6e 27 b1| e..n'.| residuals: raw bits 0x604a.4-0x6159.4 (271) 0x6050|10 51 37 b2 20 0b 04 b2 d0 f5 89 7f a4 a3 28 e8|.Q7. .........(.| * |until 0x6159.3 (271) | | | | | [14]{}: partition 0x6159.4-0x626a.1 (272.5) | | | count: 256 0x6150| a7 | . | rice_parameter: 7 0x6159.4-0x615a (0.4) -0x6150| fc 92 f7 a2 c0 4a| .....J| samples: raw bits 0x615a-0x626a.1 (272.1) +0x6150| fc 92 f7 a2 c0 4a| .....J| residuals: raw bits 0x615a-0x626a.1 (272.1) 0x6160|4e b6 2f 20 79 b2 b3 d6 ae ef 54 0b 75 db a1 8a|N./ y.....T.u...| * |until 0x626a (273) | | | | | [15]{}: partition 0x626a.1-0x637b.4 (273.3) | | | count: 256 0x6260| 3e | > | rice_parameter: 7 0x626a.1-0x626a.5 (0.4) -0x6260| 3e 7d 73 cf 76 69| >}s.vi| samples: raw bits 0x626a.5-0x637b.4 (272.7) +0x6260| 3e 7d 73 cf 76 69| >}s.vi| residuals: raw bits 0x626a.5-0x637b.4 (272.7) 0x6270|13 ca e7 4d 30 16 fd b5 4d 7a b8 54 1d e5 43 b9|...M0...Mz.T..C.| * |until 0x637b.3 (273) | | | | | [1]{}: subframe 0x637b.4-0x659f.1 (547.5) @@ -870,13 +870,13 @@ $ fq -d flac dv stereo8.flac | | | [0]{}: partition 0x637e.2-0x6493.3 (277.1) | | | count: 2047 0x6370| 43 | C | rice_parameter: 0 0x637e.2-0x637e.6 (0.4) -0x6370| 43 f7| C.| samples: raw bits 0x637e.6-0x6493.3 (276.5) +0x6370| 43 f7| C.| residuals: raw bits 0x637e.6-0x6493.3 (276.5) 0x6380|fe ff ef ff 7f fd ff fb ff fd ff ff f7 ff ff ff|................| * |until 0x6493.2 (277) | | | | | [1]{}: partition 0x6493.3-0x659f.1 (267.6) | | | count: 2048 0x6490| e1 | . | rice_parameter: 0 0x6493.3-0x6493.7 (0.4) -0x6490| e1 ff f7 ff ff ff fb ff ff ff ef ff ff| .............| samples: raw bits 0x6493.7-0x659f.1 (267.2) +0x6490| e1 ff f7 ff ff ff fb ff ff ff ef ff ff| .............| residuals: raw bits 0x6493.7-0x659f.1 (267.2) 0x64a0|fe ff ff ff df ff ff f7 ff ff fb ff ff fb ff ff|................| * |until 0x659f (268) | | 0x6590| 80| .| byte_align: 0 (valid) 0x659f.1-0x65a0 (0.7) @@ -920,7 +920,7 @@ $ fq -d flac dv stereo8.flac | | | count: 1569 0x6bc0| 00| .| rice_parameter: 1 0x6bcf.6-0x6bd0.2 (0.4) 0x6bd0|6a |j | -0x6bd0|6a aa aa aa aa aa aa aa aa aa ba aa aa aa aa aa|j...............| samples: raw bits 0x6bd0.2-0x6d5a.3 (394.1) +0x6bd0|6a aa aa aa aa aa aa aa aa aa ba aa aa aa aa aa|j...............| residuals: raw bits 0x6bd0.2-0x6d5a.3 (394.1) 0x6be0|aa aa aa aa aa aa aa ae aa aa aa aa aa aa aa aa|................| * |until 0x6d5a.2 (395) | | 0x6d50| 40 | @ | byte_align: 0 (valid) 0x6d5a.3-0x6d5b (0.5) diff --git a/format/format.go b/format/format.go index b87fa4b21..bb4cef9ea 100644 --- a/format/format.go +++ b/format/format.go @@ -199,7 +199,8 @@ type CAFF_In struct { type FLAC_Frame_In struct { SamplesBuf []byte - BitsPerSample int `doc:"Bits per sample"` + BitsPerSample int `doc:"Bits per sample"` + SampleDetails bool `doc:"Decode more sample details like residuals etc"` } type FLAC_Frame_Out struct { diff --git a/format/matroska/testdata/flac.fqtest b/format/matroska/testdata/flac.fqtest index 1ef8d4ad7..0f8586dd1 100644 --- a/format/matroska/testdata/flac.fqtest +++ b/format/matroska/testdata/flac.fqtest @@ -419,7 +419,7 @@ $ fq -d matroska dv flac.mkv | | | [0]{}: partition 0x277.1-0x4ad.1 (566) | | | count: 2199 0x270| 01 | . | rice_parameter: 0 0x277.1-0x277.5 (0.4) -0x270| 01 27 33 32 79 32 64 e6 66| .'32y2d.f| samples: raw bits 0x277.5-0x4ad.1 (565.4) +0x270| 01 27 33 32 79 32 64 e6 66| .'32y2d.f| residuals: raw bits 0x277.5-0x4ad.1 (565.4) 0x280|73 24 d3 38 7f 99 27 99 3c 87 e6 66 49 32 72 49|s$.8..'.<..fI2rI| * |until 0x4ad (566) | | | | | [1]{}: subframe 0x4ad.1-0x4b0.2 (3.1) diff --git a/format/matroska/testdata/sweep-with-DC.mkvmerge13.mka.fqtest b/format/matroska/testdata/sweep-with-DC.mkvmerge13.mka.fqtest index 8aad5d82f..69a9d0b12 100644 --- a/format/matroska/testdata/sweep-with-DC.mkvmerge13.mka.fqtest +++ b/format/matroska/testdata/sweep-with-DC.mkvmerge13.mka.fqtest @@ -743,13 +743,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x16b6.6-0x1727.1 (112.3) | | | count: 895 0x16b0| 04 3f | .? | rice_parameter: 0 0x16b6.6-0x16b7.2 (0.4) -0x16b0| 3f ff ff ff ff ff ff ff ff| ?........| samples: raw bits 0x16b7.2-0x1727.1 (111.7) +0x16b0| 3f ff ff ff ff ff ff ff ff| ?........| residuals: raw bits 0x16b7.2-0x1727.1 (111.7) 0x16c0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1727 (112) | | | | | [1]{}: partition 0x1727.1-0x1798 (112.7) | | | count: 896 0x1720| 87 | . | rice_parameter: 0 0x1727.1-0x1727.5 (0.4) -0x1720| 87 ff ff ff ff ff fe ff ff| .........| samples: raw bits 0x1727.5-0x1798 (112.3) +0x1720| 87 ff ff ff ff ff fe ff ff| .........| residuals: raw bits 0x1727.5-0x1798 (112.3) 0x1730|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1797.7 (113) | | | | | byte_align: 0 (valid) 0x1798-0x1798 (0) @@ -785,13 +785,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x17a5.6-0x1816.4 (112.6) | | | count: 895 0x17a0| 04 3f | .? | rice_parameter: 0 0x17a5.6-0x17a6.2 (0.4) -0x17a0| 3f ff ff ff ff ff ff ff ff ff| ?.........| samples: raw bits 0x17a6.2-0x1816.4 (112.2) +0x17a0| 3f ff ff ff ff ff ff ff ff ff| ?.........| residuals: raw bits 0x17a6.2-0x1816.4 (112.2) 0x17b0|ff ff ff ff ff ff ff ff ff ff ff f3 ff ff ff ff|................| * |until 0x1816.3 (113) | | | | | [1]{}: partition 0x1816.4-0x1887.3 (112.7) | | | count: 896 0x1810| f0 | . | rice_parameter: 0 0x1816.4-0x1817 (0.4) -0x1810| ff ff ff ff ff ff ff ff ff| .........| samples: raw bits 0x1817-0x1887.3 (112.3) +0x1810| ff ff ff ff ff ff ff ff ff| .........| residuals: raw bits 0x1817-0x1887.3 (112.3) 0x1820|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1887.2 (113) | | 0x1880| e0 | . | byte_align: 0 (valid) 0x1887.3-0x1888 (0.5) @@ -827,13 +827,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x1895.6-0x1906.3 (112.5) | | | count: 895 0x1890| 04 3f | .? | rice_parameter: 0 0x1895.6-0x1896.2 (0.4) -0x1890| 3f ff ff ff ff ff ff ff ff ff| ?.........| samples: raw bits 0x1896.2-0x1906.3 (112.1) +0x1890| 3f ff ff ff ff ff ff ff ff ff| ?.........| residuals: raw bits 0x1896.2-0x1906.3 (112.1) 0x18a0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1906.2 (113) | | | | | [1]{}: partition 0x1906.3-0x1977.1 (112.6) | | | count: 896 0x1900| e1 | . | rice_parameter: 0 0x1906.3-0x1906.7 (0.4) -0x1900| e1 ff ff ff ff ff ff ff ff ff| ..........| samples: raw bits 0x1906.7-0x1977.1 (112.2) +0x1900| e1 ff ff ff ff ff ff ff ff ff| ..........| residuals: raw bits 0x1906.7-0x1977.1 (112.2) 0x1910|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1977 (113) | | 0x1970| 80 | . | byte_align: 0 (valid) 0x1977.1-0x1978 (0.7) @@ -900,14 +900,14 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x199e.6-0x1a0f.5 (112.7) | | | count: 895 0x1990| 04 3f| .?| rice_parameter: 0 0x199e.6-0x199f.2 (0.4) -0x1990| 3f| ?| samples: raw bits 0x199f.2-0x1a0f.5 (112.3) +0x1990| 3f| ?| residuals: raw bits 0x199f.2-0x1a0f.5 (112.3) 0x19a0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1a0f.4 (113) | | | | | [1]{}: partition 0x1a0f.5-0x1a80.2 (112.5) | | | count: 896 0x1a00| f8| .| rice_parameter: 0 0x1a0f.5-0x1a10.1 (0.4) 0x1a10|7f |. | -0x1a10|7f ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| samples: raw bits 0x1a10.1-0x1a80.2 (112.1) +0x1a10|7f ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| residuals: raw bits 0x1a10.1-0x1a80.2 (112.1) 0x1a20|ff |. | * |until 0x1a80.1 (113) | | 0x1a80|c0 |. | byte_align: 0 (valid) 0x1a80.2-0x1a81 (0.6) @@ -942,13 +942,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x1a8e.6-0x1aff.4 (112.6) | | | count: 895 0x1a80| 04 3f| .?| rice_parameter: 0 0x1a8e.6-0x1a8f.2 (0.4) -0x1a80| 3f| ?| samples: raw bits 0x1a8f.2-0x1aff.4 (112.2) +0x1a80| 3f| ?| residuals: raw bits 0x1a8f.2-0x1aff.4 (112.2) 0x1a90|ff ff ff ff ff ff ff ff ff 7f ff ff ff ff ff ff|................| * |until 0x1aff.3 (113) | | | | | [1]{}: partition 0x1aff.4-0x1b70.2 (112.6) | | | count: 896 0x1af0| f0| .| rice_parameter: 0 0x1aff.4-0x1b00 (0.4) -0x1b00|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| samples: raw bits 0x1b00-0x1b70.2 (112.2) +0x1b00|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| residuals: raw bits 0x1b00-0x1b70.2 (112.2) * |until 0x1b70.1 (113) | | 0x1b70|c0 |. | byte_align: 0 (valid) 0x1b70.2-0x1b71 (0.6) 0x1b70| 4d 53 | MS | footer_crc: "4d53" (raw bits) (valid) 0x1b71-0x1b73 (2) @@ -982,13 +982,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x1b7e.6-0x1bef.3 (112.5) | | | count: 895 0x1b70| 04 3f| .?| rice_parameter: 0 0x1b7e.6-0x1b7f.2 (0.4) -0x1b70| 3f| ?| samples: raw bits 0x1b7f.2-0x1bef.3 (112.1) +0x1b70| 3f| ?| residuals: raw bits 0x1b7f.2-0x1bef.3 (112.1) 0x1b80|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1bef.2 (113) | | | | | [1]{}: partition 0x1bef.3-0x1c60.3 (113) | | | count: 896 0x1be0| e1| .| rice_parameter: 0 0x1bef.3-0x1bef.7 (0.4) -0x1be0| e1| .| samples: raw bits 0x1bef.7-0x1c60.3 (112.4) +0x1be0| e1| .| residuals: raw bits 0x1bef.7-0x1c60.3 (112.4) 0x1bf0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1c60.2 (113) | | 0x1c60|e0 |. | byte_align: 0 (valid) 0x1c60.3-0x1c61 (0.5) @@ -1023,14 +1023,14 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x1c6e.6-0x1cdf.6 (113) | | | count: 895 0x1c60| 04 3f| .?| rice_parameter: 0 0x1c6e.6-0x1c6f.2 (0.4) -0x1c60| 3f| ?| samples: raw bits 0x1c6f.2-0x1cdf.6 (112.4) +0x1c60| 3f| ?| residuals: raw bits 0x1c6f.2-0x1cdf.6 (112.4) 0x1c70|ff ff f9 ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1cdf.5 (113) | | | | | [1]{}: partition 0x1cdf.6-0x1d50.7 (113.1) | | | count: 896 0x1cd0| fc| .| rice_parameter: 0 0x1cdf.6-0x1ce0.2 (0.4) 0x1ce0|3f |? | -0x1ce0|3f ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|?...............| samples: raw bits 0x1ce0.2-0x1d50.7 (112.5) +0x1ce0|3f ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|?...............| residuals: raw bits 0x1ce0.2-0x1d50.7 (112.5) 0x1cf0|ff ff fe ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1d50.6 (113) | | 0x1d50|fe |. | byte_align: 0 (valid) 0x1d50.7-0x1d51 (0.1) @@ -1065,14 +1065,14 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x1d5e.6-0x1dcf.6 (113) | | | count: 895 0x1d50| 04 3f| .?| rice_parameter: 0 0x1d5e.6-0x1d5f.2 (0.4) -0x1d50| 3f| ?| samples: raw bits 0x1d5f.2-0x1dcf.6 (112.4) +0x1d50| 3f| ?| residuals: raw bits 0x1d5f.2-0x1dcf.6 (112.4) 0x1d60|ff ff ff ff ff ff ff fe 7f ff ff ff ff ff ff ff|................| * |until 0x1dcf.5 (113) | | | | | [1]{}: partition 0x1dcf.6-0x1e40.5 (112.7) | | | count: 896 0x1dc0| fc| .| rice_parameter: 0 0x1dcf.6-0x1dd0.2 (0.4) 0x1dd0|3f |? | -0x1dd0|3f ff ff ff ff ff ff ff ff fe ff ff ff ff ff ff|?...............| samples: raw bits 0x1dd0.2-0x1e40.5 (112.3) +0x1dd0|3f ff ff ff ff ff ff ff ff fe ff ff ff ff ff ff|?...............| residuals: raw bits 0x1dd0.2-0x1e40.5 (112.3) 0x1de0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff fb|................| * |until 0x1e40.4 (113) | | 0x1e40|f8 |. | byte_align: 0 (valid) 0x1e40.5-0x1e41 (0.3) @@ -1107,13 +1107,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x1e4e.6-0x1ec0.1 (113.3) | | | count: 895 0x1e40| 04 3f| .?| rice_parameter: 0 0x1e4e.6-0x1e4f.2 (0.4) -0x1e40| 3f| ?| samples: raw bits 0x1e4f.2-0x1ec0.1 (112.7) +0x1e40| 3f| ?| residuals: raw bits 0x1e4f.2-0x1ec0.1 (112.7) 0x1e50|ff ff ff ff ff ff ff ff ff ff 3f ff ff ff ff ff|..........?.....| * |until 0x1ec0 (113) | | | | | [1]{}: partition 0x1ec0.1-0x1f31.1 (113) | | | count: 896 0x1ec0|87 |. | rice_parameter: 0 0x1ec0.1-0x1ec0.5 (0.4) -0x1ec0|87 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| samples: raw bits 0x1ec0.5-0x1f31.1 (112.4) +0x1ec0|87 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| residuals: raw bits 0x1ec0.5-0x1f31.1 (112.4) 0x1ed0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x1f31 (113) | | 0x1f30| 80 | . | byte_align: 0 (valid) 0x1f31.1-0x1f32 (0.7) @@ -1149,13 +1149,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | count: 895 0x1f30| 04| .| rice_parameter: 0 0x1f3f.6-0x1f40.2 (0.4) 0x1f40|3f |? | -0x1f40|3f ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|?...............| samples: raw bits 0x1f40.2-0x1fb1.2 (113) +0x1f40|3f ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|?...............| residuals: raw bits 0x1f40.2-0x1fb1.2 (113) 0x1f50|ff ff ff ff fb ff ff ff ff ff ff ff e7 ff ff ff|................| * |until 0x1fb1.1 (113) | | | | | [1]{}: partition 0x1fb1.2-0x2022.5 (113.3) | | | count: 896 0x1fb0| c3 | . | rice_parameter: 0 0x1fb1.2-0x1fb1.6 (0.4) -0x1fb0| c3 ff ff ff ff f3 ff ff ff ff ff ff ff ff ff| ...............| samples: raw bits 0x1fb1.6-0x2022.5 (112.7) +0x1fb0| c3 ff ff ff ff f3 ff ff ff ff ff ff ff ff ff| ...............| residuals: raw bits 0x1fb1.6-0x2022.5 (112.7) 0x1fc0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff fe|................| * |until 0x2022.4 (113) | | 0x2020| f8 | . | byte_align: 0 (valid) 0x2022.5-0x2023 (0.3) @@ -1190,13 +1190,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2030.6-0x20a1.6 (113) | | | count: 895 0x2030|04 3f |.? | rice_parameter: 0 0x2030.6-0x2031.2 (0.4) -0x2030| 3f ff ff ff ff ff ff ff ff fe ff ff ff ff ff| ?..............| samples: raw bits 0x2031.2-0x20a1.6 (112.4) +0x2030| 3f ff ff ff ff ff ff ff ff fe ff ff ff ff ff| ?..............| residuals: raw bits 0x2031.2-0x20a1.6 (112.4) 0x2040|ff ff ff ff ff ff ff ff ff ff ff 7f ff ff ff ff|................| * |until 0x20a1.5 (113) | | | | | [1]{}: partition 0x20a1.6-0x2113.4 (113.6) | | | count: 896 0x20a0| fc 3f | .? | rice_parameter: 0 0x20a1.6-0x20a2.2 (0.4) -0x20a0| 3f ff ff e7 ff ff ff ff ff ff ff ff ff ff| ?.............| samples: raw bits 0x20a2.2-0x2113.4 (113.2) +0x20a0| 3f ff ff e7 ff ff ff ff ff ff ff ff ff ff| ?.............| residuals: raw bits 0x20a2.2-0x2113.4 (113.2) 0x20b0|ff ff ff ff fe 7f ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2113.3 (114) | | 0x2110| f0 | . | byte_align: 0 (valid) 0x2113.4-0x2114 (0.4) @@ -1253,13 +1253,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2130.6-0x21a1.7 (113.1) | | | count: 895 0x2130|04 3f |.? | rice_parameter: 0 0x2130.6-0x2131.2 (0.4) -0x2130| 3f ff ff ff ff ff ff ff ff ff fe ff ff ff ff| ?..............| samples: raw bits 0x2131.2-0x21a1.7 (112.5) +0x2130| 3f ff ff ff ff ff ff ff ff ff fe ff ff ff ff| ?..............| residuals: raw bits 0x2131.2-0x21a1.7 (112.5) 0x2140|ff ff ff ff ff ff ff ff ff ff ff ff ff ef ff ff|................| * |until 0x21a1.6 (113) | | | | | [1]{}: partition 0x21a1.7-0x2213.7 (114) | | | count: 896 0x21a0| fe 1f | .. | rice_parameter: 0 0x21a1.7-0x21a2.3 (0.4) -0x21a0| 1f ff ff ff ff ff ff ff ff ff ff ff ff ff| ..............| samples: raw bits 0x21a2.3-0x2213.7 (113.4) +0x21a0| 1f ff ff ff ff ff ff ff ff ff ff ff ff ff| ..............| residuals: raw bits 0x21a2.3-0x2213.7 (113.4) 0x21b0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2213.6 (114) | | 0x2210| fe | . | byte_align: 0 (valid) 0x2213.7-0x2214 (0.1) @@ -1295,13 +1295,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2221.6-0x2293.1 (113.3) | | | count: 895 0x2220| 04 3f | .? | rice_parameter: 0 0x2221.6-0x2222.2 (0.4) -0x2220| 3f ff ff ff ff ff ff ff ff ff ff ff ff fc| ?.............| samples: raw bits 0x2222.2-0x2293.1 (112.7) +0x2220| 3f ff ff ff ff ff ff ff ff ff ff ff ff fc| ?.............| residuals: raw bits 0x2222.2-0x2293.1 (112.7) 0x2230|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2293 (113) | | | | | [1]{}: partition 0x2293.1-0x2304.5 (113.4) | | | count: 896 0x2290| 87 | . | rice_parameter: 0 0x2293.1-0x2293.5 (0.4) -0x2290| 87 ff ff ff ff ff ff ff ff ff ff ff ff| .............| samples: raw bits 0x2293.5-0x2304.5 (113) +0x2290| 87 ff ff ff ff ff ff ff ff ff ff ff ff| .............| residuals: raw bits 0x2293.5-0x2304.5 (113) 0x22a0|bf ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2304.4 (113) | | 0x2300| f8 | . | byte_align: 0 (valid) 0x2304.5-0x2305 (0.3) @@ -1336,13 +1336,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2312.6-0x2384.4 (113.6) | | | count: 895 0x2310| 04 39 | .9 | rice_parameter: 0 0x2312.6-0x2313.2 (0.4) -0x2310| 39 ff ff ff ff ff ff ff ff ff ff cf ff| 9............| samples: raw bits 0x2313.2-0x2384.4 (113.2) +0x2310| 39 ff ff ff ff ff ff ff ff ff ff cf ff| 9............| residuals: raw bits 0x2313.2-0x2384.4 (113.2) 0x2320|ff ff ff ff ff ff ff ff ff 9f ff ff ff ff ff ff|................| * |until 0x2384.3 (114) | | | | | [1]{}: partition 0x2384.4-0x23f6.2 (113.6) | | | count: 896 0x2380| f0 | . | rice_parameter: 0 0x2384.4-0x2385 (0.4) -0x2380| ff ff f7 ff ff ff ff ff ff ff ff| ...........| samples: raw bits 0x2385-0x23f6.2 (113.2) +0x2380| ff ff f7 ff ff ff ff ff ff ff ff| ...........| residuals: raw bits 0x2385-0x23f6.2 (113.2) 0x2390|ff ff fd ff ff ff ff ff ff ff ff ff ff 7f ff ff|................| * |until 0x23f6.1 (114) | | 0x23f0| c0 | . | byte_align: 0 (valid) 0x23f6.2-0x23f7 (0.6) @@ -1377,13 +1377,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2404.6-0x2477.3 (114.5) | | | count: 895 0x2400| 04 3f | .? | rice_parameter: 0 0x2404.6-0x2405.2 (0.4) -0x2400| 3f ff ff ff ff ff ff ff ff ff ff| ?..........| samples: raw bits 0x2405.2-0x2477.3 (114.1) +0x2400| 3f ff ff ff ff ff ff ff ff ff ff| ?..........| residuals: raw bits 0x2405.2-0x2477.3 (114.1) 0x2410|ff ff ff ff 9f ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2477.2 (115) | | | | | [1]{}: partition 0x2477.3-0x24e9 (113.5) | | | count: 896 0x2470| e1 | . | rice_parameter: 0 0x2477.3-0x2477.7 (0.4) -0x2470| e1 ff ff ff ff ff ff ff ff| .........| samples: raw bits 0x2477.7-0x24e9 (113.1) +0x2470| e1 ff ff ff ff ff ff ff ff| .........| residuals: raw bits 0x2477.7-0x24e9 (113.1) 0x2480|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x24e8.7 (114) | | | | | byte_align: 0 (valid) 0x24e9-0x24e9 (0) @@ -1418,13 +1418,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x24f6.6-0x2569 (114.2) | | | count: 895 0x24f0| 04 3f | .? | rice_parameter: 0 0x24f6.6-0x24f7.2 (0.4) -0x24f0| 3f ff ff ff ff ff ff ef ff| ?........| samples: raw bits 0x24f7.2-0x2569 (113.6) +0x24f0| 3f ff ff ff ff ff ff ef ff| ?........| residuals: raw bits 0x24f7.2-0x2569 (113.6) 0x2500|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2568.7 (114) | | | | | [1]{}: partition 0x2569-0x25db.1 (114.1) | | | count: 896 0x2560| 0f | . | rice_parameter: 0 0x2569-0x2569.4 (0.4) -0x2560| 0f ff ff ff ff fc ff| .......| samples: raw bits 0x2569.4-0x25db.1 (113.5) +0x2560| 0f ff ff ff ff fc ff| .......| residuals: raw bits 0x2569.4-0x25db.1 (113.5) 0x2570|ff ff ff ff ff ff ff ff cf ff ff ff ff ff ff ff|................| * |until 0x25db (114) | | 0x25d0| 80 | . | byte_align: 0 (valid) 0x25db.1-0x25dc (0.7) @@ -1459,13 +1459,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x25e9.6-0x265b.4 (113.6) | | | count: 895 0x25e0| 04 3f | .? | rice_parameter: 0 0x25e9.6-0x25ea.2 (0.4) -0x25e0| 3f ff ff ff 7f ff| ?.....| samples: raw bits 0x25ea.2-0x265b.4 (113.2) +0x25e0| 3f ff ff ff 7f ff| ?.....| residuals: raw bits 0x25ea.2-0x265b.4 (113.2) 0x25f0|ff ff ff ff ff f7 ff ff ff ff ff ff ff bf ff ff|................| * |until 0x265b.3 (114) | | | | | [1]{}: partition 0x265b.4-0x26ce.4 (115) | | | count: 896 0x2650| f0 | . | rice_parameter: 0 0x265b.4-0x265c (0.4) -0x2650| ff ff ff fc| ....| samples: raw bits 0x265c-0x26ce.4 (114.4) +0x2650| ff ff ff fc| ....| residuals: raw bits 0x265c-0x26ce.4 (114.4) 0x2660|ff ff ff ff ff ff ff ff cf ff ff ff ff ff ff ff|................| * |until 0x26ce.3 (115) | | 0x26c0| f0 | . | byte_align: 0 (valid) 0x26ce.4-0x26cf (0.4) @@ -1501,13 +1501,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x26dc.6-0x274e.6 (114) | | | count: 895 0x26d0| 04 3f | .? | rice_parameter: 0 0x26dc.6-0x26dd.2 (0.4) -0x26d0| 3f ff ff| ?..| samples: raw bits 0x26dd.2-0x274e.6 (113.4) +0x26d0| 3f ff ff| ?..| residuals: raw bits 0x26dd.2-0x274e.6 (113.4) 0x26e0|ff ff ff ff ff f7 ff ff ff ff ff ff ff ff ff ff|................| * |until 0x274e.5 (114) | | | | | [1]{}: partition 0x274e.6-0x27c2.2 (115.4) | | | count: 896 0x2740| fc 3f| .?| rice_parameter: 0 0x274e.6-0x274f.2 (0.4) -0x2740| 3f| ?| samples: raw bits 0x274f.2-0x27c2.2 (115) +0x2740| 3f| ?| residuals: raw bits 0x274f.2-0x27c2.2 (115) 0x2750|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x27c2.1 (115) | | 0x27c0| c0 | . | byte_align: 0 (valid) 0x27c2.2-0x27c3 (0.6) @@ -1542,13 +1542,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x27d0.6-0x2842.6 (114) | | | count: 895 0x27d0|04 3f |.? | rice_parameter: 0 0x27d0.6-0x27d1.2 (0.4) -0x27d0| 3f f3 ff ff ff ff ff ff ff ff ff ff ff 9f ff| ?..............| samples: raw bits 0x27d1.2-0x2842.6 (113.4) +0x27d0| 3f f3 ff ff ff ff ff ff ff ff ff ff ff 9f ff| ?..............| residuals: raw bits 0x27d1.2-0x2842.6 (113.4) 0x27e0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2842.5 (114) | | | | | [1]{}: partition 0x2842.6-0x28b5.6 (115) | | | count: 896 0x2840| fc 2f | ./ | rice_parameter: 0 0x2842.6-0x2843.2 (0.4) -0x2840| 2f ff ff ff ff ff fe ff ff ff ff ff ff| /............| samples: raw bits 0x2843.2-0x28b5.6 (114.4) +0x2840| 2f ff ff ff ff ff fe ff ff ff ff ff ff| /............| residuals: raw bits 0x2843.2-0x28b5.6 (114.4) 0x2850|fd ff ff ff ff ff ff ff f7 ff ff ff ff ff ff ff|................| * |until 0x28b5.5 (115) | | 0x28b0| 3c | < | byte_align: 0 (valid) 0x28b5.6-0x28b6 (0.2) @@ -1600,13 +1600,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x28cd.6-0x2940.6 (115) | | | count: 895 0x28c0| 04 3f | .? | rice_parameter: 0 0x28cd.6-0x28ce.2 (0.4) -0x28c0| 3f ff| ?.| samples: raw bits 0x28ce.2-0x2940.6 (114.4) +0x28c0| 3f ff| ?.| residuals: raw bits 0x28ce.2-0x2940.6 (114.4) 0x28d0|ff ff ff 9f ff ff ff ff fe 7f ff ff ff ff f9 ff|................| * |until 0x2940.5 (115) | | | | | [1]{}: partition 0x2940.6-0x29b2.7 (114.1) | | | count: 896 0x2940|fc 3f |.? | rice_parameter: 0 0x2940.6-0x2941.2 (0.4) -0x2940| 3f ff ff ff ff df ff ff ff ff ff f7 ff ff ff| ?..............| samples: raw bits 0x2941.2-0x29b2.7 (113.5) +0x2940| 3f ff ff ff ff df ff ff ff ff ff f7 ff ff ff| ?..............| residuals: raw bits 0x2941.2-0x29b2.7 (113.5) 0x2950|ff ff df ff ff ff ff fd ff ff ff ff ff bf ff ff|................| * |until 0x29b2.6 (114) | | 0x29b0| fe | . | byte_align: 0 (valid) 0x29b2.7-0x29b3 (0.1) @@ -1641,13 +1641,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x29c0.6-0x2a35.3 (116.5) | | | count: 895 0x29c0|04 3f |.? | rice_parameter: 0 0x29c0.6-0x29c1.2 (0.4) -0x29c0| 3f ff ff ff ff ff f9 ff ff ff ff ff ff ff ff| ?..............| samples: raw bits 0x29c1.2-0x2a35.3 (116.1) +0x29c0| 3f ff ff ff ff ff f9 ff ff ff ff ff ff ff ff| ?..............| residuals: raw bits 0x29c1.2-0x2a35.3 (116.1) 0x29d0|fe 7f ff ff ff ff ff ff 9f ff ff ff ff ff f9 ff|................| * |until 0x2a35.2 (117) | | | | | [1]{}: partition 0x2a35.3-0x2aa7.7 (114.4) | | | count: 896 0x2a30| e1 | . | rice_parameter: 0 0x2a35.3-0x2a35.7 (0.4) -0x2a30| e1 ff ff ff ff ff ff ff ff ff ff| ...........| samples: raw bits 0x2a35.7-0x2aa7.7 (114) +0x2a30| e1 ff ff ff ff ff ff ff ff ff ff| ...........| residuals: raw bits 0x2a35.7-0x2aa7.7 (114) 0x2a40|ff ff ff ff ff ff ff ff ff ff ff ef ff ff ff ff|................| * |until 0x2aa7.6 (114) | | 0x2aa0| fe | . | byte_align: 0 (valid) 0x2aa7.7-0x2aa8 (0.1) @@ -1683,13 +1683,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2ab5.6-0x2b29.3 (115.5) | | | count: 895 0x2ab0| 04 3f | .? | rice_parameter: 0 0x2ab5.6-0x2ab6.2 (0.4) -0x2ab0| 3f ff bf ff ff ff ff ff ff ff| ?.........| samples: raw bits 0x2ab6.2-0x2b29.3 (115.1) +0x2ab0| 3f ff bf ff ff ff ff ff ff ff| ?.........| residuals: raw bits 0x2ab6.2-0x2b29.3 (115.1) 0x2ac0|ff 7f ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2b29.2 (116) | | | | | [1]{}: partition 0x2b29.3-0x2b9c.5 (115.2) | | | count: 896 0x2b20| e0 | . | rice_parameter: 0 0x2b29.3-0x2b29.7 (0.4) -0x2b20| e0 7f ff ff ff fe 7f| .......| samples: raw bits 0x2b29.7-0x2b9c.5 (114.6) +0x2b20| e0 7f ff ff ff fe 7f| .......| residuals: raw bits 0x2b29.7-0x2b9c.5 (114.6) 0x2b30|ff ff ff ff 9f ff ff ff ff fe 7f ff ff ff ff ff|................| * |until 0x2b9c.4 (115) | | 0x2b90| f8 | . | byte_align: 0 (valid) 0x2b9c.5-0x2b9d (0.3) @@ -1757,13 +1757,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2bc4.6-0x2c37.2 (114.4) | | | count: 895 0x2bc0| 04 3f | .? | rice_parameter: 0 0x2bc4.6-0x2bc5.2 (0.4) -0x2bc0| 3f ff ff ff ef ff ff ff fb ff ff| ?..........| samples: raw bits 0x2bc5.2-0x2c37.2 (114) +0x2bc0| 3f ff ff ff ef ff ff ff fb ff ff| ?..........| residuals: raw bits 0x2bc5.2-0x2c37.2 (114) 0x2bd0|ff ff 7f ff ff ff df ff ff ff fd ff ff ff ff ef|................| * |until 0x2c37.1 (114) | | | | | [1]{}: partition 0x2c37.2-0x2cac.3 (117.1) | | | count: 896 0x2c30| c3 | . | rice_parameter: 0 0x2c37.2-0x2c37.6 (0.4) -0x2c30| c3 3f ff ff ff ff 9f ff ff| .?.......| samples: raw bits 0x2c37.6-0x2cac.3 (116.5) +0x2c30| c3 3f ff ff ff ff 9f ff ff| .?.......| residuals: raw bits 0x2c37.6-0x2cac.3 (116.5) 0x2c40|ff fe 7f ff ff ff f3 ff ff ff fe 7f ff ff ff cf|................| * |until 0x2cac.2 (117) | | 0x2ca0| e0 | . | byte_align: 0 (valid) 0x2cac.3-0x2cad (0.5) @@ -1799,13 +1799,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2cba.6-0x2d2d.7 (115.1) | | | count: 895 0x2cb0| 04 3f | .? | rice_parameter: 0 0x2cba.6-0x2cbb.2 (0.4) -0x2cb0| 3f ff ff ff ff| ?....| samples: raw bits 0x2cbb.2-0x2d2d.7 (114.5) +0x2cb0| 3f ff ff ff ff| ?....| residuals: raw bits 0x2cbb.2-0x2d2d.7 (114.5) 0x2cc0|ff fb ff ff ff ff ff ff ef ff ff ff ff ff bf ff|................| * |until 0x2d2d.6 (115) | | | | | [1]{}: partition 0x2d2d.7-0x2da3.7 (118) | | | count: 896 0x2d20| fa 1f | .. | rice_parameter: 0 0x2d2d.7-0x2d2e.3 (0.4) -0x2d20| 1f ff| ..| samples: raw bits 0x2d2e.3-0x2da3.7 (117.4) +0x2d20| 1f ff| ..| residuals: raw bits 0x2d2e.3-0x2da3.7 (117.4) 0x2d30|ff ff ff ff ff ff ff ff ff fc ff ff ff ff ff ff|................| * |until 0x2da3.6 (118) | | 0x2da0| fe | . | byte_align: 0 (valid) 0x2da3.7-0x2da4 (0.1) @@ -1841,13 +1841,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2db1.6-0x2e24.6 (115) | | | count: 895 0x2db0| 04 3f | .? | rice_parameter: 0 0x2db1.6-0x2db2.2 (0.4) -0x2db0| 3f ff ff ff fc ff ff ff ff ff ff ff ff e7| ?.............| samples: raw bits 0x2db2.2-0x2e24.6 (114.4) +0x2db0| 3f ff ff ff fc ff ff ff ff ff ff ff ff e7| ?.............| residuals: raw bits 0x2db2.2-0x2e24.6 (114.4) 0x2dc0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x2e24.5 (115) | | | | | [1]{}: partition 0x2e24.6-0x2e99.2 (116.4) | | | count: 896 0x2e20| fc 3f | .? | rice_parameter: 0 0x2e24.6-0x2e25.2 (0.4) -0x2e20| 3f 7f ff ff ff 7f ff ff ff bf ff| ?..........| samples: raw bits 0x2e25.2-0x2e99.2 (116) +0x2e20| 3f 7f ff ff ff 7f ff ff ff bf ff| ?..........| residuals: raw bits 0x2e25.2-0x2e99.2 (116) 0x2e30|ff ff fb ff ff ff ff ef ff ff ff ff ff 7f ff ff|................| * |until 0x2e99.1 (116) | | 0x2e90| c0 | . | byte_align: 0 (valid) 0x2e99.2-0x2e9a (0.6) @@ -1882,13 +1882,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2ea7.6-0x2f1c.2 (116.4) | | | count: 895 0x2ea0| 04 3f | .? | rice_parameter: 0 0x2ea7.6-0x2ea8.2 (0.4) -0x2ea0| 3f fc ff ff ff 9f ff ff| ?.......| samples: raw bits 0x2ea8.2-0x2f1c.2 (116) +0x2ea0| 3f fc ff ff ff 9f ff ff| ?.......| residuals: raw bits 0x2ea8.2-0x2f1c.2 (116) 0x2eb0|f9 ff ff ff cf ff ff fc ff ff ff e7 ff ff ff 9f|................| * |until 0x2f1c.1 (116) | | | | | [1]{}: partition 0x2f1c.2-0x2f8f.6 (115.4) | | | count: 896 0x2f10| c1 | . | rice_parameter: 0 0x2f1c.2-0x2f1c.6 (0.4) -0x2f10| c1 ff ff ff| ....| samples: raw bits 0x2f1c.6-0x2f8f.6 (115) +0x2f10| c1 ff ff ff| ....| residuals: raw bits 0x2f1c.6-0x2f8f.6 (115) 0x2f20|f7 ff ff ff bf ff ff fb ff ff ff 7f ff ff ef ff|................| * |until 0x2f8f.5 (115) | | 0x2f80| fc| .| byte_align: 0 (valid) 0x2f8f.6-0x2f90 (0.2) @@ -1923,13 +1923,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x2f9d.6-0x3015.1 (119.3) | | | count: 895 0x2f90| 04 33 | .3 | rice_parameter: 0 0x2f9d.6-0x2f9e.2 (0.4) -0x2f90| 33 ff| 3.| samples: raw bits 0x2f9e.2-0x3015.1 (118.7) +0x2f90| 33 ff| 3.| residuals: raw bits 0x2f9e.2-0x3015.1 (118.7) 0x2fa0|ff ff ff ff f3 ff ff ff ff f9 ff ff ff ff 9f ff|................| * |until 0x3015 (119) | | | | | [1]{}: partition 0x3015.1-0x3089.1 (116) | | | count: 896 0x3010| 87 | . | rice_parameter: 0 0x3015.1-0x3015.5 (0.4) -0x3010| 87 ff ff ff ff ff ff ff ff fd ff| ...........| samples: raw bits 0x3015.5-0x3089.1 (115.4) +0x3010| 87 ff ff ff ff ff ff ff ff fd ff| ...........| residuals: raw bits 0x3015.5-0x3089.1 (115.4) 0x3020|ff ff ff ff ff ff ff ff fe ff ff ff ff ff ff bf|................| * |until 0x3089 (116) | | 0x3080| 80 | . | byte_align: 0 (valid) 0x3089.1-0x308a (0.7) @@ -1964,13 +1964,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3097.6-0x310e.1 (118.3) | | | count: 895 0x3090| 04 3f | .? | rice_parameter: 0 0x3097.6-0x3098.2 (0.4) -0x3090| 3f fd ff ff ff ff ff ff| ?.......| samples: raw bits 0x3098.2-0x310e.1 (117.7) +0x3090| 3f fd ff ff ff ff ff ff| ?.......| residuals: raw bits 0x3098.2-0x310e.1 (117.7) 0x30a0|fb ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x310e (118) | | | | | [1]{}: partition 0x310e.1-0x3182.6 (116.5) | | | count: 896 0x3100| 87 | . | rice_parameter: 0 0x310e.1-0x310e.5 (0.4) -0x3100| 87 fc| ..| samples: raw bits 0x310e.5-0x3182.6 (116.1) +0x3100| 87 fc| ..| residuals: raw bits 0x310e.5-0x3182.6 (116.1) 0x3110|ff ff ff 9f ff ff fc ff ff ff fc ff ff ff fe 7f|................| * |until 0x3182.5 (117) | | 0x3180| ec | . | byte_align: 0 (valid) 0x3182.6-0x3183 (0.2) @@ -2005,13 +2005,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3190.6-0x3205.3 (116.5) | | | count: 895 0x3190|04 3f |.? | rice_parameter: 0 0x3190.6-0x3191.2 (0.4) -0x3190| 3f ff ef ff ff bf ff fe ff ff fb ff ff ef ff| ?..............| samples: raw bits 0x3191.2-0x3205.3 (116.1) +0x3190| 3f ff ef ff ff bf ff fe ff ff fb ff ff ef ff| ?..............| residuals: raw bits 0x3191.2-0x3205.3 (116.1) 0x31a0|ff df ff ff df ff ff df ff ff ef ff ff fb ff ff|................| * |until 0x3205.2 (117) | | | | | [1]{}: partition 0x3205.3-0x327c.6 (119.3) | | | count: 896 0x3200| e1 | . | rice_parameter: 0 0x3205.3-0x3205.7 (0.4) -0x3200| e1 e7 ff ff cf ff ff cf ff ff 3f| ..........?| samples: raw bits 0x3205.7-0x327c.6 (118.7) +0x3200| e1 e7 ff ff cf ff ff cf ff ff 3f| ..........?| residuals: raw bits 0x3205.7-0x327c.6 (118.7) 0x3210|ff fe 7f ff f9 ff ff e7 ff ff 9f ff fc ff ff f3|................| * |until 0x327c.5 (119) | | 0x3270| fc | . | byte_align: 0 (valid) 0x327c.6-0x327d (0.2) @@ -2047,13 +2047,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x328a.6-0x32ff.2 (116.4) | | | count: 895 0x3280| 04 2f | ./ | rice_parameter: 0 0x328a.6-0x328b.2 (0.4) -0x3280| 2f ff ff ff f7| /....| samples: raw bits 0x328b.2-0x32ff.2 (116) +0x3280| 2f ff ff ff f7| /....| residuals: raw bits 0x328b.2-0x32ff.2 (116) 0x3290|ff ff ff df ff ff fb ff ff fd ff ff fe ff ff fd|................| * |until 0x32ff.1 (116) | | | | | [1]{}: partition 0x32ff.2-0x3378.6 (121.4) | | | count: 896 0x32f0| c3| .| rice_parameter: 0 0x32ff.2-0x32ff.6 (0.4) -0x32f0| c3| .| samples: raw bits 0x32ff.6-0x3378.6 (121) +0x32f0| c3| .| residuals: raw bits 0x32ff.6-0x3378.6 (121) 0x3300|ff ff ff ff ff ff ff ff fc ff ff ff ff ff ff cf|................| * |until 0x3378.5 (121) | | 0x3370| 7c | | | byte_align: 0 (valid) 0x3378.6-0x3379 (0.2) @@ -2111,13 +2111,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3396.6-0x340b.2 (116.4) | | | count: 895 0x3390| 04 3f | .? | rice_parameter: 0 0x3396.6-0x3397.2 (0.4) -0x3390| 3f ff ff ff ff ff 9f ff ff| ?........| samples: raw bits 0x3397.2-0x340b.2 (116) +0x3390| 3f ff ff ff ff ff 9f ff ff| ?........| residuals: raw bits 0x3397.2-0x340b.2 (116) 0x33a0|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x340b.1 (116) | | | | | [1]{}: partition 0x340b.2-0x3482.6 (119.4) | | | count: 896 0x3400| c2 | . | rice_parameter: 0 0x340b.2-0x340b.6 (0.4) -0x3400| c2 ff ff fe ff| .....| samples: raw bits 0x340b.6-0x3482.6 (119) +0x3400| c2 ff ff fe ff| .....| residuals: raw bits 0x340b.6-0x3482.6 (119) 0x3410|ff ff 7f ff ff df ff ff ff 7f ff ff ff df ff ff|................| * |until 0x3482.5 (119) | | 0x3480| 7c | | | byte_align: 0 (valid) 0x3482.6-0x3483 (0.2) @@ -2152,13 +2152,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3490.6-0x3507.2 (118.4) | | | count: 895 0x3490|04 3f |.? | rice_parameter: 0 0x3490.6-0x3491.2 (0.4) -0x3490| 3f f9 ff ff 3f ff e7 ff fc ff ff cf ff fe 7f| ?...?..........| samples: raw bits 0x3491.2-0x3507.2 (118) +0x3490| 3f f9 ff ff 3f ff e7 ff fc ff ff cf ff fe 7f| ?...?..........| residuals: raw bits 0x3491.2-0x3507.2 (118) 0x34a0|ff e7 ff ff 9f ff fe 7f ff fc ff ff fc ff ff ff|................| * |until 0x3507.1 (118) | | | | | [1]{}: partition 0x3507.2-0x357c.6 (117.4) | | | count: 896 0x3500| c3 | . | rice_parameter: 0 0x3507.2-0x3507.6 (0.4) -0x3500| c3 ff fb ff fd ff ff 7f ff| .........| samples: raw bits 0x3507.6-0x357c.6 (117) +0x3500| c3 ff fb ff fd ff ff 7f ff| .........| residuals: raw bits 0x3507.6-0x357c.6 (117) 0x3510|bf ff df ff ef ff f7 ff fb ff fd ff fe ff ff 7f|................| * |until 0x357c.5 (117) | | 0x3570| fc | . | byte_align: 0 (valid) 0x357c.6-0x357d (0.2) @@ -2194,13 +2194,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x358a.6-0x3605 (122.2) | | | count: 895 0x3580| 04 39 | .9 | rice_parameter: 0 0x358a.6-0x358b.2 (0.4) -0x3580| 39 ff ff f9 ff| 9....| samples: raw bits 0x358b.2-0x3605 (121.6) +0x3580| 39 ff ff f9 ff| 9....| residuals: raw bits 0x358b.2-0x3605 (121.6) 0x3590|ff e7 ff ff 3f ff f9 ff ff 9f ff f3 ff fe 7f ff|....?...........| * |until 0x3604.7 (122) | | | | | [1]{}: partition 0x3605-0x367b.1 (118.1) | | | count: 896 0x3600| 0f | . | rice_parameter: 0 0x3605-0x3605.4 (0.4) -0x3600| 0f ff bf ff ff ff ff f7 ff ff ff| ...........| samples: raw bits 0x3605.4-0x367b.1 (117.5) +0x3600| 0f ff bf ff ff ff ff f7 ff ff ff| ...........| residuals: raw bits 0x3605.4-0x367b.1 (117.5) 0x3610|fb ff ff ff df ff ff f7 ff ff f7 ff ff df ff fe|................| * |until 0x367b (118) | | 0x3670| 80 | . | byte_align: 0 (valid) 0x367b.1-0x367c (0.7) @@ -2235,13 +2235,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3689.6-0x3704.3 (122.5) | | | count: 895 0x3680| 04 3f | .? | rice_parameter: 0 0x3689.6-0x368a.2 (0.4) -0x3680| 3f ff ff ff ff ff| ?.....| samples: raw bits 0x368a.2-0x3704.3 (122.1) +0x3680| 3f ff ff ff ff ff| ?.....| residuals: raw bits 0x368a.2-0x3704.3 (122.1) 0x3690|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff f9|................| * |until 0x3704.2 (123) | | | | | [1]{}: partition 0x3704.3-0x377a.4 (118.1) | | | count: 896 0x3700| e1 | . | rice_parameter: 0 0x3704.3-0x3704.7 (0.4) -0x3700| e1 9f ff ff 9f ff ff f3 ff ff ff 9f| ............| samples: raw bits 0x3704.7-0x377a.4 (117.5) +0x3700| e1 9f ff ff 9f ff ff f3 ff ff ff 9f| ............| residuals: raw bits 0x3704.7-0x377a.4 (117.5) 0x3710|ff ff ff f3 ff ff ff ff ff 9f ff ff ff ff ff ff|................| * |until 0x377a.3 (118) | | 0x3770| f0 | . | byte_align: 0 (valid) 0x377a.4-0x377b (0.4) @@ -2276,13 +2276,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3788.6-0x3800.5 (119.7) | | | count: 895 0x3780| 04 3b | .; | rice_parameter: 0 0x3788.6-0x3789.2 (0.4) -0x3780| 3b ff fb ff fb ff fb| ;......| samples: raw bits 0x3789.2-0x3800.5 (119.3) +0x3780| 3b ff fb ff fb ff fb| ;......| residuals: raw bits 0x3789.2-0x3800.5 (119.3) 0x3790|ff fd ff fe ff ff bf ff ef ff fd ff ff ef ff ff|................| * |until 0x3800.4 (120) | | | | | [1]{}: partition 0x3800.5-0x3879.6 (121.1) | | | count: 896 0x3800|f8 79 |.y | rice_parameter: 0 0x3800.5-0x3801.1 (0.4) -0x3800| 79 ff f9 ff f3 ff e7 ff cf ff 9f ff 3f fe 7f| y...........?..| samples: raw bits 0x3801.1-0x3879.6 (120.5) +0x3800| 79 ff f9 ff f3 ff e7 ff cf ff 9f ff 3f fe 7f| y...........?..| residuals: raw bits 0x3801.1-0x3879.6 (120.5) 0x3810|fe 7f fc ff f9 ff f9 ff f9 ff f9 ff f9 ff fc ff|................| * |until 0x3879.5 (121) | | 0x3870| fc | . | byte_align: 0 (valid) 0x3879.6-0x387a (0.2) @@ -2317,13 +2317,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3887.6-0x38fe.1 (118.3) | | | count: 895 0x3880| 04 3f | .? | rice_parameter: 0 0x3887.6-0x3888.2 (0.4) -0x3880| 3f 7f ff 7f ff 7f fe ff| ?.......| samples: raw bits 0x3888.2-0x38fe.1 (117.7) +0x3880| 3f 7f ff 7f ff 7f fe ff| ?.......| residuals: raw bits 0x3888.2-0x38fe.1 (117.7) 0x3890|fd ff fb ff ef ff bf ff 7f fd ff ef ff bf fe ff|................| * |until 0x38fe (118) | | | | | [1]{}: partition 0x38fe.1-0x397b.5 (125.4) | | | count: 896 0x38f0| 87 | . | rice_parameter: 0 0x38fe.1-0x38fe.5 (0.4) -0x38f0| 87 ff| ..| samples: raw bits 0x38fe.5-0x397b.5 (125) +0x38f0| 87 ff| ..| residuals: raw bits 0x38fe.5-0x397b.5 (125) 0x3900|ff 3f ff ff 9f ff fe 7f ff f9 ff ff 9f ff f3 ff|.?..............| * |until 0x397b.4 (125) | | 0x3970| f8 | . | byte_align: 0 (valid) 0x397b.5-0x397c (0.3) @@ -2358,13 +2358,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3989.6-0x3a00.7 (119.1) | | | count: 895 0x3980| 04 3f | .? | rice_parameter: 0 0x3989.6-0x398a.2 (0.4) -0x3980| 3f ff ff ff ff ff| ?.....| samples: raw bits 0x398a.2-0x3a00.7 (118.5) +0x3980| 3f ff ff ff ff ff| ?.....| residuals: raw bits 0x398a.2-0x3a00.7 (118.5) 0x3990|ff ff ff ff f7 ff ff ff ff fd ff ff ff fb ff ff|................| * |until 0x3a00.6 (119) | | | | | [1]{}: partition 0x3a00.7-0x3a7d.2 (124.3) | | | count: 896 0x3a00|fe 1f |.. | rice_parameter: 0 0x3a00.7-0x3a01.3 (0.4) -0x3a00| 1f ff ef ff ff ff df ff ff ff ff df ff ff ff| ...............| samples: raw bits 0x3a01.3-0x3a7d.2 (123.7) +0x3a00| 1f ff ef ff ff ff df ff ff ff ff df ff ff ff| ...............| residuals: raw bits 0x3a01.3-0x3a7d.2 (123.7) 0x3a10|ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff|................| * |until 0x3a7d.1 (124) | | 0x3a70| c0 | . | byte_align: 0 (valid) 0x3a7d.2-0x3a7e (0.6) @@ -2399,13 +2399,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3a8b.6-0x3b03.5 (119.7) | | | count: 895 0x3a80| 04 3c | .< | rice_parameter: 0 0x3a8b.6-0x3a8c.2 (0.4) -0x3a80| 3c ff f9 ff| <...| samples: raw bits 0x3a8c.2-0x3b03.5 (119.3) +0x3a80| 3c ff f9 ff| <...| residuals: raw bits 0x3a8c.2-0x3b03.5 (119.3) 0x3a90|fc ff fe 7f ff 3f ff cf ff f9 ff ff 9f ff fe 7f|.....?..........| * |until 0x3b03.4 (120) | | | | | [1]{}: partition 0x3b03.5-0x3b7c.7 (121.2) | | | count: 896 0x3b00| 78 7f | x. | rice_parameter: 0 0x3b03.5-0x3b04.1 (0.4) -0x3b00| 7f 7f f7 ff 7f f7 ff 7f f7 ff bf fb| ............| samples: raw bits 0x3b04.1-0x3b7c.7 (120.6) +0x3b00| 7f 7f f7 ff 7f f7 ff 7f f7 ff bf fb| ............| residuals: raw bits 0x3b04.1-0x3b7c.7 (120.6) 0x3b10|ff df fe ff f7 ff bf fe ff f7 ff ef ff bf ff 7f|................| * |until 0x3b7c.6 (121) | | 0x3b70| 3e | > | byte_align: 0 (valid) 0x3b7c.7-0x3b7d (0.1) @@ -2458,13 +2458,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3b95.6-0x3c12.2 (124.4) | | | count: 895 0x3b90| 04 3f | .? | rice_parameter: 0 0x3b95.6-0x3b96.2 (0.4) -0x3b90| 3f 3f f9 ff cf fe 7f e7 ff 3f| ??.......?| samples: raw bits 0x3b96.2-0x3c12.2 (124) +0x3b90| 3f 3f f9 ff cf fe 7f e7 ff 3f| ??.......?| residuals: raw bits 0x3b96.2-0x3c12.2 (124) 0x3ba0|f9 ff cf fc ff e7 fe 7f f3 ff 3f f9 ff 9f fc ff|..........?.....| * |until 0x3c12.1 (124) | | | | | [1]{}: partition 0x3c12.2-0x3c8a.2 (120) | | | count: 896 0x3c10| c3 | . | rice_parameter: 0 0x3c12.2-0x3c12.6 (0.4) -0x3c10| c3 ff ef ff df ff bf ff 7f fd ff ef ff 7f| ..............| samples: raw bits 0x3c12.6-0x3c8a.2 (119.4) +0x3c10| c3 ff ef ff df ff bf ff 7f fd ff ef ff 7f| ..............| residuals: raw bits 0x3c12.6-0x3c8a.2 (119.4) 0x3c20|fb ff df fe ff ef fe ff ef fe ff ef fd ff df fb|................| * |until 0x3c8a.1 (120) | | 0x3c80| c0 | . | byte_align: 0 (valid) 0x3c8a.2-0x3c8b (0.6) @@ -2499,13 +2499,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3c98.6-0x3d19.7 (129.1) | | | count: 895 0x3c90| 04 3f | .? | rice_parameter: 0 0x3c98.6-0x3c99.2 (0.4) -0x3c90| 3f cf ff ff ff f3 ff| ?......| samples: raw bits 0x3c99.2-0x3d19.7 (128.5) +0x3c90| 3f cf ff ff ff f3 ff| ?......| residuals: raw bits 0x3c99.2-0x3d19.7 (128.5) 0x3ca0|ff fe 7f ff fc ff ff f3 ff ff 3f ff cf ff f3 ff|..........?.....| * |until 0x3d19.6 (129) | | | | | [1]{}: partition 0x3d19.7-0x3d92.4 (120.5) | | | count: 896 0x3d10| fe 1f | .. | rice_parameter: 0 0x3d19.7-0x3d1a.3 (0.4) -0x3d10| 1f ff ff cf ff ff| ......| samples: raw bits 0x3d1a.3-0x3d92.4 (120.1) +0x3d10| 1f ff ff cf ff ff| ......| residuals: raw bits 0x3d1a.3-0x3d92.4 (120.1) 0x3d20|ff ff ff ff ff ff ff ff ff ff ff 7f ff ff ff ff|................| * |until 0x3d92.3 (121) | | 0x3d90| d0 | . | byte_align: 0 (valid) 0x3d92.4-0x3d93 (0.4) @@ -2540,13 +2540,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3da0.6-0x3e1e.5 (125.7) | | | count: 895 0x3da0|04 3f |.? | rice_parameter: 0 0x3da0.6-0x3da1.2 (0.4) -0x3da0| 3f fe ff fe ff ff bf ff f7 ff ff bf ff ff bf| ?..............| samples: raw bits 0x3da1.2-0x3e1e.5 (125.3) +0x3da0| 3f fe ff fe ff ff bf ff f7 ff ff bf ff ff bf| ?..............| residuals: raw bits 0x3da1.2-0x3e1e.5 (125.3) 0x3db0|ff ff fd ff ff ff ff fb ff ff ff ff ff ff ff ff|................| * |until 0x3e1e.4 (126) | | | | | [1]{}: partition 0x3e1e.5-0x3e99.1 (122.4) | | | count: 896 0x3e10| f8 4f| .O| rice_parameter: 0 0x3e1e.5-0x3e1f.1 (0.4) -0x3e10| 4f| O| samples: raw bits 0x3e1f.1-0x3e99.1 (122) +0x3e10| 4f| O| residuals: raw bits 0x3e1f.1-0x3e99.1 (122) 0x3e20|fc ff cf fc ff cf fe 7f f3 ff 3f fc ff e7 ff 9f|..........?.....| * |until 0x3e99 (122) | | 0x3e90| 80 | . | byte_align: 0 (valid) 0x3e99.1-0x3e9a (0.7) @@ -2614,13 +2614,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3ec1.6-0x3f3c.1 (122.3) | | | count: 895 0x3ec0| 04 2f | ./ | rice_parameter: 0 0x3ec1.6-0x3ec2.2 (0.4) -0x3ec0| 2f fb fe ff bf ef f7 fd ff 7f df f7 fd ff| /.............| samples: raw bits 0x3ec2.2-0x3f3c.1 (121.7) +0x3ec0| 2f fb fe ff bf ef f7 fd ff 7f df f7 fd ff| /.............| residuals: raw bits 0x3ec2.2-0x3f3c.1 (121.7) 0x3ed0|7f df f7 fd ff 7f ef fb ff 7f df fb ff 7f ef fd|................| * |until 0x3f3c (122) | | | | | [1]{}: partition 0x3f3c.1-0x3fbc.3 (128.2) | | | count: 896 0x3f30| 87 | . | rice_parameter: 0 0x3f3c.1-0x3f3c.5 (0.4) -0x3f30| 87 f9 ff 3f| ...?| samples: raw bits 0x3f3c.5-0x3fbc.3 (127.6) +0x3f30| 87 f9 ff 3f| ...?| residuals: raw bits 0x3f3c.5-0x3fbc.3 (127.6) 0x3f40|f3 ff 3f e7 fe 7f cf f9 ff 3f e7 fc ff 9f e7 fc|..?......?......| * |until 0x3fbc.2 (128) | | 0x3fb0| e0 | . | byte_align: 0 (valid) 0x3fbc.3-0x3fbd (0.5) @@ -2656,13 +2656,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x3fca.6-0x4044.4 (121.6) | | | count: 895 0x3fc0| 04 3f | .? | rice_parameter: 0 0x3fca.6-0x3fcb.2 (0.4) -0x3fc0| 3f ef ff ef ff| ?....| samples: raw bits 0x3fcb.2-0x4044.4 (121.2) +0x3fc0| 3f ef ff ef ff| ?....| residuals: raw bits 0x3fcb.2-0x4044.4 (121.2) 0x3fd0|df ff 7f fd ff ef ff 7f f7 ff 7f f7 fe ff df fb|................| * |until 0x4044.3 (122) | | | | | [1]{}: partition 0x4044.4-0x40c9 (132.4) | | | count: 896 0x4040| f0 | . | rice_parameter: 0 0x4044.4-0x4045 (0.4) -0x4040| ff ff ff ff fc ff ff ff ff cf ff| ...........| samples: raw bits 0x4045-0x40c9 (132) +0x4040| ff ff ff ff fc ff ff ff ff cf ff| ...........| residuals: raw bits 0x4045-0x40c9 (132) 0x4050|ff fc ff ff f9 ff ff 9f ff f3 ff f9 ff fc ff f9|................| * |until 0x40c8.7 (132) | | | | | byte_align: 0 (valid) 0x40c9-0x40c9 (0) @@ -2697,13 +2697,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x40d6.6-0x4151.1 (122.3) | | | count: 895 0x40d0| 04 3c | .< | rice_parameter: 0 0x40d6.6-0x40d7.2 (0.4) -0x40d0| 3c ff ff fe 7f ff ff fe 7f| <........| samples: raw bits 0x40d7.2-0x4151.1 (121.7) +0x40d0| 3c ff ff fe 7f ff ff fe 7f| <........| residuals: raw bits 0x40d7.2-0x4151.1 (121.7) 0x40e0|ff ff ff ff ff ff e7 ff ff ff fd ff ff ff ff ff|................| * |until 0x4151 (122) | | | | | [1]{}: partition 0x4151.1-0x41d1.2 (128.1) | | | count: 896 0x4150| 87 | . | rice_parameter: 0 0x4151.1-0x4151.5 (0.4) -0x4150| 87 fd ff df fd ff df fd ff f7 ff bf ff 7f fe| ...............| samples: raw bits 0x4151.5-0x41d1.2 (127.5) +0x4150| 87 fd ff df fd ff df fd ff f7 ff bf ff 7f fe| ...............| residuals: raw bits 0x4151.5-0x41d1.2 (127.5) 0x4160|ff fe ff ff bf ff f7 ff ff ef ff ff fd ff ff ff|................| * |until 0x41d1.1 (128) | | 0x41d0| c0 | . | byte_align: 0 (valid) 0x41d1.2-0x41d2 (0.6) @@ -2739,13 +2739,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | count: 895 0x41d0| 04| .| rice_parameter: 0 0x41df.6-0x41e0.2 (0.4) 0x41e0|39 |9 | -0x41e0|39 fc ff 3f cf f3 fc ff 3f cf f3 fe 7f 9f f3 fc|9..?....?.......| samples: raw bits 0x41e0.2-0x425d (124.6) +0x41e0|39 fc ff 3f cf f3 fc ff 3f cf f3 fe 7f 9f f3 fc|9..?....?.......| residuals: raw bits 0x41e0.2-0x425d (124.6) 0x41f0|ff 9f f3 fe 7f cf fc ff cf f9 ff cf fc ff e7 ff|................| * |until 0x425c.7 (125) | | | | | [1]{}: partition 0x425d-0x42d8.7 (123.7) | | | count: 896 0x4250| 0e | . | rice_parameter: 0 0x425d-0x425d.4 (0.4) -0x4250| 0e fe ff| ...| samples: raw bits 0x425d.4-0x42d8.7 (123.3) +0x4250| 0e fe ff| ...| residuals: raw bits 0x425d.4-0x42d8.7 (123.3) 0x4260|7f 7f 7f bf bf bf df df df ef ef ef ef f7 f7 f7|................| * |until 0x42d8.6 (124) | | 0x42d0| fe | . | byte_align: 0 (valid) 0x42d8.7-0x42d9 (0.1) @@ -2780,13 +2780,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x42e6.6-0x436b.1 (132.3) | | | count: 895 0x42e0| 04 27 | .' | rice_parameter: 0 0x42e6.6-0x42e7.2 (0.4) -0x42e0| 27 fc ff 9f f3 fc ff 9f e7| '........| samples: raw bits 0x42e7.2-0x436b.1 (131.7) +0x42e0| 27 fc ff 9f f3 fc ff 9f e7| '........| residuals: raw bits 0x42e7.2-0x436b.1 (131.7) 0x42f0|f9 fe 7f 9f e7 f9 fc ff 3f 9f e7 f3 fc fe 7f 3f|........?......?| * |until 0x436b (132) | | | | | [1]{}: partition 0x436b.1-0x43e7.3 (124.2) | | | count: 896 0x4360| 87 | . | rice_parameter: 0 0x436b.1-0x436b.5 (0.4) -0x4360| 87 fd ff fe ff| .....| samples: raw bits 0x436b.5-0x43e7.3 (123.6) +0x4360| 87 fd ff fe ff| .....| residuals: raw bits 0x436b.5-0x43e7.3 (123.6) 0x4370|fd ff f7 ff df fd ff ef fd ff df fb ff 7f df f7|................| * |until 0x43e7.2 (124) | | 0x43e0| e0 | . | byte_align: 0 (valid) 0x43e7.3-0x43e8 (0.5) @@ -2822,13 +2822,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x43f5.6-0x447d.7 (136.1) | | | count: 895 0x43f0| 04 3f | .? | rice_parameter: 0 0x43f5.6-0x43f6.2 (0.4) -0x43f0| 3f ff ff ff ff e7 ff ff ff ff| ?.........| samples: raw bits 0x43f6.2-0x447d.7 (135.5) +0x43f0| 3f ff ff ff ff e7 ff ff ff ff| ?.........| residuals: raw bits 0x43f6.2-0x447d.7 (135.5) 0x4400|ff e7 ff ff ff 3f ff fc ff ff cf ff f3 ff f9 ff|.....?..........| * |until 0x447d.6 (136) | | | | | [1]{}: partition 0x447d.7-0x44fa (124.1) | | | count: 896 0x4470| e6 1f | .. | rice_parameter: 0 0x447d.7-0x447e.3 (0.4) -0x4470| 1f fc| ..| samples: raw bits 0x447e.3-0x44fa (123.5) +0x4470| 1f fc| ..| residuals: raw bits 0x447e.3-0x44fa (123.5) 0x4480|ff fe 7f ff cf ff fe 7f ff ff 3f ff ff ff cf ff|..........?.....| * |until 0x44f9.7 (124) | | | | | byte_align: 0 (valid) 0x44fa-0x44fa (0) @@ -2863,13 +2863,13 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x4507.6-0x458a.2 (130.4) | | | count: 895 0x4500| 04 3b | .; | rice_parameter: 0 0x4507.6-0x4508.2 (0.4) -0x4500| 3b fd fe ff bf df ef fb| ;.......| samples: raw bits 0x4508.2-0x458a.2 (130) +0x4500| 3b fd fe ff bf df ef fb| ;.......| residuals: raw bits 0x4508.2-0x458a.2 (130) 0x4510|fe ff bf f7 fe ff df fb ff bf fd ff ef ff bf ff|................| * |until 0x458a.1 (130) | | | | | [1]{}: partition 0x458a.2-0x460a.7 (128.5) | | | count: 896 0x4580| c3 | . | rice_parameter: 0 0x458a.2-0x458a.6 (0.4) -0x4580| c3 9f 9f 9f cf cf| ......| samples: raw bits 0x458a.6-0x460a.7 (128.1) +0x4580| c3 9f 9f 9f cf cf| ......| residuals: raw bits 0x458a.6-0x460a.7 (128.1) 0x4590|e7 e7 f3 f3 f9 f9 fc fc fe 7f 3f 9f cf e7 f3 f9|..........?.....| * |until 0x460a.6 (129) | | 0x4600| 7e | ~ | byte_align: 0 (valid) 0x460a.7-0x460b (0.1) @@ -2920,7 +2920,7 @@ $ fq dv sweep-with-DC.mkvmerge13.mka | | | [0]{}: partition 0x4620.6-0x466f (78.2) | | | count: 311 0x4620|00 7a |.z | rice_parameter: 1 0x4620.6-0x4621.2 (0.4) -0x4620| 7a ab aa ba aa ea ae aa ea ae aa ba ab aa ba| z..............| samples: raw bits 0x4621.2-0x466f (77.6) +0x4620| 7a ab aa ba aa ea ae aa ea ae aa ba ab aa ba| z..............| residuals: raw bits 0x4621.2-0x466f (77.6) 0x4630|ab aa ba ab aa ba ab aa ae aa ea ae aa ea ae aa|................| * |until 0x466e.7 (78) | | | | | byte_align: 0 (valid) 0x466f-0x466f (0) diff --git a/format/mp4/testdata/flac.fqtest b/format/mp4/testdata/flac.fqtest index a21232821..b0c638d99 100644 --- a/format/mp4/testdata/flac.fqtest +++ b/format/mp4/testdata/flac.fqtest @@ -365,7 +365,7 @@ $ fq -d mp4 dv flac.mp4 | | | [0]{}: partition 0x4e.1-0x284.1 (566) | | | count: 2199 0x040| 01 | . | rice_parameter: 0 0x4e.1-0x4e.5 (0.4) -0x040| 01 27| .'| samples: raw bits 0x4e.5-0x284.1 (565.4) +0x040| 01 27| .'| residuals: raw bits 0x4e.5-0x284.1 (565.4) 0x050|33 32 79 32 64 e6 66 73 24 d3 38 7f 99 27 99 3c|32y2d.fs$.8..'.<| * |until 0x284 (566) | | | | | [1]{}: subframe 0x284.1-0x287.2 (3.1) diff --git a/format/ogg/testdata/flac.fqtest b/format/ogg/testdata/flac.fqtest index fb3885c80..dd8a15a7c 100644 --- a/format/ogg/testdata/flac.fqtest +++ b/format/ogg/testdata/flac.fqtest @@ -157,7 +157,7 @@ $ fq -d ogg dv flac.ogg | | | [0]{}: partition 0x22.1-0x257.2 (565.1) | | | count: 2199 0x002| 01 | . | rice_parameter: 0 0x22.1-0x22.5 (0.4) - 0x002| 01 39 24 ce 12 64 92 49 39 9e 73 84 d3 39| .9$..d.I9.s..9| samples: raw bits 0x22.5-0x257.2 (564.5) + 0x002| 01 39 24 ce 12 64 92 49 39 9e 73 84 d3 39| .9$..d.I9.s..9| residuals: raw bits 0x22.5-0x257.2 (564.5) 0x003|2c ce 49 29 f3 e7 e6 4e 4f 27 84 93 92 72 72 4f|,.I)...NO'...rrO| * |until 0x257.1 (565) | | 0x025| c0 | . | byte_align: 0 (valid) 0x257.2-0x258 (0.6) diff --git a/format/riff/testdata/flac.avi.fqtest b/format/riff/testdata/flac.avi.fqtest index 293dcc0ac..1c69808c4 100644 --- a/format/riff/testdata/flac.avi.fqtest +++ b/format/riff/testdata/flac.avi.fqtest @@ -166,7 +166,7 @@ $ fq dv flac.avi | | | [0]{}: partition 0x1664.1-0x1899.2 (565.1) | | | count: 2199 0x1660| 01 | . | rice_parameter: 0 0x1664.1-0x1664.5 (0.4) -0x1660| 01 39 24 ce 12 64 92 49 39 9e 73 84| .9$..d.I9.s.| samples: raw bits 0x1664.5-0x1899.2 (564.5) +0x1660| 01 39 24 ce 12 64 92 49 39 9e 73 84| .9$..d.I9.s.| residuals: raw bits 0x1664.5-0x1899.2 (564.5) 0x1670|d3 39 2c ce 49 29 f3 e7 e6 4e 4f 27 84 93 92 72|.9,.I)...NO'...r| * |until 0x1899.1 (565) | | 0x1890| c0 | . | byte_align: 0 (valid) 0x1899.2-0x189a (0.6) @@ -254,7 +254,7 @@ $ fq dv flac.avi | | | [0]{}: partition 0x1664.1-0x1899.2 (565.1) | | | count: 2199 0x1660| 01 | . | rice_parameter: 0 0x1664.1-0x1664.5 (0.4) -0x1660| 01 39 24 ce 12 64 92 49 39 9e 73 84| .9$..d.I9.s.| samples: raw bits 0x1664.5-0x1899.2 (564.5) +0x1660| 01 39 24 ce 12 64 92 49 39 9e 73 84| .9$..d.I9.s.| residuals: raw bits 0x1664.5-0x1899.2 (564.5) 0x1670|d3 39 2c ce 49 29 f3 e7 e6 4e 4f 27 84 93 92 72|.9,.I)...NO'...r| * |until 0x1899.1 (565) | | 0x1890| c0 | . | byte_align: 0 (valid) 0x1899.2-0x189a (0.6)