Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/VideoTexture/VideoFFmpeg.cpp')
-rw-r--r--source/gameengine/VideoTexture/VideoFFmpeg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/gameengine/VideoTexture/VideoFFmpeg.cpp b/source/gameengine/VideoTexture/VideoFFmpeg.cpp
index 0ee2f23521c..aa8496431d9 100644
--- a/source/gameengine/VideoTexture/VideoFFmpeg.cpp
+++ b/source/gameengine/VideoTexture/VideoFFmpeg.cpp
@@ -844,7 +844,7 @@ void VideoFFmpeg::setPositions (void)
m_startTime -= double(m_lastFrame) / actFrameRate();
else {
m_startTime -= m_range[0];
- // start from begining, stop cache just in case
+ // start from beginning, stop cache just in case
stopCache();
}
}
@@ -959,7 +959,7 @@ AVFrame *VideoFFmpeg::grabFrame(long position)
// of the file.
if (position <= m_preseek)
{
- // we can safely go the begining of the file
+ // we can safely go the beginning of the file
if (av_seek_frame(m_formatCtx, m_videoStream, 0, AVSEEK_FLAG_BYTE) >= 0)
{
// binary seek does not reset the timestamp, must do it now