shithub: dav1d

Download patch

ref: 76f5660686afe40ed641f73f48c5be91eab9cb1b
parent: c5622d8912e4bae964a94a594503536629b61d09
author: Nathan E. Egge <unlord@xiph.org>
date: Wed Nov 21 01:23:24 EST 2018

Rewrite the y4m header to match aomdec.

--- a/tools/output/y4m2.c
+++ b/tools/output/y4m2.c
@@ -66,8 +66,8 @@
         chr_names_8bpc_i420[p->chr > 2 ? DAV1D_CHR_UNKNOWN : p->chr] :
         ss_names[p->layout][p->bpc > 8];
 
-    fprintf(c->f, "YUV4MPEG2 W%d H%d C%s Ip F%d:%d\n",
-            p->w, p->h, ss_name, fps[0], fps[1]);
+    fprintf(c->f, "YUV4MPEG2 W%d H%d F%d:%d Ip C%s\n",
+            p->w, p->h, fps[0], fps[1], ss_name);
 
     return 0;
 }