Ver Fonte

Possibly fixes looping videos;

Fay há 10 anos atrás
pai
commit
b03eb56706
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      client/CVideoHandler.cpp

+ 1 - 1
client/CVideoHandler.cpp

@@ -261,7 +261,7 @@ bool CVideoPlayer::nextFrame()
 			if (doLoop && !gotError)
 			{
 				// Rewind
-				if (av_seek_frame(format, stream, 0, 0) < 0)
+				if (av_seek_frame(format, stream, 0, AVSEEK_FLAG_BYTE) < 0)
 					break;
 				gotError = true;
 			}