1 | /* $Id: EbmlWriter.h 52901 2014-09-30 15:32:03Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * EbmlWriter.h - EBML writer + WebM container.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2013-2014 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*
|
---|
19 | * This code is based on:
|
---|
20 | *
|
---|
21 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
---|
22 | *
|
---|
23 | * Use of this source code is governed by a BSD-style license
|
---|
24 | * that can be found in the LICENSE file in the root of the source
|
---|
25 | * tree. An additional intellectual property rights grant can be found
|
---|
26 | * in the file PATENTS. All contributing project authors may
|
---|
27 | * be found in the AUTHORS file in the root of the source tree.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ____EBMLWRITER
|
---|
31 | #define ____EBMLWRITER
|
---|
32 |
|
---|
33 | #include <vpx/vpx_encoder.h>
|
---|
34 |
|
---|
35 | class WebMWriter_Impl;
|
---|
36 |
|
---|
37 | class WebMWriter
|
---|
38 | {
|
---|
39 | public:
|
---|
40 | WebMWriter();
|
---|
41 | virtual ~WebMWriter();
|
---|
42 |
|
---|
43 | /* Creates output file
|
---|
44 | *
|
---|
45 | * @param a_pszFilename Name of the file to create.
|
---|
46 | *
|
---|
47 | * @returns VBox status code. */
|
---|
48 | int create(const char *a_pszFilename);
|
---|
49 |
|
---|
50 | /* Closes output file. */
|
---|
51 | void close();
|
---|
52 |
|
---|
53 | /* Writes WebM header to file.
|
---|
54 | * Should be called before any writeBlock call.
|
---|
55 | *
|
---|
56 | * @param a_pCfg Pointer to VPX Codec configuration structure.
|
---|
57 | * @param a_pFps Framerate information (frames per second).
|
---|
58 | *
|
---|
59 | * @returns VBox status code.
|
---|
60 | */
|
---|
61 | int writeHeader(const vpx_codec_enc_cfg_t *a_pCfg, const vpx_rational *a_pFps);
|
---|
62 |
|
---|
63 | /* Writes a block of compressed data
|
---|
64 | *
|
---|
65 | * @param a_pCfg Pointer to VPX Codec configuration structure.
|
---|
66 | * @param a_pPkt VPX data packet.
|
---|
67 | *
|
---|
68 | * @returns VBox status code.
|
---|
69 | */
|
---|
70 | int writeBlock(const vpx_codec_enc_cfg_t *a_pCfg, const vpx_codec_cx_pkt_t *a_pPkt);
|
---|
71 |
|
---|
72 | /* Writes WebM footer.
|
---|
73 | * No other write functions should be called after this one.
|
---|
74 | * @param a_u64Hash Hash value for the data written.
|
---|
75 | *
|
---|
76 | * @returns VBox status code.
|
---|
77 | */
|
---|
78 | int writeFooter(uint32_t a_u64Hash);
|
---|
79 |
|
---|
80 | /* Gets current output file size.
|
---|
81 | * @returns File size in bytes.
|
---|
82 | */
|
---|
83 | uint64_t getFileSize();
|
---|
84 |
|
---|
85 | /* Gets current free storage space
|
---|
86 | * available for the file.
|
---|
87 | *
|
---|
88 | * @returns Available storage free space.
|
---|
89 | */
|
---|
90 | uint64_t getAvailableSpace();
|
---|
91 |
|
---|
92 | private:
|
---|
93 | /* WebMWriter implementation.
|
---|
94 | * To isolate some include files */
|
---|
95 | WebMWriter_Impl *m_Impl;
|
---|
96 |
|
---|
97 | /* Not defined */
|
---|
98 | void operator=(const WebMWriter &);
|
---|
99 | WebMWriter(const WebMWriter &);
|
---|
100 | };
|
---|
101 |
|
---|
102 | #endif
|
---|