2
0
Эх сурвалжийг харах

Possibly fixes looping videos;

Fay 10 жил өмнө
parent
commit
b03eb56706

+ 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;
 			}