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 d1f9e96 commit fd68773
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 @@ -2410,7 +2410,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 fd68773

Please sign in to comment.