blob: 1265a01ea1f7d8f5e4d7db32cf9f21638a443949 [file] [log] [blame]
/*
* Copyright 2023 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef __BITSTREAM_HELPER_IVF_H__
#define __BITSTREAM_HELPER_IVF_H__
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include "bitstream_helper.h"
bool init_bitstream_ivf(struct bitstream* bts);
size_t fill_compressed_buffer_ivf(uint8_t* dest,
size_t max_len,
struct bitstream* bts);
#endif // BITSTREAM_HELPER_IVF_H