Skip to content

Commit

Permalink
[edAudio] simplify debug statements, may help on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
mean committed Jan 27, 2017
1 parent 4c3b245 commit 7e566f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avidemux/common/ADM_editor/src/audio/ADM_edAudioPcm.cpp
Expand Up @@ -102,8 +102,8 @@ uint32_t outFrequency=getCurrentTrack()->codec->getOutputFrequency();
{
if(labs((int64_t)lastDts-(int64_t)packetBufferDts)>ADM_ALLOWED_DRIFT_US)
{
ADM_info("[Composer::getPCMPacket] Track %d,%" PRIx64" : drift %d, computed :%s",
(int)myTrackNumber,(uint64_t)trk,(int)(lastDts-packetBufferDts),ADM_us2plain(lastDts));
ADM_info("[Composer::getPCMPacket] Track %d,%p ", (int)myTrackNumber,trk);
ADM_info(": drift %d, computed :%s", (int)(lastDts-packetBufferDts),ADM_us2plain(lastDts));
ADM_info(" got %s\n", ADM_us2plain(packetBufferDts));
if(packetBufferDts<lastDts)
{
Expand Down

1 comment on commit 7e566f0

@Dron007
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it definitely helps. Thank you.

Please sign in to comment.