blob: 6344176ba4185feeb820d00fee3008a4bfdbf25a [file] [log] [blame]
Dmitry Kovalev5ab63582014-01-17 17:02:37 -08001/*
Yaowu Xu9c01aa12016-09-01 14:32:49 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Dmitry Kovalev5ab63582014-01-17 17:02:37 -08003 *
Yaowu Xu9c01aa12016-09-01 14:32:49 -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.
Dmitry Kovalev5ab63582014-01-17 17:02:37 -080010 */
11
12#ifndef Y4MENC_H_
13#define Y4MENC_H_
14
Yaowu Xuf883b422016-08-30 14:01:10 -070015#include "aom/aom_decoder.h"
Tom Finegandd3e2a52018-05-23 14:33:09 -070016#include "common/tools_common.h"
Dmitry Kovalev5ab63582014-01-17 17:02:37 -080017
James Zern25cfd8e2014-01-18 12:16:11 -080018#ifdef __cplusplus
19extern "C" {
20#endif
21
Dmitry Kovalev5260b392014-01-28 11:12:58 -080022#define Y4M_BUFFER_SIZE 128
Dmitry Kovalev5ab63582014-01-17 17:02:37 -080023
Dmitry Kovalev5260b392014-01-28 11:12:58 -080024int y4m_write_file_header(char *buf, size_t len, int width, int height,
Yaowu Xuf883b422016-08-30 14:01:10 -070025 const struct AvxRational *framerate,
26 aom_img_fmt_t fmt, unsigned int bit_depth);
Dmitry Kovalev5260b392014-01-28 11:12:58 -080027int y4m_write_frame_header(char *buf, size_t len);
Dmitry Kovalev5ab63582014-01-17 17:02:37 -080028
James Zern25cfd8e2014-01-18 12:16:11 -080029#ifdef __cplusplus
30} // extern "C"
31#endif
32
Dmitry Kovalev5ab63582014-01-17 17:02:37 -080033#endif // Y4MENC_H_