Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 The WebM project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | #ifndef WEBMENC_H_ |
| 11 | #define WEBMENC_H_ |
| 12 | |
| 13 | #include <stdio.h> |
| 14 | #include <stdlib.h> |
| 15 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 16 | #include "tools_common.h" |
| 17 | #include "vpx/vpx_encoder.h" |
| 18 | |
James Zern | 25cfd8e | 2014-01-18 12:16:11 -0800 | [diff] [blame] | 19 | #ifdef __cplusplus |
| 20 | extern "C" { |
| 21 | #endif |
| 22 | |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 23 | /* TODO(vigneshv): Rename this struct */ |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 24 | struct EbmlGlobal { |
| 25 | int debug; |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 26 | FILE *stream; |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 27 | int64_t last_pts_ns; |
| 28 | void *writer; |
| 29 | void *segment; |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | /* Stereo 3D packed frame format */ |
| 33 | typedef enum stereo_format { |
Tom Finegan | 1f0c2e7 | 2013-11-06 10:02:31 -0800 | [diff] [blame] | 34 | STEREO_FORMAT_MONO = 0, |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 35 | STEREO_FORMAT_LEFT_RIGHT = 1, |
| 36 | STEREO_FORMAT_BOTTOM_TOP = 2, |
| 37 | STEREO_FORMAT_TOP_BOTTOM = 3, |
| 38 | STEREO_FORMAT_RIGHT_LEFT = 11 |
| 39 | } stereo_format_t; |
| 40 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 41 | void write_webm_file_header(struct EbmlGlobal *glob, |
| 42 | const vpx_codec_enc_cfg_t *cfg, |
| 43 | const struct vpx_rational *fps, |
| 44 | stereo_format_t stereo_fmt, |
Frank Galligan | 09acd26 | 2015-06-01 10:20:58 -0700 | [diff] [blame] | 45 | unsigned int fourcc, |
| 46 | const struct VpxRational *par); |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 47 | |
| 48 | void write_webm_block(struct EbmlGlobal *glob, |
| 49 | const vpx_codec_enc_cfg_t *cfg, |
| 50 | const vpx_codec_cx_pkt_t *pkt); |
| 51 | |
Vignesh Venkatasubramanian | 2dcbf8c | 2014-03-19 11:56:02 -0700 | [diff] [blame] | 52 | void write_webm_file_footer(struct EbmlGlobal *glob); |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 53 | |
James Zern | 25cfd8e | 2014-01-18 12:16:11 -0800 | [diff] [blame] | 54 | #ifdef __cplusplus |
| 55 | } // extern "C" |
| 56 | #endif |
| 57 | |
Tom Finegan | 03848f5 | 2013-11-05 10:02:18 -0800 | [diff] [blame] | 58 | #endif // WEBMENC_H_ |