gitextract_oegtlq8n/ ├── .github/ │ └── workflows/ │ └── go.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── analysis_fixed.go ├── enc_benchmark_test.go ├── enc_test.go ├── encode.go ├── encode_frame.go ├── encode_meta.go ├── encode_subframe.go ├── example_test.go ├── flac.go ├── flac_test.go ├── frame/ │ ├── frame.go │ ├── frame_test.go │ └── subframe.go ├── go.mod ├── go.sum ├── internal/ │ ├── bits/ │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── twocomp.go │ │ ├── twocomp_test.go │ │ ├── unary.go │ │ ├── unary_test.go │ │ ├── zigzag.go │ │ └── zigzag_test.go │ ├── bufseekio/ │ │ ├── readseeker.go │ │ └── readseeker_test.go │ ├── hashutil/ │ │ ├── crc16/ │ │ │ ├── crc16.go │ │ │ └── crc16_test.go │ │ ├── crc8/ │ │ │ ├── crc8.go │ │ │ └── crc8_test.go │ │ └── hashutil.go │ ├── ioutilx/ │ │ ├── byte.go │ │ └── zero.go │ └── utf8/ │ ├── decode.go │ └── encode.go ├── meta/ │ ├── application.go │ ├── cuesheet.go │ ├── meta.go │ ├── meta_test.go │ ├── padding.go │ ├── picture.go │ ├── reader.go │ ├── seektable.go │ ├── streaminfo.go │ ├── testdata/ │ │ └── README.md │ └── vorbiscomment.go └── testdata/ ├── README.md └── convert_to_verbatim.sh