mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
93781b2a56
(I guess)
26 lines
666 B
C#
26 lines
666 B
C#
using System.Collections.Generic;
|
|
using BililiveRecorder.Flv.Pipeline.Actions;
|
|
|
|
namespace BililiveRecorder.Flv
|
|
{
|
|
public interface IGroupingRule
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="tags">Current Tags</param>
|
|
/// <returns></returns>
|
|
bool CanStartWith(Tag tag);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="tag">Tag not yet added to the list</param>
|
|
/// <param name="tags">List of tags</param>
|
|
/// <returns></returns>
|
|
bool CanAppendWith(Tag tag, List<Tag> tags);
|
|
|
|
PipelineAction CreatePipelineAction(List<Tag> tags);
|
|
}
|
|
}
|