VirtualBox

source: vbox/trunk/src/VBox/Main/src-client/EBMLWriter.h@ 69222

Last change on this file since 69222 was 69192, checked in by vboxsync, 7 years ago

Main/EBMLWriter.cpp: Renaming.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/VBox-3.0/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h58652,​70973
    /branches/VBox-3.2/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h66309,​66318
    /branches/VBox-4.0/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h70873
    /branches/VBox-4.1/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h74233
    /branches/VBox-4.2/src/VBox/Main/src-client/EbmlWriter.h91503-91504,​91506-91508,​91510,​91514-91515,​91521
    /branches/VBox-4.3/src/VBox/Main/src-client/EbmlWriter.h91223
    /branches/VBox-4.3/trunk/src/VBox/Main/src-client/EbmlWriter.h91223
    /branches/dsen/gui/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h79076-79078,​79089,​79109-79110,​79112-79113,​79127-79130,​79134,​79141,​79151,​79155,​79157-79159,​79193,​79197
    /branches/dsen/gui2/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h79224,​79228,​79233,​79235,​79258,​79262-79263,​79273,​79341,​79345,​79354,​79357,​79387-79388,​79559-79569,​79572-79573,​79578,​79581-79582,​79590-79591,​79598-79599,​79602-79603,​79605-79606,​79632,​79635,​79637,​79644
    /branches/dsen/gui3/src/VBox/Frontends/VBoxHeadless/VideoCapture/EbmlWriter.h79645-79692
File size: 4.4 KB
Line 
1/* $Id: EBMLWriter.h 69192 2017-10-24 09:12:17Z vboxsync $ */
2/** @file
3 * EbmlWriter.h - EBML writer + WebM container.
4 */
5
6/*
7 * Copyright (C) 2013-2017 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#ifndef ____EBMLWRITER
19#define ____EBMLWRITER
20
21#ifdef VBOX_WITH_LIBVPX
22# ifdef _MSC_VER
23# pragma warning(push)
24# pragma warning(disable: 4668) /* vpx_codec.h(64) : warning C4668: '__GNUC__' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' */
25# include <vpx/vpx_encoder.h>
26# pragma warning(pop)
27# else
28# include <vpx/vpx_encoder.h>
29# endif
30#endif /* VBOX_WITH_LIBVPX */
31
32#include <iprt/file.h>
33
34#include <VBox/com/string.h> /* For Utf8Str. */
35
36using namespace com;
37
38class WebMWriter_Impl;
39
40class WebMWriter
41{
42
43public:
44
45 /**
46 * Supported audio codecs.
47 */
48 enum AudioCodec
49 {
50 /** No audio codec specified. */
51 AudioCodec_None = 0,
52 /** Opus. */
53 AudioCodec_Opus = 1
54 };
55
56 /**
57 * Supported video codecs.
58 */
59 enum VideoCodec
60 {
61 /** No video codec specified. */
62 VideoCodec_None = 0,
63 /** VP8. */
64 VideoCodec_VP8 = 1
65 };
66
67#ifdef VBOX_WITH_LIBVPX
68 /**
69 * Block data for VP8-encoded video data.
70 */
71 struct BlockData_VP8
72 {
73 const vpx_codec_enc_cfg_t *pCfg;
74 const vpx_codec_cx_pkt_t *pPkt;
75 };
76#endif /* VBOX_WITH_LIBVPX */
77
78#ifdef VBOX_WITH_LIBOPUS
79 /**
80 * Block data for Opus-encoded audio data.
81 */
82 struct BlockData_Opus
83 {
84 /** Pointer to encoded Opus audio data. */
85 const void *pvData;
86 /** Size (in bytes) of encoded Opus audio data. */
87 size_t cbData;
88 /** PTS (in ms) of encoded Opus audio data. */
89 uint64_t uPTSMs;
90 };
91#endif /* VBOX_WITH_LIBOPUS */
92
93public:
94
95 WebMWriter();
96 virtual ~WebMWriter();
97
98 /**
99 * Opens (creates) an output file using an already open file handle.
100 *
101 * @param a_pszFilename Name of the file the file handle points at.
102 * @param a_phFile Pointer to open file handle to use.
103 * @param a_enmAudioCodec Audio codec to use.
104 * @param a_enmVideoCodec Video codec to use.
105 *
106 * @returns VBox status code. */
107 int OpenEx(const char *a_pszFilename, PRTFILE a_phFile,
108 WebMWriter::AudioCodec a_enmAudioCodec, WebMWriter::VideoCodec a_enmVideoCodec);
109
110 /**
111 * Opens an output file.
112 *
113 * @param a_pszFilename Name of the file to create.
114 * @param a_fOpen File open mode of type RTFILE_O_.
115 * @param a_enmAudioCodec Audio codec to use.
116 * @param a_enmVideoCodec Video codec to use.
117 *
118 * @returns VBox status code. */
119 int Open(const char *a_pszFilename, uint64_t a_fOpen,
120 WebMWriter::AudioCodec a_enmAudioCodec, WebMWriter::VideoCodec a_enmVideoCodec);
121
122 /** Closes output file. */
123 int Close(void);
124
125 int AddAudioTrack(uint16_t uHz, uint8_t cChannels, uint8_t cBits, uint8_t *puTrack);
126
127 int AddVideoTrack(uint16_t uWidth, uint16_t uHeight, double dbFPS, uint8_t *puTrack);
128
129 /**
130 * Writes a block of compressed data.
131 *
132 * @param uTrack Track number to write data to.
133 * @param pvData Pointer to block data to write.
134 * @param cbData Size (in bytes) of block data to write.
135 *
136 * @returns VBox status code.
137 */
138 int WriteBlock(uint8_t uTrack, const void *pvData, size_t cbData);
139
140 /**
141 * Gets file name.
142 *
143 * @returns File name as UTF-8 string.
144 */
145 const Utf8Str& GetFileName(void);
146
147 /**
148 * Gets current output file size.
149 *
150 * @returns File size in bytes.
151 */
152 uint64_t GetFileSize(void);
153
154 /**
155 * Gets current free storage space available for the file.
156 *
157 * @returns Available storage free space.
158 */
159 uint64_t GetAvailableSpace(void);
160
161private:
162
163 /** WebMWriter implementation.
164 * To isolate some include files. */
165 WebMWriter_Impl *m_pImpl;
166
167 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP(WebMWriter);
168};
169
170#endif /* !____EBMLWRITER */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette