mirror of
https://github.com/taglib/taglib.git
synced 2025-10-02 01:24:33 -04:00
simplify boolean expressions (#1130)
Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
@ -309,7 +309,7 @@ List<Ogg::Page *> Ogg::Page::paginate(const ByteVectorList &packets,
|
||||
streamSerialNumber,
|
||||
pageIndex,
|
||||
continued,
|
||||
lastSplit && (lastPacketInList ? lastPacketCompleted : true),
|
||||
lastSplit && (!lastPacketInList || lastPacketCompleted),
|
||||
lastSplit && (containsLastPacket && lastPacketInList)));
|
||||
pageIndex++;
|
||||
continued = true;
|
||||
|
Reference in New Issue
Block a user