Fix a bug in vpxenc reading raw input frame
The bug was introduced in 00a35aab. The reading of raw yuv input frame was off by 4 bytes. Change-Id: I6923ea5528aa529a47a06b64adca8f94847f19a6
This commit is contained in:
parent
9e1e7bee48
commit
a7c7e78aa5
7
ivfdec.c
7
ivfdec.c
@ -61,11 +61,12 @@ int file_is_ivf(struct VpxInputContext *input_ctx) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!is_ivf)
|
if (!is_ivf) {
|
||||||
rewind(input_ctx->file);
|
rewind(input_ctx->file);
|
||||||
else
|
input_ctx->detect.buf_read = 0;
|
||||||
|
} else {
|
||||||
input_ctx->detect.position = 4;
|
input_ctx->detect.position = 4;
|
||||||
|
}
|
||||||
return is_ivf;
|
return is_ivf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user