예제 #1
0
 public override string Format(HlsStreamInfo streamInfo)
 {
     return(_formatterDelegate(streamInfo));
 }
예제 #2
0
 public override int Compare(HlsStreamInfo x, HlsStreamInfo y)
 {
     return(_ascending ? x.Bandwidth.CompareTo(y.Bandwidth) : y.Bandwidth.CompareTo(x.Bandwidth));
 }
예제 #3
0
 public abstract string Format(HlsStreamInfo streamInfo);