2020-08-04 14:20:52 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:26:04 +00:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2018-12-14 09:40:55 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.MediaEncoding.Configuration
|
|
|
|
{
|
|
|
|
public class EncodingConfigurationFactory : IConfigurationFactory
|
|
|
|
{
|
|
|
|
public IEnumerable<ConfigurationStore> GetConfigurations()
|
|
|
|
{
|
|
|
|
return new[]
|
|
|
|
{
|
2019-11-08 11:49:00 +00:00
|
|
|
new EncodingConfigurationStore()
|
2018-12-14 09:40:55 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|