Skip to content

Commit

Permalink
Update x265_copy_params()
Browse files Browse the repository at this point in the history
Fix for issue #498
  • Loading branch information
Aruna_Matheswaran committed Jul 24, 2019
1 parent 404d4e9 commit 03cd6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common/param.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2372,7 +2372,7 @@ void x265_copy_params(x265_param* dst, x265_param* src)
dst->bLowPassDct = src->bLowPassDct;
dst->vbvBufferEnd = src->vbvBufferEnd;
dst->vbvEndFrameAdjust = src->vbvEndFrameAdjust;

dst->bAnalysisType = src->bAnalysisType;
dst->bCopyPicToFrame = src->bCopyPicToFrame;
if (src->analysisSave) dst->analysisSave=strdup(src->analysisSave);
else dst->analysisSave = NULL;
Expand Down

0 comments on commit 03cd6e7

Please sign in to comment.