mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
16 lines
317 B
C#
16 lines
317 B
C#
|
namespace MediaBrowser.Model.Dlna
|
|||
|
{
|
|||
|
public interface ITranscoderSupport
|
|||
|
{
|
|||
|
bool CanEncodeToAudioCodec(string codec);
|
|||
|
}
|
|||
|
|
|||
|
public class FullTranscoderSupport : ITranscoderSupport
|
|||
|
{
|
|||
|
public bool CanEncodeToAudioCodec(string codec)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|