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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/android/media_codec_loop.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/task/single_thread_task_runner.h"
#include "media/base/media_serializers.h"
#include "media/base/timestamp_constants.h"
namespace media {
namespace {
constexpr base::TimeDelta kDecodePollDelay = base::Milliseconds(10);
constexpr base::TimeDelta kNoWaitTimeout = base::Microseconds(0);
constexpr base::TimeDelta kIdleTimerTimeout = base::Seconds(1);
} // namespace
MediaCodecLoop::MediaCodecLoop(
int sdk_int,
Client* client,
std::unique_ptr<MediaCodecBridge> media_codec,
scoped_refptr<base::SingleThreadTaskRunner> timer_task_runner,
bool disable_timer)
: state_(STATE_READY),
client_(client),
media_codec_(std::move(media_codec)),
pending_input_buf_index_(kInvalidBufferIndex),
sdk_int_(sdk_int),
disable_timer_(disable_timer) {
if (timer_task_runner)
io_timer_.SetTaskRunner(timer_task_runner);
// TODO(liberato): should this DCHECK?
if (media_codec_ == nullptr)
SetState(STATE_ERROR);
}
MediaCodecLoop::~MediaCodecLoop() {
io_timer_.Stop();
}
void MediaCodecLoop::SetTestTickClock(const base::TickClock* test_tick_clock) {
test_tick_clock_ = test_tick_clock;
}
void MediaCodecLoop::OnKeyAdded() {
if (state_ == STATE_WAITING_FOR_KEY)
SetState(STATE_READY);
ExpectWork();
}
bool MediaCodecLoop::TryFlush() {
// We do not clear the input queue here. It depends on the caller.
// For decoder reset, then it is appropriate. Otherwise, the requests might
// simply be sent to us later, such as on a format change.
// STATE_DRAINED seems like it allows flush, but it causes test failures.
// crbug.com/624878
if (state_ == STATE_ERROR || state_ == STATE_DRAINED)
return false;
// Actually try to flush!
io_timer_.Stop();
if (!media_codec_->Flush().is_ok()) {
// TODO(liberato): we might not want to notify the client about this.
SetState(STATE_ERROR);
return false;
}
SetState(STATE_READY);
return true;
}
void MediaCodecLoop::ExpectWork() {
// Start / reset the timer, since we believe that progress can be made soon,
// even if not immediately.
ManageTimer(true);
DoPendingWork();
}
void MediaCodecLoop::DoPendingWork() {
if (state_ == STATE_ERROR)
return;
bool did_work = false, did_input = false, did_output = false;
do {
did_input = ProcessOneInputBuffer();
did_output = ProcessOneOutputBuffer();
if (did_input || did_output)
did_work = true;
} while (did_input || did_output);
// TODO(liberato): add "start_timer" for AVDA.
ManageTimer(did_work);
}
bool MediaCodecLoop::ProcessOneInputBuffer() {
if (state_ != STATE_READY)
return false;
// We can only queue a buffer if there is input from the client, or if we
// tried previously but had to wait for a key. In the latter case, MediaCodec
// already has the data.
if (pending_input_buf_index_ == kInvalidBufferIndex &&
!client_->IsAnyInputPending()) {
return false;
}
// DequeueInputBuffer() may set STATE_ERROR.
InputBuffer input_buffer = DequeueInputBuffer();
if (input_buffer.index == kInvalidBufferIndex)
return false;
// EnqueueInputBuffer() may change the state.
EnqueueInputBuffer(input_buffer);
return state_ != STATE_ERROR;
}
MediaCodecLoop::InputBuffer MediaCodecLoop::DequeueInputBuffer() {
DVLOG(2) << __func__;
// Do not dequeue a new input buffer if we failed with kNoKey.
// That status does not return the input buffer back to the pool of
// available input buffers. We have to reuse it later when calling
// MediaCodec's QueueSecureInputBuffer().
if (pending_input_buf_index_ != kInvalidBufferIndex) {
InputBuffer result(pending_input_buf_index_, true);
pending_input_buf_index_ = kInvalidBufferIndex;
return result;
}
int input_buf_index = kInvalidBufferIndex;
MediaCodecResult result =
media_codec_->DequeueInputBuffer(kNoWaitTimeout, &input_buf_index);
switch (result.code()) {
case MediaCodecResult::Codes::kTryAgainLater:
break;
case MediaCodecResult::Codes::kError:
DLOG(ERROR) << __func__ << ": " << result.message();
SetState(STATE_ERROR);
break;
case MediaCodecResult::Codes::kOk:
break;
default:
NOTREACHED() << "Unexpected DequeueInputBuffer result: "
<< result.message();
}
return InputBuffer(input_buf_index, false);
}
void MediaCodecLoop::EnqueueInputBuffer(const InputBuffer& input_buffer) {
DCHECK_NE(input_buffer.index, kInvalidBufferIndex);
bool already_filled = false;
scoped_refptr<DecoderBuffer> input_data;
if (input_buffer.is_pending) {
// A pending buffer is already filled with data, no need to copy it again.
input_data = std::move(pending_input_buf_data_);
already_filled = true;
} else {
input_data = client_->ProvideInputData();
}
if (input_data->end_of_stream()) {
media_codec_->QueueEOS(input_buffer.index);
SetState(STATE_DRAINING);
client_->OnInputDataQueued(true);
return;
}
MediaCodecResult result = OkStatus();
if (input_data->decrypt_config()) {
result = media_codec_->QueueSecureInputBuffer(
input_buffer.index,
already_filled ? base::span<const uint8_t>() : *input_data,
input_data->timestamp(), *input_data->decrypt_config());
} else {
result = media_codec_->QueueInputBuffer(input_buffer.index, *input_data,
input_data->timestamp());
}
switch (result.code()) {
case MediaCodecResult::Codes::kError:
DLOG(ERROR)
<< __func__
<< ": MediaCodecResult::Codes::kError from QueueInputBuffer : "
<< result.message();
client_->OnInputDataQueued(false);
// Transition to the error state after running the completion cb, to keep
// it in order if the client chooses to flush its queue.
SetState(STATE_ERROR);
break;
case MediaCodecResult::Codes::kNoKey:
// Do not call the completion cb here. It will be called when we retry
// after getting the key.
pending_input_buf_index_ = input_buffer.index;
pending_input_buf_data_ = std::move(input_data);
client_->OnWaiting(WaitingReason::kNoDecryptionKey);
SetState(STATE_WAITING_FOR_KEY);
// Do not call OnInputDataQueued yet.
break;
case MediaCodecResult::Codes::kOk:
client_->OnInputDataQueued(true);
break;
default:
NOTREACHED() << "Unknown Queue(Secure)InputBuffer status "
<< result.message();
}
}
bool MediaCodecLoop::ProcessOneOutputBuffer() {
// TODO(liberato): When merging AVDA, we will also have to ask the client if
// it can accept another output buffer.
if (state_ == STATE_ERROR)
return false;
OutputBuffer out;
MediaCodecResult result = media_codec_->DequeueOutputBuffer(
kNoWaitTimeout, &out.index, &out.offset, &out.size, &out.pts, &out.is_eos,
&out.is_key_frame);
bool did_work = false;
switch (result.code()) {
case MediaCodecResult::Codes::kOutputBuffersChanged:
// Output buffers are replaced in MediaCodecBridge, nothing to do.
did_work = true;
break;
case MediaCodecResult::Codes::kOutputFormatChanged:
if (!client_->OnOutputFormatChanged())
SetState(STATE_ERROR);
did_work = state_ != STATE_ERROR;
break;
case MediaCodecResult::Codes::kOk:
// We got the decoded frame or EOS.
if (out.is_eos) {
// Set state STATE_DRAINED after we have received EOS frame at the
// output. media_decoder_job.cc says: once output EOS has occurred, we
// should not be asked to decode again.
DCHECK_EQ(state_, STATE_DRAINING);
SetState(STATE_DRAINED);
DCHECK_NE(out.index, kInvalidBufferIndex);
DCHECK(media_codec_);
media_codec_->ReleaseOutputBuffer(out.index, false);
if (!client_->OnDecodedEos(out))
SetState(STATE_ERROR);
} else {
if (!client_->OnDecodedFrame(out))
SetState(STATE_ERROR);
}
did_work = true;
break;
case MediaCodecResult::Codes::kTryAgainLater:
// Nothing to do.
break;
case MediaCodecResult::Codes::kError:
DLOG(ERROR) << __func__
<< ": MediaCodecResult::Codes::kError from "
"DequeueOutputBuffer, result: "
<< result.message();
SetState(STATE_ERROR);
break;
default:
NOTREACHED() << "Unexpected DequeueOutputBuffer result: "
<< result.message();
}
return did_work;
}
void MediaCodecLoop::ManageTimer(bool did_work) {
if (disable_timer_)
return;
bool should_be_running = true;
// One might also use DefaultTickClock, but then ownership becomes harder.
base::TimeTicks now = (test_tick_clock_ ? test_tick_clock_->NowTicks()
: base::TimeTicks::Now());
if (did_work || idle_time_begin_ == base::TimeTicks()) {
idle_time_begin_ = now;
} else {
// Make sure that we have done work recently enough, else stop the timer.
if (now - idle_time_begin_ > kIdleTimerTimeout)
should_be_running = false;
}
if (should_be_running && !io_timer_.IsRunning()) {
io_timer_.Start(FROM_HERE, kDecodePollDelay, this,
&MediaCodecLoop::DoPendingWork);
} else if (!should_be_running && io_timer_.IsRunning()) {
io_timer_.Stop();
}
}
void MediaCodecLoop::SetState(State new_state) {
const State old_state = state_;
state_ = new_state;
if (old_state != new_state && new_state == STATE_ERROR)
client_->OnCodecLoopError();
}
MediaCodecBridge* MediaCodecLoop::GetCodec() const {
return media_codec_.get();
}
// static
const char* MediaCodecLoop::AsString(State state) {
#define RETURN_STRING(x) \
case x: \
return #x;
switch (state) {
RETURN_STRING(STATE_READY);
RETURN_STRING(STATE_WAITING_FOR_KEY);
RETURN_STRING(STATE_DRAINING);
RETURN_STRING(STATE_DRAINED);
RETURN_STRING(STATE_ERROR);
}
#undef RETURN_STRING
NOTREACHED() << "Unknown state " << state;
}
} // namespace media
|