Skip to content

Commit

Permalink
Add evStartFrameAtOne to enable the old behaviour if necessary
Browse files Browse the repository at this point in the history
Signed-off-by: Éloïse Brosseau <[email protected]>
  • Loading branch information
eloisebrosseau committed Dec 17, 2024
1 parent e0175ac commit 521658f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/lib/image/MovieFFMpeg/MovieFFMpeg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ extern "C" {
//#include <libavcodec/ass_split.h>
}

static ENVVAR_BOOL( evUseUploadedMovieForStreaming, "RV_SHOTGRID_USE_UPLOADED_MOVIE_FOR_STREAMING", false );
namespace {
ENVVAR_BOOL( evUseUploadedMovieForStreaming, "RV_SHOTGRID_USE_UPLOADED_MOVIE_FOR_STREAMING", false );
ENVVAR_BOOL(evStartFrameAtOne, "RV_START_FRAME_AT_ONE", false);
}

namespace TwkMovie {

Expand Down Expand Up @@ -1330,9 +1333,13 @@ MovieFFMpegReader::getFirstFrame(AVRational rate)
// format start time, then we have to assume that the source's start is
// offset by the given positive value.
//

int64_t firstFrame = std::max(static_cast<int64_t>(0), static_cast<int64_t>(0.49 + av_q2d(rate) *
static_cast<double>(m_avFormatContext->start_time) / static_cast<double>(AV_TIME_BASE)));
if (evStartFrameAtOne.getValue())
{
firstFrame = max(int64_t(m_formatStartFrame), int64_t(1));
}

for (int i = 0; i < m_avFormatContext->nb_streams; i++)
{
Expand Down

0 comments on commit 521658f

Please sign in to comment.