Merge pull request #2796 from JustAMan/fix-transcode-reasons

Make codec check in profile examine profile type first
pull/2799/head
dkanada 4 years ago committed by GitHub
commit aeedd06f51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,12 +25,12 @@ namespace MediaBrowser.Model.Dlna
public bool SupportsVideoCodec(string codec) public bool SupportsVideoCodec(string codec)
{ {
return ContainerProfile.ContainsContainer(VideoCodec, codec); return Type == DlnaProfileType.Video && ContainerProfile.ContainsContainer(VideoCodec, codec);
} }
public bool SupportsAudioCodec(string codec) public bool SupportsAudioCodec(string codec)
{ {
return ContainerProfile.ContainsContainer(AudioCodec, codec); return (Type == DlnaProfileType.Audio || Type == DlnaProfileType.Video) && ContainerProfile.ContainsContainer(AudioCodec, codec);
} }
} }
} }

Loading…
Cancel
Save