File tree Expand file tree Collapse file tree 14 files changed +25
-24
lines changed
Expand file tree Collapse file tree 14 files changed +25
-24
lines changed Original file line number Diff line number Diff line change 1616```
1717
1818[ ![ Build Status] ( https://travis-ci.org/chai2010/webp.svg )] ( https://travis-ci.org/chai2010/webp )
19- [ ![ GoDoc] ( https://godoc.org/github.com/chai2010 /webp?status.svg )] ( https://godoc.org/github.com/chai2010 /webp )
19+ [ ![ GoDoc] ( https://godoc.org/github.com/amarpal /webp?status.svg )] ( https://godoc.org/github.com/amarpal /webp )
2020
2121Benchmark
2222=========
@@ -30,7 +30,7 @@ Install
3030Install ` GCC ` or ` MinGW ` ([ download here] ( http://tdm-gcc.tdragon.net/download ) ) at first,
3131and then run these commands:
3232
33- 1 . ` go get github.com/chai2010 /webp `
33+ 1 . ` go get github.com/amarpal /webp `
34342 . ` go run hello.go `
3535
3636
@@ -48,7 +48,7 @@ import (
4848 " io/ioutil"
4949 " log"
5050
51- " github.com/chai2010 /webp"
51+ " github.com/amarpal /webp"
5252)
5353
5454func main () {
Original file line number Diff line number Diff line change @@ -85,5 +85,5 @@ BenchmarkDecode_yellow_rose_lossy_with_alpha_x_image_webp-4
8585BenchmarkDecode_yellow_rose_lossy_chai2010_webp-4 500 2212347 ns/op
8686BenchmarkDecode_yellow_rose_lossy_chai2010_webp_cbuf-4 1000 2001677 ns/op
8787BenchmarkDecode_yellow_rose_lossy_x_image_webp-4 300 5464172 ns/op
88- ok github.com/chai2010 /webp/bench 143.753s
88+ ok github.com/amarpal /webp/bench 143.753s
8989```
Original file line number Diff line number Diff line change 22// Use of this source code is governed by a BSD-style
33// license that can be found in the LICENSE file.
44
5+ //go:build ignore
56// +build ignore
67
78package main
@@ -91,7 +92,7 @@ import (
9192 "io/ioutil"
9293 "testing"
9394
94- chai2010_webp "github.com/chai2010 /webp"
95+ chai2010_webp "github.com/amarpal /webp"
9596 x_image_webp "golang.org/x/image/webp"
9697)
9798
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313 "io/ioutil"
1414 "testing"
1515
16- chai2010_webp "github.com/chai2010 /webp"
16+ chai2010_webp "github.com/amarpal /webp"
1717 x_image_webp "golang.org/x/image/webp"
1818)
1919
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ Package webp implements a decoder and encoder for WEBP images.
88WEBP is defined at:
99https://developers.google.com/speed/webp/docs/riff_container
1010
11- Install
11+ # Install
1212
1313Install `GCC` or `MinGW` (http://tdm-gcc.tdragon.net/download) at first,
1414and then run these commands:
1515
16- 1. `go get github.com/chai2010 /webp`
17- 2. `go run hello.go`
16+ 1. `go get github.com/amarpal /webp`
17+ 2. `go run hello.go`
1818
19- Examples
19+ # Examples
2020
2121This is a simple example:
2222
@@ -28,7 +28,7 @@ This is a simple example:
2828 "io/ioutil"
2929 "log"
3030
31- "github.com/chai2010 /webp"
31+ "github.com/amarpal /webp"
3232 )
3333
3434 func main() {
@@ -83,7 +83,7 @@ Decode and Encode as RGB format:
8383 log.Fatal(err)
8484 }
8585
86- BUGS
86+ # BUGS
8787
8888Report bugs to <chaishushan@gmail.com>.
8989
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ package fuzz
88import (
99 "bytes"
1010
11- "github.com/chai2010 /webp"
11+ "github.com/amarpal /webp"
1212)
1313
1414func Fuzz (data []byte ) int {
Original file line number Diff line number Diff line change 22// Use of this source code is governed by a Apache-style
33// license that can be found in the LICENSE file.
44
5- module github.com/chai2010 /webp
5+ module github.com/amarpal /webp
66
77go 1.17
88
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313 "io/ioutil"
1414 "log"
1515
16- "github.com/chai2010 /webp"
16+ "github.com/amarpal /webp"
1717)
1818
1919func main () {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313)
1414
1515const (
16- MemPMagic = "MemP" // See https://github.com/chai2010 /image
16+ MemPMagic = "MemP" // See https://github.com/amarpal /image
1717)
1818
1919const (
2828 _ MemP = (* MemPImage )(nil )
2929)
3030
31- // MemP Image Spec (Native Endian), see https://github.com/chai2010 /image.
31+ // MemP Image Spec (Native Endian), see https://github.com/amarpal /image.
3232type MemP interface {
3333 MemPMagic () string
3434 Bounds () image.Rectangle
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ void BenchStopTimer() {
231231
232232static void usage (int argc, char * argv[]) {
233233 printf (" C++ Mini UnitTest and Benchmark Library.\n " );
234- printf (" https://github.com/chai2010 /cc-mini-test\n " );
234+ printf (" https://github.com/amarpal /cc-mini-test\n " );
235235 printf (" \n " );
236236
237237 printf (" Usage: %s\n " , getBaseName (argv[0 ]));
You can’t perform that action at this time.
0 commit comments