diff options
Diffstat (limited to 'third_party/aom/av1/common/alloccommon.h')
-rw-r--r-- | third_party/aom/av1/common/alloccommon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/aom/av1/common/alloccommon.h b/third_party/aom/av1/common/alloccommon.h index 0d420f8257..dbcb5b9470 100644 --- a/third_party/aom/av1/common/alloccommon.h +++ b/third_party/aom/av1/common/alloccommon.h @@ -23,15 +23,17 @@ struct BufferPool; void av1_remove_common(struct AV1Common *cm); +int av1_alloc_above_context_buffers(struct AV1Common *cm, + int num_alloc_above_contexts); +void av1_free_above_context_buffers(struct AV1Common *cm, + int num_free_above_contexts); int av1_alloc_context_buffers(struct AV1Common *cm, int width, int height); void av1_init_context_buffers(struct AV1Common *cm); void av1_free_context_buffers(struct AV1Common *cm); void av1_free_ref_frame_buffers(struct BufferPool *pool); -#if CONFIG_LOOP_RESTORATION void av1_alloc_restoration_buffers(struct AV1Common *cm); void av1_free_restoration_buffers(struct AV1Common *cm); -#endif // CONFIG_LOOP_RESTORATION int av1_alloc_state_buffers(struct AV1Common *cm, int width, int height); void av1_free_state_buffers(struct AV1Common *cm); @@ -39,8 +41,6 @@ void av1_free_state_buffers(struct AV1Common *cm); void av1_set_mb_mi(struct AV1Common *cm, int width, int height); int av1_get_MBs(int width, int height); -void av1_swap_current_and_last_seg_map(struct AV1Common *cm); - #ifdef __cplusplus } // extern "C" #endif |