Skip to content

Commit

Permalink
Show user-friendly audio type string in log
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartm committed Nov 21, 2012
1 parent 143f790 commit fa98ed6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mythtv/libs/libmythtv/avformatdecoder.cpp
Expand Up @@ -2197,10 +2197,10 @@ int AvFormatDecoder::ScanStreams(bool novideo)
}

LOG(VB_AUDIO, LOG_INFO, LOC +
QString("Audio Track #%1, with type %2 is A/V stream #%3 "
QString("Audio Track #%1, of type (%2) is A/V stream #%3 "
"and has %4 channels in the %5 language(%6).")
.arg(tracks[kTrackTypeAudio].size()).arg((int)type).arg(i)
.arg(enc->channels)
.arg(tracks[kTrackTypeAudio].size()).arg(toString(type))
.arg(i).arg(enc->channels)
.arg(iso639_key_toName(lang)).arg(lang));
}
}
Expand Down

0 comments on commit fa98ed6

Please sign in to comment.