Skip to content

Commit

Permalink
test video fix
Browse files Browse the repository at this point in the history
  • Loading branch information
3d0c committed Apr 2, 2015
1 parent cf73b98 commit 22a52d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified examples/tests-sample.mp4
Binary file not shown.
6 changes: 3 additions & 3 deletions format_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
var (
inputSampleFilename string = "examples/tests-sample.mp4"
outputSampleFilename string = "examples/tests-output.mp4"
inputSampleWidth int = 640
inputSampleHeight int = 480
inputSampleWidth int = 320
inputSampleHeight int = 200
)

func assert(i interface{}, err error) interface{} {
Expand Down Expand Up @@ -148,7 +148,7 @@ func customReader() ([]byte, int) {
var err error

if section == nil {
file, err = os.Open("examples/sample-enc-mpeg4.mp4")
file, err = os.Open(inputSampleFilename)
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 22a52d1

Please sign in to comment.