blob: 248940f3cacb9862ab0a46a2fd853be78760a166 [file] [log] [blame]
Joe Drago444f0512019-01-23 17:03:24 -08001// Copyright 2019 Joe Drago. All rights reserved.
2// SPDX-License-Identifier: BSD-2-Clause
3
4#include "avif/avif.h"
5
6#include <string.h>
7
Joe Drago345aaa12019-09-25 13:42:12 -07008void avifRWDataRealloc(avifRWData * raw, size_t newSize)
Joe Drago444f0512019-01-23 17:03:24 -08009{
10 if (raw->size != newSize) {
11 uint8_t * old = raw->data;
12 size_t oldSize = raw->size;
13 raw->data = avifAlloc(newSize);
14 raw->size = newSize;
15 if (oldSize) {
16 size_t bytesToCopy = (oldSize < raw->size) ? oldSize : raw->size;
17 memcpy(raw->data, old, bytesToCopy);
18 avifFree(old);
19 }
20 }
21}
22
Joe Drago345aaa12019-09-25 13:42:12 -070023void avifRWDataSet(avifRWData * raw, const uint8_t * data, size_t len)
Joe Drago444f0512019-01-23 17:03:24 -080024{
25 if (len) {
Joe Drago345aaa12019-09-25 13:42:12 -070026 avifRWDataRealloc(raw, len);
Joe Drago444f0512019-01-23 17:03:24 -080027 memcpy(raw->data, data, len);
28 } else {
Joe Drago5932a052019-11-22 07:37:05 -080029 avifRWDataFree(raw);
Joe Drago444f0512019-01-23 17:03:24 -080030 }
31}
32
Joe Drago345aaa12019-09-25 13:42:12 -070033void avifRWDataFree(avifRWData * raw)
Joe Drago444f0512019-01-23 17:03:24 -080034{
35 avifFree(raw->data);
36 raw->data = NULL;
37 raw->size = 0;
38}