shithub: libvpx

Download patch

ref: af9aa25eb3ee934c7b3f92815a1598b4df84122a
parent: c852765d7d9378dbf95c1e170b8a24355baa5ec7
parent: b1ef3919b9f039c2536ae7fc69594be33625826a
author: Jerome Jiang <jianj@google.com>
date: Thu Feb 7 14:31:50 EST 2019

Merge "vp9: Write height and width to ivf header in SVC example encoder."

--- a/examples/vp9_spatial_svc_encoder.c
+++ b/examples/vp9_spatial_svc_encoder.c
@@ -822,6 +822,8 @@
 #endif
 
   info.codec_fourcc = VP9_FOURCC;
+  info.frame_width = enc_cfg.g_w;
+  info.frame_height = enc_cfg.g_h;
   info.time_base.numerator = enc_cfg.g_timebase.num;
   info.time_base.denominator = enc_cfg.g_timebase.den;