mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
- Refactor frame converter implementation - Update mp4 track to use ICodex - General refactoring and code improvements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
167 B
Go
13 lines
167 B
Go
package box
|
|
|
|
import "m7s.live/v5/pkg/util"
|
|
|
|
type Sample struct {
|
|
util.Memory
|
|
KeyFrame bool
|
|
Timestamp uint32
|
|
CTS uint32
|
|
Offset int64
|
|
Duration uint32
|
|
}
|