aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/vp9.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-03-08 09:21:42 -0400
committerMichael Niedermayer <michaelni@gmx.at>2015-03-08 14:50:11 +0100
commit0b69c53a610af9cc9d4690929e009594f096e846 (patch)
tree489ed0d382c038d895288214f54b7028ed6590e6 /libavcodec/vp9.c
parent4ba8f3273e218553a0717857b9f422049c691141 (diff)
downloadffmpeg-0b69c53a610af9cc9d4690929e009594f096e846.tar.gz
vp9: included uses_2pass member in vp9_ref_frame().
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp9.c')
-rw-r--r--libavcodec/vp9.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c
index 221dfb6879..265dc7ed5d 100644
--- a/libavcodec/vp9.c
+++ b/libavcodec/vp9.c
@@ -301,6 +301,7 @@ static int vp9_ref_frame(AVCodecContext *ctx, VP9Frame *dst, VP9Frame *src)
dst->segmentation_map = src->segmentation_map;
dst->mv = src->mv;
+ dst->uses_2pass = src->uses_2pass;
return 0;
}