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
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2018-11-22 03:29:30 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2018-11-22 03:29:48 +0300
commit1233786034f8225fd4dc27acee54af4f70905b37 (patch)
tree55d791042876c5a632a00b60d2d8dbbf85ea92b0
parent9abc87473179dcfafb455cf1890a90e5112625d6 (diff)
Set correct width for post-scaling picture if super-res is enabled
Fixed 00000802.ivf.
-rw-r--r--src/picture.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/picture.c b/src/picture.c
index 07aefdf..2e48e8a 100644
--- a/src/picture.c
+++ b/src/picture.c
@@ -184,6 +184,7 @@ int dav1d_picture_alloc_copy(Dav1dPicture *const dst, const int w,
if (!res) {
dst->poc = src->poc;
dst->p = src->p;
+ dst->p.w = w;
}
return res;