From: angiebird Date: Mon, 18 Nov 2019 18:37:15 +0000 (-0800) Subject: Move pimpl to the function body of SimpleEncode X-Git-Tag: v1.8.2~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd686f727ab7b3a6a30758a13d4bb77eb44afb3f;p=libvpx Move pimpl to the function body of SimpleEncode Change-Id: Id4757d61916b8348d76c99dddbe48e68f2b3ef1a --- diff --git a/vp9/simple_encode.cc b/vp9/simple_encode.cc index 20a4567df..458f136f4 100644 --- a/vp9/simple_encode.cc +++ b/vp9/simple_encode.cc @@ -102,8 +102,8 @@ static void update_encode_frame_result( SimpleEncode::SimpleEncode(int frame_width, int frame_height, int frame_rate_num, int frame_rate_den, int target_bitrate, int num_frames, - const char *infile_path) - : pimpl{ std::unique_ptr(new impl()) } { + const char *infile_path) { + this->pimpl = std::unique_ptr(new impl()); this->frame_width = frame_width; this->frame_height = frame_height; this->frame_rate_num = frame_rate_num;