mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-10-05 16:26:50 +08:00
14 lines
212 B
Go
14 lines
212 B
Go
package mjpeg
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestRFC2435(t *testing.T) {
|
|
lqt, cqt := MakeTables(71)
|
|
require.Equal(t, byte(9), lqt[0])
|
|
require.Equal(t, byte(10), cqt[0])
|
|
}
|