13 lines
151 B
Go
13 lines
151 B
Go
|
package media
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
|
||
|
"github.com/3d0c/gmf"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||
|
gmf.LogSetLevel(gmf.AV_LOG_DEBUG)
|
||
|
}
|