From c1d5b2b1c3c480079a63ca0f946051d733a04fc4 Mon Sep 17 00:00:00 2001 From: Martijn van Beurden Date: Wed, 17 Aug 2022 21:08:25 +0200 Subject: [PATCH] Add sample size entry to list for 32bps flac streams --- format/flac/flac_frame.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format/flac/flac_frame.go b/format/flac/flac_frame.go index b7e6203c..e1086fa6 100644 --- a/format/flac/flac_frame.go +++ b/format/flac/flac_frame.go @@ -261,7 +261,7 @@ func frameDecode(d *decode.D, in any) any { 0b100: {Sym: uint64(16)}, 0b101: {Sym: uint64(20)}, 0b110: {Sym: uint64(24)}, - 0b111: {Description: "reserved"}, + 0b111: {Sym: uint64(32)}, } sampleSizeS := d.FieldScalarU3("sample_size", sampleSizeMap, scalar.ActualBin) switch sampleSizeS.ActualU() {