This commit is contained in:
aler9
2022-02-01 19:09:56 +01:00
parent 5cf71f59d8
commit 0c9bd7a575
5 changed files with 35 additions and 5 deletions

View File

@@ -126,11 +126,13 @@ func (t *TrackAAC) AOTSpecificConfig() []byte {
func (t *TrackAAC) clone() Track {
return &TrackAAC{
control: t.control,
payloadType: t.payloadType,
sampleRate: t.sampleRate,
channelCount: t.channelCount,
mpegConf: t.mpegConf,
control: t.control,
payloadType: t.payloadType,
typ: t.typ,
sampleRate: t.sampleRate,
channelCount: t.channelCount,
aotSpecificConfig: t.aotSpecificConfig,
mpegConf: t.mpegConf,
}
}