mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-02 00:11:55 +01:00
omit input container when hw encoding
This commit is contained in:
@@ -827,72 +827,6 @@ namespace MediaBrowser.Model.Dto
|
||||
get { return StringHelper.EqualsIgnoreCase(MediaType, Entities.MediaType.Video); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance is audio.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is audio; otherwise, <c>false</c>.</value>
|
||||
[IgnoreDataMember]
|
||||
public bool IsAudio
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(MediaType, Entities.MediaType.Audio); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance is game.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is game; otherwise, <c>false</c>.</value>
|
||||
[IgnoreDataMember]
|
||||
public bool IsGame
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(MediaType, Entities.MediaType.Game); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance is person.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is person; otherwise, <c>false</c>.</value>
|
||||
[IgnoreDataMember]
|
||||
public bool IsPerson
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "Person"); }
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool IsMusicGenre
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "MusicGenre"); }
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool IsGameGenre
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "GameGenre"); }
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool IsGenre
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "Genre"); }
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool IsArtist
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "MusicArtist"); }
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool IsAlbum
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "MusicAlbum"); }
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool IsStudio
|
||||
{
|
||||
get { return StringHelper.EqualsIgnoreCase(Type, "Studio"); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the program identifier.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user