
Cherry-Picked the following commits: 0defd8f Changed "WebM" to "AOMedia" & "webm" to "aomedia" 54e6676 Replace "VPx" by "AVx" 5082a36 Change "Vpx" to "Avx" 7df44f1 Replace "Vp9" w/ "Av1" 967f722 Remove kVp9CodecId 828f30c Change "Vp8" to "AOM" 030b5ff AUTHORS regenerated 2524cae Add ref-mv experimental flag 016762b Change copyright notice to AOMedia form 81e5526 Replace vp9 w/ av1 9b94565 Add missing files fa8ca9f Change "vp9" to "av1" ec838b7 Convert "vp8" to "aom" 80edfa0 Change "VP9" to "AV1" d1a11fb Change "vp8" to "aom" 7b58251 Point to WebM test data dd1a5c8 Replace "VP8" with "AOM" ff00fc0 Change "VPX" to "AOM" 01dee0b Change "vp10" to "av1" in source code cebe6f0 Convert "vpx" to "aom" 17b0567 rename vp10*.mk to av1_*.mk fe5f8a8 rename files vp10_* to av1_* Change-Id: I6fc3d18eb11fc171e46140c836ad5339cf6c9419
57 lines
1.5 KiB
C
57 lines
1.5 KiB
C
/*
|
|
* Copyright (c) 2013 The WebM project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
#ifndef WEBMENC_H_
|
|
#define WEBMENC_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "tools_common.h"
|
|
#include "aom/aom_encoder.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct WebmOutputContext {
|
|
int debug;
|
|
FILE *stream;
|
|
int64_t last_pts_ns;
|
|
void *writer;
|
|
void *segment;
|
|
};
|
|
|
|
/* Stereo 3D packed frame format */
|
|
typedef enum stereo_format {
|
|
STEREO_FORMAT_MONO = 0,
|
|
STEREO_FORMAT_LEFT_RIGHT = 1,
|
|
STEREO_FORMAT_BOTTOM_TOP = 2,
|
|
STEREO_FORMAT_TOP_BOTTOM = 3,
|
|
STEREO_FORMAT_RIGHT_LEFT = 11
|
|
} stereo_format_t;
|
|
|
|
void write_webm_file_header(struct WebmOutputContext *webm_ctx,
|
|
const aom_codec_enc_cfg_t *cfg,
|
|
const struct aom_rational *fps,
|
|
stereo_format_t stereo_fmt, unsigned int fourcc,
|
|
const struct AvxRational *par);
|
|
|
|
void write_webm_block(struct WebmOutputContext *webm_ctx,
|
|
const aom_codec_enc_cfg_t *cfg,
|
|
const aom_codec_cx_pkt_t *pkt);
|
|
|
|
void write_webm_file_footer(struct WebmOutputContext *webm_ctx);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // WEBMENC_H_
|