Skip to content

Commit 0834b68

Browse files
committed
Declare package as github.com/amarpal/webp
1 parent d05b4f6 commit 0834b68

File tree

14 files changed

+25
-24
lines changed

14 files changed

+25
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ webp
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

2121
Benchmark
2222
=========
@@ -30,7 +30,7 @@ Install
3030
Install `GCC` or `MinGW` ([download here](http://tdm-gcc.tdragon.net/download)) at first,
3131
and then run these commands:
3232

33-
1. `go get github.com/chai2010/webp`
33+
1. `go get github.com/amarpal/webp`
3434
2. `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

5454
func main() {

bench/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ BenchmarkDecode_yellow_rose_lossy_with_alpha_x_image_webp-4
8585
BenchmarkDecode_yellow_rose_lossy_chai2010_webp-4 500 2212347 ns/op
8686
BenchmarkDecode_yellow_rose_lossy_chai2010_webp_cbuf-4 1000 2001677 ns/op
8787
BenchmarkDecode_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
```

bench/gen.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
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

78
package 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

bench/z_benchmark_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

doc.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Package webp implements a decoder and encoder for WEBP images.
88
WEBP is defined at:
99
https://developers.google.com/speed/webp/docs/riff_container
1010
11-
Install
11+
# Install
1212
1313
Install `GCC` or `MinGW` (http://tdm-gcc.tdragon.net/download) at first,
1414
and 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
2121
This 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
8888
Report bugs to <chaishushan@gmail.com>.
8989

fuzz/webp_fuzz.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package fuzz
88
import (
99
"bytes"
1010

11-
"github.com/chai2010/webp"
11+
"github.com/amarpal/webp"
1212
)
1313

1414
func Fuzz(data []byte) int {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

77
go 1.17
88

hello.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1919
func main() {

image.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
)
1414

1515
const (
16-
MemPMagic = "MemP" // See https://github.com/chai2010/image
16+
MemPMagic = "MemP" // See https://github.com/amarpal/image
1717
)
1818

1919
const (
@@ -28,7 +28,7 @@ var (
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.
3232
type MemP interface {
3333
MemPMagic() string
3434
Bounds() image.Rectangle

internal/libwebp-0.5.0/test/test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ void BenchStopTimer() {
231231

232232
static 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]));

0 commit comments

Comments
 (0)