1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
media / muxers / mp4_box_writer.h [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_MUXERS_MP4_BOX_WRITER_H_
#define MEDIA_MUXERS_MP4_BOX_WRITER_H_
#include <memory>
#include <optional>
#include <vector>
#include "base/memory/raw_ptr_exclusion.h"
#include "base/memory/raw_ref.h"
#include "base/sequence_checker.h"
#include "media/base/media_export.h"
#include "media/formats/mp4/fourccs.h"
namespace media {
class BoxByteStream;
class Mp4MuxerContext;
#define DECLARE_MP4_BOX_WRITER_CLASS_NO_DATA(class_name) \
class MEDIA_EXPORT class_name : public Mp4BoxWriter { \
public: \
explicit class_name(const Mp4MuxerContext& context); \
~class_name() override; \
class_name(const class_name&) = delete; \
class_name& operator=(const class_name&) = delete; \
void Write(BoxByteStream& writer) override; \
\
private: \
SEQUENCE_CHECKER(sequence_checker_); \
}
#define DECLARE_MP4_BOX_WRITER_CLASS(class_name, box_type) \
class MEDIA_EXPORT class_name : public Mp4BoxWriter { \
public: \
class_name(const Mp4MuxerContext& context, const box_type& box); \
~class_name() override; \
class_name(const class_name&) = delete; \
class_name& operator=(const class_name&) = delete; \
void Write(BoxByteStream& writer) override; \
\
private: \
const raw_ref<const box_type> box_; \
SEQUENCE_CHECKER(sequence_checker_); \
}
// The Mp4BoxWriter is parent class for all box writers.
// Every box writers must derive from Mp4BoxWriter.
// The Mp4BoxWriter has container for the children boxes and the derived box
// should add the children in its ctor, not any other places for better
// maintenance of the code.
class MEDIA_EXPORT Mp4BoxWriter {
public:
explicit Mp4BoxWriter(const Mp4MuxerContext& context);
virtual ~Mp4BoxWriter();
Mp4BoxWriter(const Mp4BoxWriter&) = delete;
Mp4BoxWriter& operator=(const Mp4BoxWriter&) = delete;
// Write the box that will also calls children's Write if it has any.
virtual void Write(BoxByteStream& writer) = 0;
// Same as `Write()` but creates a `BoxByteStream` and writes to `context`.
// It is expected that it will create box itself as well as its children.
size_t WriteAndFlush();
// Same as `WriteAndFlush()` but accept `BoxByteStream` as a parameter.
// It is expected that it write on input `BoxByteStream` object.
// `writer` must not have any opened box.
size_t WriteAndFlush(BoxByteStream& writer);
protected:
// Write for children boxes. The function will calls Write
// function of all children boxes.
void WriteChildren(BoxByteStream& writer);
// Add child box of the current box.
void AddChildBox(std::unique_ptr<Mp4BoxWriter> box_writer);
// Get the Mp4MuxerContext object.
const Mp4MuxerContext& context() const { return *context_; }
private:
const raw_ref<const Mp4MuxerContext, DanglingUntriaged> context_;
std::vector<std::unique_ptr<Mp4BoxWriter>> child_boxes_;
SEQUENCE_CHECKER(sequence_checker_);
};
} // namespace media
#endif // MEDIA_MUXERS_MP4_BOX_WRITER_H_