mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-18 00:03:05 +01:00
15 lines
317 B
C#
15 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;
|
|
}
|
|
}
|
|
}
|