mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
27 lines
700 B
C#
27 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline
|
|
{
|
|
public class PipelineHeaderAction : PipelineAction
|
|
{
|
|
public PipelineHeaderAction(IReadOnlyList<Tag> allTags)
|
|
{
|
|
this.AllTags = allTags ?? throw new ArgumentNullException(nameof(allTags));
|
|
}
|
|
|
|
public Tag? VideoHeader { get; set; }
|
|
|
|
public Tag? AudioHeader { get; set; }
|
|
|
|
public IReadOnlyList<Tag> AllTags { get; set; }
|
|
|
|
public override PipelineAction Clone() => new PipelineHeaderAction(this.AllTags.ToArray())
|
|
{
|
|
VideoHeader = VideoHeader,
|
|
AudioHeader = AudioHeader
|
|
};
|
|
}
|
|
}
|