Skip to content

Commit

Permalink
Merge pull request #167 from nixxquality/patch-1
Browse files Browse the repository at this point in the history
Fix utf8 argument on FFVideoSource
  • Loading branch information
tgoyne committed Jul 17, 2014
2 parents 63e1d76 + 873f7b7 commit 30adccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/avisynth/avisynth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ static AVSValue __cdecl CreateFFIndex(AVSValue Args, void* UserData, IScriptEnvi
}

static AVSValue __cdecl CreateFFVideoSource(AVSValue Args, void* UserData, IScriptEnvironment* Env) {
FFMS_Init(0, Args[15].AsBool(false));
FFMS_Init(0, Args[14].AsBool(false));

if (!Args[0].Defined())
Env->ThrowError("FFVideoSource: No source specified");
Expand Down

0 comments on commit 30adccf

Please sign in to comment.