From 7bf352b0dfcb76ac9fd10cc8641d465a3a98e682 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbjo=CC=88rn=20Einarsson?= Date: Sat, 9 Nov 2024 17:28:50 +0100 Subject: [PATCH] test: more tests for frma box --- mp4/frma_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mp4/frma_test.go diff --git a/mp4/frma_test.go b/mp4/frma_test.go new file mode 100644 index 00000000..fb49e7a4 --- /dev/null +++ b/mp4/frma_test.go @@ -0,0 +1,8 @@ +package mp4 + +import "testing" + +func TestFrma(t *testing.T) { + frma := &FrmaBox{DataFormat: "avc1"} + boxDiffAfterEncodeAndDecode(t, frma) +}