ref: 2a330793160ce56ce985e1723725188b235c26c5
parent: ca4aefeee18658b44c1ef8f02fb4141052d03229
author: Sigrid Haflínudóttir <ftrvxmtrx@gmail.com>
date: Sun Sep 20 18:05:55 EDT 2020
fix mc/ivf priority again
--- a/decoder_vpx.c
+++ b/decoder_vpx.c
@@ -53,7 +53,6 @@
f->crop.bottom = im->d_h;
yuv420_rgb24(im->w, im->h, im->planes[0], im->planes[1], im->planes[2], im->stride[0], im->stride[1], f->rgb, f->w*3);
vpx_img_free(im);
- fprint(2, "%zd %zd %g\n", sf.timestamp, lasttimestamp, d->timebase);
f->dt = (sf.timestamp - lasttimestamp) * d->timebase * 1000000000ULL;
lasttimestamp = sf.timestamp;
--- a/stream.c
+++ b/stream.c
@@ -8,8 +8,8 @@
char *name;
Streamops *o;
}ops[] = {
- {"mc", &mcops},
{"ivf", &ivfops},
+ {"mc", &mcops},
{"audio", &audops},
};