summaryrefslogtreecommitdiff
path: root/vp8/encoder
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2016-08-22 15:46:20 +0000
committerMarco Paniconi <marpan@google.com>2016-08-22 15:46:20 +0000
commitde075a95e015686c03dea3f40884a018dc6ab1c5 (patch)
tree39d5841a68e70fb2d1d1b3b1de54a5eb2f6efd3b /vp8/encoder
parentc2fe9acceda922ca1d9f0d6185b340560b93597a (diff)
downloadlibvpx-de075a95e015686c03dea3f40884a018dc6ab1c5.tar
libvpx-de075a95e015686c03dea3f40884a018dc6ab1c5.tar.gz
libvpx-de075a95e015686c03dea3f40884a018dc6ab1c5.tar.bz2
libvpx-de075a95e015686c03dea3f40884a018dc6ab1c5.zip
Revert "vp8: Move loopfilter synchronization to end of encode_frame call."
This reverts commit c2fe9acceda922ca1d9f0d6185b340560b93597a. This change break linux browser test in chromium: https://build.chromium.org/p/chromium.webrtc/builders/Linux%20Tester Change-Id: I226782fad480c17a99ec6c785ad93cf4ab88f0ae
Diffstat (limited to 'vp8/encoder')
-rw-r--r--vp8/encoder/onyx_if.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 10f853394..434429e8a 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -4392,6 +4392,13 @@ static void encode_frame_to_data_rate(VP8_COMP *cpi, unsigned long *size,
/* build the bitstream */
vp8_pack_bitstream(cpi, dest, dest_end, size);
+#if CONFIG_MULTITHREAD
+ /* wait for the lpf thread done */
+ if (cpi->b_multi_threaded) {
+ sem_wait(&cpi->h_event_end_lpf);
+ }
+#endif
+
/* Move storing frame_type out of the above loop since it is also
* needed in motion search besides loopfilter */
cm->last_frame_type = cm->frame_type;
@@ -5228,13 +5235,6 @@ int vp8_get_compressed_data(VP8_COMP *cpi, unsigned int *frame_flags,
cpi->common.error.setjmp = 0;
-#if CONFIG_MULTITHREAD
- /* wait for the lpf thread done */
- if (cpi->b_multi_threaded) {
- sem_wait(&cpi->h_event_end_lpf);
- }
-#endif
-
return 0;
}