Skip to content

Commit

Permalink
Update Packet.cpp
Browse files Browse the repository at this point in the history
edit to make it compile
  • Loading branch information
waterstrider authored Jan 13, 2022
1 parent 4ceee22 commit d1522ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Packet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 222,7 @@ void Packet::skip(int bytes)
#ifndef QT_NO_DEBUG_STREAM
QDebug operator<<(QDebug dbg, const Packet &pkt)
{
dbg.nospace() << "QtAV::Packet.data " << Qt::hex << (qptrdiff)pkt.data.constData() << " " << Qt::dec << pkt.data.size();
dbg.nospace() << "QtAV::Packet.data " << hex << (qptrdiff)pkt.data.constData() << " " << dec << pkt.data.size();
dbg.nospace() << ", dts: " << pkt.dts;
dbg.nospace() << ", pts: " << pkt.pts;
dbg.nospace() << ", duration: " << pkt.duration;
Expand Down

0 comments on commit d1522ab

Please sign in to comment.