Bug 1189138: P2. Add useful debugging information to logs. r=cpearce

This commit is contained in:
Jean-Yves Avenard 2015-07-30 12:22:12 +10:00
Родитель fa43517ced
Коммит 024aff6746
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1195,8 +1195,9 @@ MediaFormatReader::ResetDecode()
void
MediaFormatReader::Output(TrackType aTrack, MediaData* aSample)
{
LOGV("Decoded %s sample time=%lld dur=%lld",
TrackTypeToStr(aTrack), aSample->mTime, aSample->mDuration);
LOGV("Decoded %s sample time=%lld timecode=%lld kf=%d dur=%lld",
TrackTypeToStr(aTrack), aSample->mTime, aSample->mTimecode,
aSample->mKeyframe, aSample->mDuration);
if (!aSample) {
NS_WARNING("MediaFormatReader::Output() passed a null sample");