mirror of
https://github.com/openlibrecommunity/olcrtc.git
synced 2026-05-26 07:08:11 +00:00
12 lines
371 B
Go
12 lines
371 B
Go
//go:build !b
|
|
|
|
package videochannel
|
|
|
|
func renderVisualFrameB(payload []byte, width, height, modulePx, colors int, recoveryLevel string) ([]byte, error) {
|
|
return renderVisualFrame(payload, width, height, recoveryLevel)
|
|
}
|
|
|
|
func extractVisualPayloadB(frame []byte, width, height, modulePx, colors int) ([]byte, error) {
|
|
return extractVisualPayload(frame, width, height)
|
|
}
|