Initial commit

This commit is contained in:
Quentin Renard
2022-02-05 10:27:03 +01:00
commit 477b147104
96 changed files with 5980 additions and 0 deletions

12
sample_format_test.go Normal file
View File

@@ -0,0 +1,12 @@
package astiav_test
import (
"testing"
"github.com/asticode/go-astiav"
"github.com/stretchr/testify/require"
)
func TestSampleFormat(t *testing.T) {
require.Equal(t, "s16", astiav.SampleFormatS16.String())
}