Fix bug introduced by commit 0156308
When fixing one bug in av1_decode_tg_tiles_and_wrapup, I seem to have
introduced another bug. This was due to checking the wrong condition
on whether to update the frame context at the end of the frame.
BUG=aomedia:1001
Change-Id: I929a710e2de31a89cc7899fb1605ca7edf968a87
diff --git a/av1/decoder/decodeframe.c b/av1/decoder/decodeframe.c
index fc951bb..44ab9a3 100644
--- a/av1/decoder/decodeframe.c
+++ b/av1/decoder/decodeframe.c
@@ -3887,7 +3887,8 @@
#endif
// Non frame parallel update frame context here.
- if (cm->refresh_frame_context != REFRESH_FRAME_CONTEXT_FORWARD) {
+ if (!cm->frame_parallel_decode ||
+ cm->refresh_frame_context != REFRESH_FRAME_CONTEXT_FORWARD) {
#if CONFIG_NO_FRAME_CONTEXT_SIGNALING
cm->frame_contexts[cm->new_fb_idx] = *cm->fc;
#else