mirror of
https://github.com/pion/mediadevices.git
synced 2025-09-26 20:41:46 +08:00
9 lines
88 B
Go
9 lines
88 B
Go
package frame
|
|
|
|
import "image"
|
|
|
|
type buffer struct {
|
|
image image.Image
|
|
raw []uint8
|
|
}
|