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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/mojo/services/mojo_demuxer_stream_impl.h"
#include "base/bind.h"
#include "media/base/audio_decoder_config.h"
#include "media/base/decoder_buffer.h"
#include "media/base/video_decoder_config.h"
#include "media/mojo/services/media_type_converters.h"
#include "third_party/mojo/src/mojo/public/cpp/system/data_pipe.h"
namespace media {
MojoDemuxerStreamImpl::MojoDemuxerStreamImpl(
media::DemuxerStream* stream,
mojo::InterfaceRequest<interfaces::DemuxerStream> request)
: binding_(this, request.Pass()), stream_(stream), weak_factory_(this) {}
MojoDemuxerStreamImpl::~MojoDemuxerStreamImpl() {
}
// This is called when our DemuxerStreamClient has connected itself and is
// ready to receive messages. Send an initial config and notify it that
// we are now ready for business.
void MojoDemuxerStreamImpl::Initialize(const InitializeCallback& callback) {
DVLOG(2) << __FUNCTION__;
MojoCreateDataPipeOptions options;
options.struct_size = sizeof(MojoCreateDataPipeOptions);
options.flags = MOJO_CREATE_DATA_PIPE_OPTIONS_FLAG_NONE;
options.element_num_bytes = 1;
// Allocate DataPipe sizes based on content type to reduce overhead. If this
// is still too burdensome we can adjust for sample rate or resolution.
if (stream_->type() == media::DemuxerStream::VIDEO) {
// Video can get quite large; at 4K, VP9 delivers packets which are ~1MB in
// size; so allow for 50% headroom.
options.capacity_num_bytes = 1.5 * (1024 * 1024);
} else {
// Other types don't require a lot of room, so use a smaller pipe.
options.capacity_num_bytes = 512 * 1024;
}
mojo::DataPipe data_pipe(options);
stream_pipe_ = data_pipe.producer_handle.Pass();
// Prepare the initial config.
interfaces::AudioDecoderConfigPtr audio_config;
interfaces::VideoDecoderConfigPtr video_config;
if (stream_->type() == media::DemuxerStream::AUDIO) {
audio_config =
interfaces::AudioDecoderConfig::From(stream_->audio_decoder_config());
} else if (stream_->type() == media::DemuxerStream::VIDEO) {
video_config =
interfaces::VideoDecoderConfig::From(stream_->video_decoder_config());
} else {
NOTREACHED() << "Unsupported stream type: " << stream_->type();
return;
}
callback.Run(static_cast<interfaces::DemuxerStream::Type>(stream_->type()),
data_pipe.consumer_handle.Pass(), audio_config.Pass(),
video_config.Pass());
}
void MojoDemuxerStreamImpl::Read(const ReadCallback& callback) {
stream_->Read(base::Bind(&MojoDemuxerStreamImpl::OnBufferReady,
weak_factory_.GetWeakPtr(), callback));
}
void MojoDemuxerStreamImpl::OnBufferReady(
const ReadCallback& callback,
media::DemuxerStream::Status status,
const scoped_refptr<media::DecoderBuffer>& buffer) {
interfaces::AudioDecoderConfigPtr audio_config;
interfaces::VideoDecoderConfigPtr video_config;
if (status == media::DemuxerStream::kConfigChanged) {
DVLOG(2) << __FUNCTION__ << ": ConfigChange!";
// Send the config change so our client can read it once it parses the
// Status obtained via Run() below.
if (stream_->type() == media::DemuxerStream::AUDIO) {
audio_config =
interfaces::AudioDecoderConfig::From(stream_->audio_decoder_config());
} else if (stream_->type() == media::DemuxerStream::VIDEO) {
video_config =
interfaces::VideoDecoderConfig::From(stream_->video_decoder_config());
} else {
NOTREACHED() << "Unsupported config change encountered for type: "
<< stream_->type();
}
callback.Run(interfaces::DemuxerStream::STATUS_CONFIG_CHANGED,
interfaces::DecoderBufferPtr(), audio_config.Pass(),
video_config.Pass());
return;
}
if (status == media::DemuxerStream::kAborted) {
callback.Run(interfaces::DemuxerStream::STATUS_ABORTED,
interfaces::DecoderBufferPtr(), audio_config.Pass(),
video_config.Pass());
return;
}
DCHECK_EQ(status, media::DemuxerStream::kOk);
if (!buffer->end_of_stream()) {
DCHECK_GT(buffer->data_size(), 0);
// Serialize the data section of the DecoderBuffer into our pipe.
uint32_t num_bytes = buffer->data_size();
CHECK_EQ(WriteDataRaw(stream_pipe_.get(), buffer->data(), &num_bytes,
MOJO_READ_DATA_FLAG_ALL_OR_NONE),
MOJO_RESULT_OK);
CHECK_EQ(num_bytes, static_cast<uint32_t>(buffer->data_size()));
}
// TODO(dalecurtis): Once we can write framed data to the DataPipe, fill via
// the producer handle and then read more to keep the pipe full. Waiting for
// space can be accomplished using an AsyncWaiter.
callback.Run(static_cast<interfaces::DemuxerStream::Status>(status),
interfaces::DecoderBuffer::From(buffer), audio_config.Pass(),
video_config.Pass());
}
} // namespace media
|