movieplayer: shorten debug messages

Origin commit data
------------------
Branch: ni/coolstream
Commit: 6757566be2
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2016-01-14 (Thu, 14 Jan 2016)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2016-01-14 22:30:18 +01:00
committed by vanhofen
parent 040f68984e
commit 23ed88ee89

View File

@@ -935,7 +935,7 @@ void CMoviePlayerGui::PlayFileLoop(void)
update_lcd = true;
}
#ifdef DEBUG
printf("CMoviePlayerGui::PlayFile: speed %d position %d duration %d (%d, %d%%)\n", speed, position, duration, duration-position, file_prozent);
printf("CMoviePlayerGui::%s: spd %d pos %d/%d (%d, %d%%)\n", __func__, speed, position, duration, duration-position, file_prozent);
#endif
/* in case ffmpeg report incorrect values */
int posdiff = duration - position;
@@ -1750,7 +1750,7 @@ void CMoviePlayerGui::UpdatePosition()
file_prozent = (unsigned char) (position / (duration / 100));
FileTime.update(position, duration);
#ifdef DEBUG
printf("CMoviePlayerGui::PlayFile: speed %d position %d duration %d (%d, %d%%)\n", speed, position, duration, duration-position, file_prozent);
printf("CMoviePlayerGui::%s: spd %d pos %d/%d (%d, %d%%)\n", __func__, speed, position, duration, duration-position, file_prozent);
#endif
}
}