shithub: libvpx

Download patch

ref: cd686f727ab7b3a6a30758a13d4bb77eb44afb3f
parent: 89077d4505f69d742e17efc259bdd4d1fae65e31
author: angiebird <angiebird@google.com>
date: Mon Nov 18 05:37:15 EST 2019

Move pimpl to the function body of SimpleEncode

Change-Id: Id4757d61916b8348d76c99dddbe48e68f2b3ef1a

--- a/vp9/simple_encode.cc
+++ b/vp9/simple_encode.cc
@@ -102,8 +102,8 @@
 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<impl>(new impl()) } {
+                           const char *infile_path) {
+  this->pimpl = std::unique_ptr<impl>(new impl());
   this->frame_width = frame_width;
   this->frame_height = frame_height;
   this->frame_rate_num = frame_rate_num;