Major improvements to UnifiedPlayer: 1. GetFrameImage() now works when paused for responsive UI updates 2. Play() method properly starts FFmpeg process 3. Frame display loop runs continuously for smooth video display 4. Disabled audio temporarily to fix video playback fundamentals 5. Simplified FFmpeg command to focus on video stream only Player now: - Generates video frames correctly - Shows video when paused - Has responsive progress tracking - Starts playback properly Next steps: Re-enable audio playback once video is stable
20 lines
789 B
Go
20 lines
789 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-FileCopyrightText: 2022 The Ebitengine Authors
|
|
|
|
//go:build cgo && (darwin || freebsd || linux || netbsd)
|
|
|
|
package purego
|
|
|
|
// if CGO_ENABLED=1 import the Cgo runtime to ensure that it is set up properly.
|
|
// This is required since some frameworks need TLS setup the C way which Go doesn't do.
|
|
// We currently don't support ios in fakecgo mode so force Cgo or fail
|
|
// Even if CGO_ENABLED=1 the Cgo runtime is not imported unless `import "C"` is used.
|
|
// which will import this package automatically. Normally this isn't an issue since it
|
|
// usually isn't possible to call into C without using that import. However, with purego
|
|
// it is since we don't use `import "C"`!
|
|
import (
|
|
_ "runtime/cgo"
|
|
|
|
_ "github.com/ebitengine/purego/internal/cgo"
|
|
)
|