Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNathan E. Egge <unlord@xiph.org>2018-11-21 14:23:24 +0300
committerNathan E. Egge <unlord@xiph.org>2018-11-21 14:23:24 +0300
commit76f5660686afe40ed641f73f48c5be91eab9cb1b (patch)
tree380720dae8fc02933d9cd4f5007ccd1b796c28ac /tools
parentc5622d8912e4bae964a94a594503536629b61d09 (diff)
Rewrite the y4m header to match aomdec.
Diffstat (limited to 'tools')
-rw-r--r--tools/output/y4m2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/output/y4m2.c b/tools/output/y4m2.c
index 87cee13..75d23ae 100644
--- a/tools/output/y4m2.c
+++ b/tools/output/y4m2.c
@@ -66,8 +66,8 @@ static int y4m2_open(Y4m2OutputContext *const c, const char *const file,
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;
}