|
@@ -160,6 +160,16 @@ namespace MediaBrowser.Model.Dto
|
|
|
|
|
|
public bool? IsSecondaryAudio(MediaStream stream)
|
|
|
{
|
|
|
+ // Look for the first audio track marked as default
|
|
|
+ foreach (MediaStream currentStream in MediaStreams)
|
|
|
+ {
|
|
|
+ if (currentStream.Type == MediaStreamType.Audio && currentStream.IsDefault)
|
|
|
+ {
|
|
|
+ return currentStream.Index != stream.Index;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // Look for the first audio track
|
|
|
foreach (MediaStream currentStream in MediaStreams)
|
|
|
{
|
|
|
if (currentStream.Type == MediaStreamType.Audio)
|