Task #894 - fixed.err
back to task #894download
Error: COMPILER_WARNING: live555-2023.06.20-build/live/liveMedia/MPEGVideoStreamFramer.cpp: scope_hint: In member function ‘void MPEGVideoStreamFramer::setTimeCode(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int)’ live555-2023.06.20-build/live/liveMedia/MPEGVideoStreamFramer.cpp:132:33: warning: C++20 says that these are ambiguous, even though the second is reversed: # 132 | } else if (fCurGOPTimeCode == fPrevGOPTimeCode) { # | ^~~~~~~~~~~~~~~~ live555-2023.06.20-build/live/liveMedia/MPEGVideoStreamFramer.cpp:34:5: note: candidate 1: ‘int TimeCode::operator==(const TimeCode&)’ # 34 | int TimeCode::operator==(TimeCode const& arg2) { # | ^~~~~~~~ live555-2023.06.20-build/live/liveMedia/MPEGVideoStreamFramer.cpp:34:5: note: candidate 2: ‘int TimeCode::operator==(const TimeCode&)’ (reversed) live555-2023.06.20-build/live/liveMedia/MPEGVideoStreamFramer.cpp:34:5: note: try making the operator a ‘const’ member function # 130| fTcSecsBase = (((tc.days*24)+tc.hours)*60+tc.minutes)*60+tc.seconds; # 131| fHaveSeenFirstTimeCode = True; # 132|-> } else if (fCurGOPTimeCode == fPrevGOPTimeCode) { # 133| // The time code has not changed since last time. Adjust for this: # 134| fPicturesAdjustment += picturesSinceLastGOP;