2014-01-18 05:02:37 +04:00
|
|
|
/*
|
2016-03-24 22:08:51 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2014-01-18 05:02:37 +04:00
|
|
|
*
|
2016-03-24 22:08:51 +03:00
|
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
2014-01-18 05:02:37 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef Y4MENC_H_
|
|
|
|
#define Y4MENC_H_
|
|
|
|
|
|
|
|
#include "./tools_common.h"
|
|
|
|
|
2016-03-25 22:11:05 +03:00
|
|
|
#include "aom/aom_decoder.h"
|
2014-01-18 05:02:37 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-01-28 23:12:58 +04:00
|
|
|
#define Y4M_BUFFER_SIZE 128
|
2014-01-18 05:02:37 +04:00
|
|
|
|
2014-01-28 23:12:58 +04:00
|
|
|
int y4m_write_file_header(char *buf, size_t len, int width, int height,
|
2016-03-30 00:27:56 +03:00
|
|
|
const struct AvxRational *framerate,
|
2016-03-25 22:11:05 +03:00
|
|
|
aom_img_fmt_t fmt, unsigned int bit_depth);
|
2014-01-28 23:12:58 +04:00
|
|
|
int y4m_write_frame_header(char *buf, size_t len);
|
2014-01-18 05:02:37 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2014-01-18 05:02:37 +04:00
|
|
|
#endif // Y4MENC_H_
|