update behavior with restricted transcoding access

This commit is contained in:
Luke Pulverenti
2016-07-25 01:12:38 -04:00
parent b878dc1537
commit 8328f39834
12 changed files with 98 additions and 150 deletions

View File

@@ -0,0 +1,15 @@
namespace MediaBrowser.Model.Dlna
{
public interface ITranscoderSupport
{
bool CanEncodeToAudioCodec(string codec);
}
public class FullTranscoderSupport : ITranscoderSupport
{
public bool CanEncodeToAudioCodec(string codec)
{
return true;
}
}
}