blob: 0b6b78e3d42074e6289692e6bc9d30ec48928ddb [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -07003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
11
12#include <assert.h>
13
14#include "av1/common/frame_buffers.h"
Yaowu Xuf883b422016-08-30 14:01:10 -070015#include "aom_mem/aom_mem.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070016
Yaowu Xuf883b422016-08-30 14:01:10 -070017int av1_alloc_internal_frame_buffers(InternalFrameBufferList *list) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070018 assert(list != NULL);
Yaowu Xuf883b422016-08-30 14:01:10 -070019 av1_free_internal_frame_buffers(list);
Yaowu Xuc27fc142016-08-22 16:08:15 -070020
21 list->num_internal_frame_buffers =
Yaowu Xuf883b422016-08-30 14:01:10 -070022 AOM_MAXIMUM_REF_BUFFERS + AOM_MAXIMUM_WORK_BUFFERS;
23 list->int_fb = (InternalFrameBuffer *)aom_calloc(
Yaowu Xuc27fc142016-08-22 16:08:15 -070024 list->num_internal_frame_buffers, sizeof(*list->int_fb));
25 return (list->int_fb == NULL);
26}
27
Yaowu Xuf883b422016-08-30 14:01:10 -070028void av1_free_internal_frame_buffers(InternalFrameBufferList *list) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070029 int i;
30
31 assert(list != NULL);
32
33 for (i = 0; i < list->num_internal_frame_buffers; ++i) {
Yaowu Xuf883b422016-08-30 14:01:10 -070034 aom_free(list->int_fb[i].data);
Yaowu Xuc27fc142016-08-22 16:08:15 -070035 list->int_fb[i].data = NULL;
36 }
Yaowu Xuf883b422016-08-30 14:01:10 -070037 aom_free(list->int_fb);
Yaowu Xuc27fc142016-08-22 16:08:15 -070038 list->int_fb = NULL;
39}
40
Yaowu Xuf883b422016-08-30 14:01:10 -070041int av1_get_frame_buffer(void *cb_priv, size_t min_size,
42 aom_codec_frame_buffer_t *fb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070043 int i;
44 InternalFrameBufferList *const int_fb_list =
45 (InternalFrameBufferList *)cb_priv;
46 if (int_fb_list == NULL) return -1;
47
48 // Find a free frame buffer.
49 for (i = 0; i < int_fb_list->num_internal_frame_buffers; ++i) {
50 if (!int_fb_list->int_fb[i].in_use) break;
51 }
52
53 if (i == int_fb_list->num_internal_frame_buffers) return -1;
54
55 if (int_fb_list->int_fb[i].size < min_size) {
Alex Converse7f094f12017-02-23 17:29:40 -080056 aom_free(int_fb_list->int_fb[i].data);
57 // The data must be zeroed to fix a valgrind error from the C loop filter
Yaowu Xuc27fc142016-08-22 16:08:15 -070058 // due to access uninitialized memory in frame border. It could be
Alex Converse7f094f12017-02-23 17:29:40 -080059 // skipped if border were totally removed.
60 int_fb_list->int_fb[i].data = (uint8_t *)aom_calloc(1, min_size);
61 if (!int_fb_list->int_fb[i].data) return -1;
Yaowu Xuc27fc142016-08-22 16:08:15 -070062 int_fb_list->int_fb[i].size = min_size;
63 }
64
65 fb->data = int_fb_list->int_fb[i].data;
66 fb->size = int_fb_list->int_fb[i].size;
67 int_fb_list->int_fb[i].in_use = 1;
68
69 // Set the frame buffer's private data to point at the internal frame buffer.
70 fb->priv = &int_fb_list->int_fb[i];
71 return 0;
72}
73
Yaowu Xuf883b422016-08-30 14:01:10 -070074int av1_release_frame_buffer(void *cb_priv, aom_codec_frame_buffer_t *fb) {
Yaowu Xuc27fc142016-08-22 16:08:15 -070075 InternalFrameBuffer *const int_fb = (InternalFrameBuffer *)fb->priv;
76 (void)cb_priv;
77 if (int_fb) int_fb->in_use = 0;
78 return 0;
79}