From cd686f727ab7b3a6a30758a13d4bb77eb44afb3f Mon Sep 17 00:00:00 2001 From: angiebird Date: Mon, 18 Nov 2019 10:37:15 -0800 Subject: Move pimpl to the function body of SimpleEncode Change-Id: Id4757d61916b8348d76c99dddbe48e68f2b3ef1a --- vp9/simple_encode.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vp9/simple_encode.cc') 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; -- cgit v1.2.3