Commit 2e0588bc authored by James Zern's avatar James Zern
Browse files

vp9_decoder_remove: destroy common after thread shutdown

in a failure case the threads may still be running and share a reference
to VP9_COMMON

Change-Id: I867034b4b55f133663b8cbf6ca06e72acf952849
Showing with 1 addition and 1 deletion
...@@ -85,7 +85,6 @@ void vp9_decoder_remove(VP9Decoder *pbi) { ...@@ -85,7 +85,6 @@ void vp9_decoder_remove(VP9Decoder *pbi) {
VP9_COMMON *const cm = &pbi->common; VP9_COMMON *const cm = &pbi->common;
int i; int i;
vp9_remove_common(cm);
vp9_get_worker_interface()->end(&pbi->lf_worker); vp9_get_worker_interface()->end(&pbi->lf_worker);
vpx_free(pbi->lf_worker.data1); vpx_free(pbi->lf_worker.data1);
vpx_free(pbi->tile_data); vpx_free(pbi->tile_data);
...@@ -103,6 +102,7 @@ void vp9_decoder_remove(VP9Decoder *pbi) { ...@@ -103,6 +102,7 @@ void vp9_decoder_remove(VP9Decoder *pbi) {
vp9_loop_filter_dealloc(&pbi->lf_row_sync, sb_rows); vp9_loop_filter_dealloc(&pbi->lf_row_sync, sb_rows);
} }
vp9_remove_common(cm);
vpx_free(pbi); vpx_free(pbi);
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment