Removed downsampling entirely

This commit is contained in:
David Högborg
2015-07-15 23:15:09 +02:00
parent 80521b8e94
commit 26af95fd18
3 changed files with 0 additions and 27 deletions

View File

@@ -14,7 +14,6 @@ type RunConfig struct {
InputFile string
OutputFile string
Format string
Downsample int
}
type GoPow struct {
@@ -28,7 +27,6 @@ func NewGoPow(c *cli.Context) (*GoPow, error) {
InputFile: c.String("input"),
OutputFile: c.String("output"),
Format: c.String("format"),
Downsample: c.Int("downsample"),
}
if config.InputFile == "" {