2013-11-05 22:02:18 +04:00
|
|
|
/*
|
2016-09-02 00:32:49 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2013-11-05 22:02:18 +04:00
|
|
|
*
|
2016-09-02 00:32:49 +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.
|
2013-11-05 22:02:18 +04:00
|
|
|
*/
|
|
|
|
#ifndef WEBMENC_H_
|
|
|
|
#define WEBMENC_H_
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "tools_common.h"
|
2016-08-31 00:01:10 +03:00
|
|
|
#include "aom/aom_encoder.h"
|
2013-11-05 22:02:18 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-04-25 23:28:24 +03:00
|
|
|
struct WebmOutputContext {
|
2013-11-05 22:02:18 +04:00
|
|
|
int debug;
|
|
|
|
FILE *stream;
|
2014-03-19 22:56:02 +04:00
|
|
|
int64_t last_pts_ns;
|
|
|
|
void *writer;
|
|
|
|
void *segment;
|
2013-11-05 22:02:18 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Stereo 3D packed frame format */
|
|
|
|
typedef enum stereo_format {
|
2013-11-06 22:02:31 +04:00
|
|
|
STEREO_FORMAT_MONO = 0,
|
2013-11-05 22:02:18 +04:00
|
|
|
STEREO_FORMAT_LEFT_RIGHT = 1,
|
|
|
|
STEREO_FORMAT_BOTTOM_TOP = 2,
|
|
|
|
STEREO_FORMAT_TOP_BOTTOM = 3,
|
|
|
|
STEREO_FORMAT_RIGHT_LEFT = 11
|
|
|
|
} stereo_format_t;
|
|
|
|
|
2016-04-25 23:28:24 +03:00
|
|
|
void write_webm_file_header(struct WebmOutputContext *webm_ctx,
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_codec_enc_cfg_t *cfg,
|
|
|
|
const struct aom_rational *fps,
|
2016-08-09 05:03:30 +03:00
|
|
|
stereo_format_t stereo_fmt, unsigned int fourcc,
|
2016-08-31 00:01:10 +03:00
|
|
|
const struct AvxRational *par);
|
2013-11-05 22:02:18 +04:00
|
|
|
|
2016-04-25 23:28:24 +03:00
|
|
|
void write_webm_block(struct WebmOutputContext *webm_ctx,
|
2016-08-31 00:01:10 +03:00
|
|
|
const aom_codec_enc_cfg_t *cfg,
|
|
|
|
const aom_codec_cx_pkt_t *pkt);
|
2013-11-05 22:02:18 +04:00
|
|
|
|
2016-04-25 23:28:24 +03:00
|
|
|
void write_webm_file_footer(struct WebmOutputContext *webm_ctx);
|
2013-11-05 22:02:18 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2013-11-05 22:02:18 +04:00
|
|
|
#endif // WEBMENC_H_
|