Increase performance of YCbCr and RGBA encoding
This commit is contained in:
parent
9badc7c997
commit
478f64d264
39
avif.go
39
avif.go
|
@ -154,11 +154,47 @@ func Encode(w io.Writer, m image.Image, o *Options) error {
|
||||||
defer C.free(dataPtr)
|
defer C.free(dataPtr)
|
||||||
data := (*[1 << 30]byte)(dataPtr)[:dataSize:dataSize]
|
data := (*[1 << 30]byte)(dataPtr)[:dataSize:dataSize]
|
||||||
|
|
||||||
|
switch img := m.(type) {
|
||||||
|
case *image.YCbCr:
|
||||||
|
yPos := 0
|
||||||
|
uPos := ySize
|
||||||
|
for y := rec.Min.Y; y < rec.Max.Y; y++ {
|
||||||
|
for x := rec.Min.X; x < rec.Max.X; x++ {
|
||||||
|
r, g, b, _ := img.At(x, y).RGBA()
|
||||||
|
Y, u, v := rgb2yuv(r, g, b)
|
||||||
|
data[yPos] = Y
|
||||||
|
yPos++
|
||||||
|
// TODO(Kagami): Resample chroma planes with some better filter.
|
||||||
|
if (x-rec.Min.X)&1 == 0 && (y-rec.Min.Y)&1 == 0 {
|
||||||
|
data[uPos] = u
|
||||||
|
data[uPos+uSize] = v
|
||||||
|
uPos++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case *image.RGBA:
|
||||||
|
yPos := 0
|
||||||
|
uPos := ySize
|
||||||
|
for y := rec.Min.Y; y < rec.Max.Y; y++ {
|
||||||
|
for x := rec.Min.X; x < rec.Max.X; x++ {
|
||||||
|
r, g, b, _ := img.RGBAAt(x, y).RGBA()
|
||||||
|
Y, u, v := rgb2yuv(r, g, b)
|
||||||
|
data[yPos] = Y
|
||||||
|
yPos++
|
||||||
|
// TODO(Kagami): Resample chroma planes with some better filter.
|
||||||
|
if (x-rec.Min.X)&1 == 0 && (y-rec.Min.Y)&1 == 0 {
|
||||||
|
data[uPos] = u
|
||||||
|
data[uPos+uSize] = v
|
||||||
|
uPos++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
default:
|
||||||
yPos := 0
|
yPos := 0
|
||||||
uPos := ySize
|
uPos := ySize
|
||||||
for j := rec.Min.Y; j < rec.Max.Y; j++ {
|
for j := rec.Min.Y; j < rec.Max.Y; j++ {
|
||||||
for i := rec.Min.X; i < rec.Max.X; i++ {
|
for i := rec.Min.X; i < rec.Max.X; i++ {
|
||||||
r16, g16, b16, _ := m.At(i, j).RGBA()
|
r16, g16, b16, _ := img.At(i, j).RGBA()
|
||||||
y, u, v := rgb2yuv(r16, g16, b16)
|
y, u, v := rgb2yuv(r16, g16, b16)
|
||||||
data[yPos] = y
|
data[yPos] = y
|
||||||
yPos++
|
yPos++
|
||||||
|
@ -170,6 +206,7 @@ func Encode(w io.Writer, m image.Image, o *Options) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
cfg := C.avif_config{
|
cfg := C.avif_config{
|
||||||
threads: C.int(o.Threads),
|
threads: C.int(o.Threads),
|
||||||
|
|
Loading…
Reference in New Issue